/external/v8/test/cctest/ |
D | test-constantpool.cc | 47 CHECK_EQ(expected_last_idx[i], array->last_index(kTypes[i], kSmall)); in TEST() 91 CHECK_EQ(small_last_idx[i], array->last_index(kTypes[i], kSmall)); in TEST() 103 CHECK_EQ(extended_last_idx[i], array->last_index(kTypes[i], kExtended)); in TEST() 120 i <= array->last_index(ConstantPoolArray::INT32, kSmall); i++) { in TEST() 121 if (i <= array->last_index(ConstantPoolArray::INT64, kSmall)) { in TEST() 123 } else if (i <= array->last_index(ConstantPoolArray::CODE_PTR, kSmall)) { in TEST() 125 } else if (i <= array->last_index(ConstantPoolArray::HEAP_PTR, kSmall)) { in TEST() 128 CHECK(i <= array->last_index(ConstantPoolArray::INT32, kSmall)); in TEST() 133 i <= array->last_index(ConstantPoolArray::INT32, kExtended); i++) { in TEST() 134 if (i <= array->last_index(ConstantPoolArray::INT64, kExtended)) { in TEST() [all …]
|
/external/linux-tools-perf/src/tools/perf/util/ |
D | pstack.c | 39 unsigned short i = pstack->top, last_index = pstack->top - 1; in pstack__remove() local 43 if (i < last_index) in pstack__remove() 46 (last_index - i) * sizeof(void *)); in pstack__remove()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_queryobj.c | 189 for (i = query->first_index; i <= query->last_index; i++) { in brw_queryobj_get_results() 196 for (i = query->first_index; i <= query->last_index; i++) { in brw_queryobj_get_results() 266 query->last_index = -1; in brw_begin_query() 435 query->last_index = brw->query.index; in brw_emit_query_begin()
|
D | brw_context.h | 715 int last_index; member
|
/external/libvncserver/x11vnc/ |
D | macosxCGS.c | 144 static int last_index = -1; in macosxCGS_find_index() local 147 if (last_index >= 0) { in macosxCGS_find_index() 148 if (macwins[last_index].win == w) { in macosxCGS_find_index() 149 return last_index; in macosxCGS_find_index() 156 last_index = idx; in macosxCGS_find_index() 163 last_index = idx; in macosxCGS_find_index()
|
D | cursor.c | 1279 static int last_index = 0; variable 1287 return (unsigned long) last_index; in get_cursor_serial() 1289 return (unsigned long) last_index; in get_cursor_serial() 1304 last_index = 0; in get_exact_cursor() 1404 last_index = i; in store_cursor() 1405 return last_index; in store_cursor() 1459 last_index = use; in store_cursor() 1462 which = last_index; in store_cursor()
|
/external/v8/src/ |
D | objects-printer.cc | 522 for (int i = 0; i <= last_index(INT32, SMALL_SECTION); i++) { in ConstantPoolArrayPrint() 523 if (i < last_index(INT64, SMALL_SECTION)) { in ConstantPoolArrayPrint() 525 } else if (i <= last_index(CODE_PTR, SMALL_SECTION)) { in ConstantPoolArrayPrint() 528 } else if (i <= last_index(HEAP_PTR, SMALL_SECTION)) { in ConstantPoolArrayPrint() 531 } else if (i <= last_index(INT32, SMALL_SECTION)) { in ConstantPoolArrayPrint() 538 i <= last_index(INT32, EXTENDED_SECTION); i++) { in ConstantPoolArrayPrint() 539 if (i < last_index(INT64, EXTENDED_SECTION)) { in ConstantPoolArrayPrint() 541 } else if (i <= last_index(CODE_PTR, EXTENDED_SECTION)) { in ConstantPoolArrayPrint() 544 } else if (i <= last_index(HEAP_PTR, EXTENDED_SECTION)) { in ConstantPoolArrayPrint() 547 } else if (i <= last_index(INT32, EXTENDED_SECTION)) { in ConstantPoolArrayPrint()
|
D | objects-inl.h | 2343 return next_index_ > array_->last_index(type_, final_section_); in is_finished() 2348 if (next_index_ > array_->last_index(type_, current_section_) && in update_section() 2410 int ConstantPoolArray::last_index(Type type, LayoutSection section) { in last_index() function 2458 offset <= OffsetOfElementAt(last_index(type, SMALL_SECTION))) || in offset_is_type() 2461 offset <= OffsetOfElementAt(last_index(type, EXTENDED_SECTION))); in offset_is_type() 2474 while (index > last_index(type, section)) { in get_type()
|
D | objects.h | 2693 inline int last_index(Type type, LayoutSection layout_section); 2801 DCHECK(index <= last_index(LAST_TYPE, section)); in OffsetOfElementAt() 2802 for (Type type = FIRST_TYPE; index > last_index(type, section); in OffsetOfElementAt()
|
D | hydrogen.cc | 12287 int last_index = current->last_instruction_index(); in Trace() local 12293 LifetimePosition::FromInstructionIndex(last_index).Value()); in Trace() 12336 int last_index = current->last_instruction_index(); in Trace() local 12337 if (first_index != -1 && last_index != -1) { in Trace() 12339 for (int i = first_index; i <= last_index; ++i) { in Trace()
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_message.cc | 1602 int last_index = -1; in GenerateClear() local 1608 if (i / 8 != last_index / 8 || last_index < 0) { in GenerateClear() 1632 last_index = i; in GenerateClear() 1883 int last_index = -1; in GenerateMergeFrom() local 1890 if (i / 8 != last_index / 8 || last_index < 0) { in GenerateMergeFrom() 1891 if (last_index >= 0) { in GenerateMergeFrom() 1901 last_index = i; in GenerateMergeFrom() 1915 if (last_index >= 0) { in GenerateMergeFrom() 2442 int last_index = -1; in GenerateByteSize() local 2451 if ((i / 8) != (last_index / 8) || in GenerateByteSize() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-uniscribe.cc | 656 unsigned int last_index = 0; in _hb_uniscribe_shape() local 661 if (event->index != last_index) in _hb_uniscribe_shape() 691 range->index_first = last_index; in _hb_uniscribe_shape() 694 last_index = event->index; in _hb_uniscribe_shape()
|
D | hb-coretext.cc | 521 unsigned int last_index = 0; in _hb_coretext_shape() local 526 if (event->index != last_index) in _hb_coretext_shape() 582 range->index_first = last_index; in _hb_coretext_shape() 585 last_index = event->index; in _hb_coretext_shape()
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_pattern.cpp | 430 int last_index = 0; in _DrawLatticeGouraudShading() local 432 CPDF_MeshVertex* last_row = vertex + last_index * row_verts; in _DrawLatticeGouraudShading() 433 CPDF_MeshVertex* this_row = vertex + (1 - last_index) * row_verts; in _DrawLatticeGouraudShading() 447 last_index = 1 - last_index; in _DrawLatticeGouraudShading()
|
/external/compiler-rt/lib/lsan/ |
D | lsan_common.cc | 636 uptr last_index = root_regions->size() - 1; in __lsan_unregister_root_region() local 637 (*root_regions)[i] = (*root_regions)[last_index]; in __lsan_unregister_root_region()
|
/external/sfntly/cpp/src/sfntly/table/core/ |
D | os2_table.cc | 508 void OS2Table::Builder::SetUsLastCharIndex(int32_t last_index) { in SetUsLastCharIndex() argument 509 InternalWriteData()->WriteUShort(Offset::kUsLastCharIndex, last_index); in SetUsLastCharIndex()
|
D | os2_table.h | 384 void SetUsLastCharIndex(int32_t last_index);
|
/external/valgrind/coregrind/m_debuginfo/ |
D | readpdb.c | 371 unsigned short last_index; member 383 unsigned long last_index; member 1161 types->last_index = old->last_index; in pdb_convert_types_header()
|
/external/v8/src/x64/ |
D | code-stubs-x64.cc | 4188 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatch() local 4190 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatch() 4274 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatchOneArgument() local 4276 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatchOneArgument()
|
/external/v8/src/x87/ |
D | code-stubs-x87.cc | 3910 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatch() local 3912 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatch() 3991 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatchOneArgument() local 3993 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatchOneArgument()
|
/external/v8/src/arm64/ |
D | code-stubs-arm64.cc | 4599 int last_index = in CreateArrayDispatch() local 4601 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatch() 4690 int last_index = in CreateArrayDispatchOneArgument() local 4692 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatchOneArgument()
|
/external/v8/src/arm/ |
D | code-stubs-arm.cc | 4258 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatch() local 4260 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatch() 4335 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatchOneArgument() local 4337 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatchOneArgument()
|
/external/v8/src/mips64/ |
D | code-stubs-mips64.cc | 4517 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatch() local 4519 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatch() 4592 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatchOneArgument() local 4594 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatchOneArgument()
|
/external/v8/src/mips/ |
D | code-stubs-mips.cc | 4478 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatch() local 4480 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatch() 4554 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatchOneArgument() local 4556 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatchOneArgument()
|
/external/v8/src/ia32/ |
D | code-stubs-ia32.cc | 4249 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatch() local 4251 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatch() 4330 int last_index = GetSequenceIndexFromFastElementsKind( in CreateArrayDispatchOneArgument() local 4332 for (int i = 0; i <= last_index; ++i) { in CreateArrayDispatchOneArgument()
|