/external/google-breakpad/src/processor/ |
D | range_map_unittest.cc | 275 for (int object_index = 0; object_index < object_count; ++object_index) { in RetrieveIndexTest() local 277 if (!range_map->RetrieveRangeAtIndex(object_index, &object, &base, NULL)) { in RetrieveIndexTest() 280 set, object_index); in RetrieveIndexTest() 287 set, object_index); in RetrieveIndexTest() 298 set, object_index, object->id()); in RetrieveIndexTest() 306 set, object_index, base); in RetrieveIndexTest() 344 for (int object_index = 0; object_index < object_count; ++object_index) { in RetriveAtIndexTest2() local 346 if (!range_map->RetrieveRangeAtIndex(object_index, &object, &base, NULL)) { in RetriveAtIndexTest2() 348 "expected success, observed failure\n", object_index); in RetriveAtIndexTest2() 356 object_index, expected_base, base); in RetriveAtIndexTest2()
|
D | static_range_map_unittest.cc | 317 for (int object_index = 0; object_index < object_count; ++object_index) { in RetrieveIndexTest() local 319 ASSERT_TRUE(range_map->RetrieveRangeAtIndex(object_index, in RetrieveIndexTest() 324 << " index " << object_index; in RetrieveIndexTest() 327 << " index " << object_index; in RetrieveIndexTest() 334 << set << " index " << object_index; in RetrieveIndexTest() 337 << " index " << object_index; in RetrieveIndexTest()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | DataOutputCompressor.java | 151 public void writeStringSet(SortedSet c, Map object_index) throws IOException { in writeStringSet() argument 155 object_index.put(null, new Integer(i++)); in writeStringSet() 160 object_index.put(s, new Integer(i++)); in writeStringSet() 197 public void writeCollection(Collection c, Map object_index) throws IOException { in writeCollection() argument 200 object_index.put(null, new Integer(i++)); in writeCollection() 204 if (object_index != null) object_index.put(s, new Integer(i++)); in writeCollection()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | DataOutputCompressor.java | 152 public void writeStringSet(SortedSet c, Map object_index) throws IOException { in writeStringSet() argument 156 object_index.put(null, new Integer(i++)); in writeStringSet() 161 object_index.put(s, new Integer(i++)); in writeStringSet() 198 public void writeCollection(Collection c, Map object_index) throws IOException { in writeCollection() argument 201 object_index.put(null, new Integer(i++)); in writeCollection() 205 if (object_index != null) object_index.put(s, new Integer(i++)); in writeCollection()
|
/external/v8/src/ |
D | deoptimizer.cc | 2427 void Translation::DuplicateObject(int object_index) { in DuplicateObject() argument 2429 buffer_->Add(object_index, zone()); in DuplicateObject() 2804 int object_index) { in NewArgumentsObject() argument 2806 slot.materialization_info_ = {object_index, length}; in NewArgumentsObject() 2814 int object_index) { in NewDeferredObject() argument 2816 slot.materialization_info_ = {object_index, length}; in NewDeferredObject() 2926 int TranslatedValue::object_index() const { in object_index() function in v8::internal::TranslatedValue 3000 return container_->MaterializeObjectAt(object_index()); in GetValue() 3379 int object_index = static_cast<int>(object_positions_.size()); in CreateNextTranslatedValue() local 3381 PrintF(trace_file, "argumets object #%d (length = %d)", object_index, in CreateNextTranslatedValue() [all …]
|
D | deoptimizer.h | 61 int length, int object_index); 63 int length, int object_index); 113 int object_index() const; 292 Handle<Object> MaterializeObjectAt(int object_index); 1039 void DuplicateObject(int object_index);
|
D | objects.cc | 14178 int object_index = iterator.Next(); in DeoptimizationInputDataPrint() local 14179 os << "{object_index=" << object_index << "}"; in DeoptimizationInputDataPrint()
|
/external/v8/src/crankshaft/ |
D | lithium.cc | 678 int object_index = objects_to_materialize->length(); in AddObjectToMaterialize() local 683 for (int prev = 0; prev < object_index; ++prev) { in AddObjectToMaterialize()
|
/external/v8/src/crankshaft/arm64/ |
D | lithium-codegen-arm64.cc | 230 int object_index = 0; in WriteTranslation() local 236 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 249 int object_index = (*object_index_pointer)++; in AddToTranslation() local 250 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 251 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 255 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 256 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/ia32/ |
D | lithium-codegen-ia32.cc | 496 int object_index = 0; in WriteTranslation() local 502 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 515 int object_index = (*object_index_pointer)++; in AddToTranslation() local 516 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 517 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 521 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 522 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/s390/ |
D | lithium-codegen-s390.cc | 515 int object_index = 0; in WriteTranslation() local 521 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 531 int object_index = (*object_index_pointer)++; in AddToTranslation() local 532 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 533 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 537 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 538 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/mips64/ |
D | lithium-codegen-mips64.cc | 560 int object_index = 0; in WriteTranslation() local 566 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 579 int object_index = (*object_index_pointer)++; in AddToTranslation() local 580 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 581 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 585 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 586 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/mips/ |
D | lithium-codegen-mips.cc | 572 int object_index = 0; in WriteTranslation() local 578 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 591 int object_index = (*object_index_pointer)++; in AddToTranslation() local 592 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 593 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 597 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 598 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/ppc/ |
D | lithium-codegen-ppc.cc | 547 int object_index = 0; in WriteTranslation() local 553 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 564 int object_index = (*object_index_pointer)++; in AddToTranslation() local 565 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 566 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 570 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 571 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/x87/ |
D | lithium-codegen-x87.cc | 764 int object_index = 0; in WriteTranslation() local 773 &object_index, in WriteTranslation() 787 int object_index = (*object_index_pointer)++; in AddToTranslation() local 788 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 789 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 793 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 794 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/arm/ |
D | lithium-codegen-arm.cc | 575 int object_index = 0; in WriteTranslation() local 581 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 594 int object_index = (*object_index_pointer)++; in AddToTranslation() local 595 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 596 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 600 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 601 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|
/external/v8/src/crankshaft/x64/ |
D | lithium-codegen-x64.cc | 517 int object_index = 0; in WriteTranslation() local 523 environment->HasUint32ValueAt(i), &object_index, &dematerialized_index); in WriteTranslation() 536 int object_index = (*object_index_pointer)++; in AddToTranslation() local 537 if (environment->ObjectIsDuplicateAt(object_index)) { in AddToTranslation() 538 int dupe_of = environment->ObjectDuplicateOfAt(object_index); in AddToTranslation() 542 int object_length = environment->ObjectLengthAt(object_index); in AddToTranslation() 543 if (environment->ObjectIsArgumentsAt(object_index)) { in AddToTranslation()
|