Home
last modified time | relevance | path

Searched refs:old_count (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/xfa/src/fxgraphics/src/
Dfx_path_generator.cpp51 int old_count = m_pPathData->GetPointCount(); in BezierTo() local
53 m_pPathData->SetPoint(old_count, ctrl_x1, ctrl_y1, FXPT_BEZIERTO); in BezierTo()
54 m_pPathData->SetPoint(old_count + 1, ctrl_x2, ctrl_y2, FXPT_BEZIERTO); in BezierTo()
55 m_pPathData->SetPoint(old_count + 2, to_x, to_y, FXPT_BEZIERTO); in BezierTo()
68 int old_count = m_pPathData->GetPointCount(); in AddLine() local
70 m_pPathData->SetPoint(old_count, x1, y1, FXPT_MOVETO); in AddLine()
71 m_pPathData->SetPoint(old_count + 1, x2, y2, FXPT_LINETO); in AddLine()
81 int old_count = m_pPathData->GetPointCount(); in AddBezier() local
83 m_pPathData->SetPoint(old_count, start_x, start_y, FXPT_MOVETO); in AddBezier()
84 m_pPathData->SetPoint(old_count + 1, ctrl_x1, ctrl_y1, FXPT_BEZIERTO); in AddBezier()
[all …]
/external/autotest/server/cros/dynamic_suite/
Dreporting_unittest.py403 old_count = self._create_count_label(3)
404 self._test_count_label_update(['unknown-label', old_count],
405 [old_count], 4)
410 old_count = self._create_count_label(3)
414 old_count],
415 [old_count], 4)
/external/pdfium/core/src/fxge/ge/
Dfx_ge_path.cpp160 int old_count = m_PointCount; in Append() local
162 FXSYS_memcpy(m_pPoints + old_count, pSrc->m_pPoints, in Append()
166 pMatrix->Transform(m_pPoints[old_count + i].m_PointX, in Append()
167 m_pPoints[old_count + i].m_PointY); in Append()
181 int old_count = m_PointCount; in AppendRect() local
183 FX_PATHPOINT* pPoints = m_pPoints + old_count; in AppendRect()
/external/bison/lib/glthread/
Dlock.c714 unsigned int old_count = wq->count; in gl_waitqueue_add() local
718 if (old_offset + old_count > old_alloc) in gl_waitqueue_add()
720 unsigned int limit = old_offset + old_count - old_alloc; in gl_waitqueue_add()
724 for (i = 0; i < old_count; i++) in gl_waitqueue_add()
/external/v8/src/crankshaft/
Dhydrogen-gvn.cc232 int old_count = count_; in Resize() local
255 USE(old_count); in Resize()
256 DCHECK(count_ == old_count); in Resize()
/external/autotest/client/bin/
Djob.py768 old_count = self._state.get('client', 'cpu_count')
769 if cpu_count != old_count:
772 (old_count, cpu_count))
/external/toybox/kconfig/
Dexpr.c196 int res, old_count; in expr_eq() local
212 old_count = trans_count; in expr_eq()
218 trans_count = old_count; in expr_eq()
/external/v8/src/
Dobjects.cc15252 int old_count = count(); in Compact() local
15254 for (int i = 0; i < old_count; i++) { in Compact()
15264 for (int i = new_count; i < old_count; i++) { in Compact()
15267 return new_count < old_count; in Compact()
15312 int old_count = count(); in RemoveCompilationDependencies() local
15315 for (int i = 0; i < old_count; i++) { in RemoveCompilationDependencies()
15323 if (info_pos < old_count - 1) { in RemoveCompilationDependencies()
15324 copy(old_count - 1, info_pos); in RemoveCompilationDependencies()
15326 clear_at(old_count - 1); in RemoveCompilationDependencies()
15327 set_count(old_count - 1); in RemoveCompilationDependencies()
[all …]