/external/v8/src/heap/ |
D | object-stats.cc | 138 FixedArrayBase* fixed_array, FixedArraySubInstanceType fast_type, in CountFixedArray() argument 140 Heap* heap = fixed_array->map()->GetHeap(); in CountFixedArray() 141 if (fixed_array->map() != heap->fixed_cow_array_map() && in CountFixedArray() 142 fixed_array->map() != heap->fixed_double_array_map() && in CountFixedArray() 143 fixed_array != heap->empty_fixed_array()) { in CountFixedArray() 144 if (fixed_array->IsDictionary()) { in CountFixedArray() 146 fixed_array->Size()); in CountFixedArray() 149 fixed_array->Size()); in CountFixedArray() 227 FixedArray* fixed_array = FixedArray::cast(obj); in RecordFixedArrayStats() local 228 if (fixed_array == heap->string_table()) { in RecordFixedArrayStats() [all …]
|
D | object-stats.h | 90 static void CountFixedArray(FixedArrayBase* fixed_array,
|
D | heap.cc | 2221 ALLOCATE_PARTIAL_MAP(FIXED_ARRAY_TYPE, kVariableSizeSentinel, fixed_array); in CreateInitialMaps()
|
/external/v8/src/interpreter/ |
D | constant-array-builder.cc | 98 Handle<FixedArray> fixed_array = isolate_->factory()->NewFixedArray( in ToFixedArray() local 102 if (array_index == fixed_array->length()) { in ToFixedArray() 109 fixed_array->set(array_index++, *slice->At(slice->start_index() + i)); in ToFixedArray() 113 std::min(static_cast<size_t>(fixed_array->length() - array_index), in ToFixedArray() 116 fixed_array->set(array_index++, *isolate_->factory()->the_hole_value()); in ToFixedArray() 119 DCHECK_EQ(array_index, fixed_array->length()); in ToFixedArray() 121 return fixed_array; in ToFixedArray()
|
/external/v8/src/ |
D | string-builder.h | 30 FixedArray* fixed_array, in StringBuilderConcatHelper() argument 35 Object* element = fixed_array->get(i); in StringBuilderConcatHelper() 47 Object* obj = fixed_array->get(++i); in StringBuilderConcatHelper() 67 FixedArray* fixed_array, in StringBuilderConcatLength() argument 73 Object* elt = fixed_array->get(i); in StringBuilderConcatLength() 89 Object* next_smi = fixed_array->get(i); in StringBuilderConcatLength()
|
D | objects-inl.h | 6771 FixedArrayBase* fixed_array = in GetElementsKind() local 6777 Map* map = fixed_array->map(); in GetElementsKind() 6782 DCHECK(fixed_array->IsFixedDoubleArray() || in GetElementsKind() 6783 fixed_array == GetHeap()->empty_fixed_array()); in GetElementsKind() 6785 DCHECK(fixed_array->IsFixedArray()); in GetElementsKind() 6786 DCHECK(fixed_array->IsDictionary()); in GetElementsKind()
|
D | api.cc | 6841 i::Handle<i::FixedTypedArrayBase> fixed_array( in CopyContents() local 6843 source = reinterpret_cast<char*>(fixed_array->DataPtr()); in CopyContents()
|
/external/v8/test/mjsunit/ |
D | keyed-call-generic.js | 76 var fixed_array = [zero, one, two]; variable 93 testMany(fixed_array, first3num, first3num);
|
/external/v8/src/runtime/ |
D | runtime-strings.cc | 454 FixedArray* fixed_array = FixedArray::cast(array->elements()); in RUNTIME_FUNCTION() local 455 if (fixed_array->length() < array_length) { in RUNTIME_FUNCTION() 456 array_length = fixed_array->length(); in RUNTIME_FUNCTION() 462 Object* first = fixed_array->get(0); in RUNTIME_FUNCTION() 465 length = StringBuilderConcatLength(special_length, fixed_array, in RUNTIME_FUNCTION() 505 Handle<FixedArray> fixed_array(FixedArray::cast(array->elements())); in RUNTIME_FUNCTION() local 506 if (fixed_array->length() < array_length) { in RUNTIME_FUNCTION() 507 array_length = fixed_array->length(); in RUNTIME_FUNCTION() 513 Object* first = fixed_array->get(0); in RUNTIME_FUNCTION() 527 Object* element_obj = fixed_array->get(i); in RUNTIME_FUNCTION() [all …]
|
D | runtime-internal.cc | 62 Handle<FixedArray> fixed_array(FixedArray::cast(array->elements())); in RUNTIME_FUNCTION() local 65 CHECK(fixed_array->get(i)->IsString()); in RUNTIME_FUNCTION() 66 Handle<String> name(String::cast(fixed_array->get(i))); in RUNTIME_FUNCTION() 67 CHECK(fixed_array->get(i + 1)->IsJSObject()); in RUNTIME_FUNCTION() 68 Handle<JSObject> object(JSObject::cast(fixed_array->get(i + 1))); in RUNTIME_FUNCTION()
|
/external/v8/test/cctest/heap/ |
D | test-compaction.cc | 26 for (auto& fixed_array : handles) { in CheckAllObjectsOnPage() local 27 CHECK(Page::FromAddress(fixed_array->address()) == page); in CheckAllObjectsOnPage()
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 961 Label call_runtime, use_cache, fixed_array; in VisitForInStatement() local 974 __ j(not_equal, &fixed_array); in VisitForInStatement() 1001 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 953 Label call_runtime, use_cache, fixed_array; in VisitForInStatement() local 966 __ j(not_equal, &fixed_array); in VisitForInStatement() 993 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 1036 Label fixed_array, no_descriptors; in VisitForInStatement() local 1038 __ JumpIfNotRoot(x2, Heap::kMetaMapRootIndex, &fixed_array); in VisitForInStatement() 1062 __ Bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 993 Label fixed_array; in VisitForInStatement() local 996 __ j(not_equal, &fixed_array); in VisitForInStatement() 1023 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 1038 Label fixed_array; in VisitForInStatement() local 1041 __ Branch(&fixed_array, ne, a2, Operand(at)); in VisitForInStatement() 1065 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 1039 Label fixed_array; in VisitForInStatement() local 1043 __ b(ne, &fixed_array); in VisitForInStatement() 1069 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/s390/ |
D | full-codegen-s390.cc | 969 Label fixed_array; in VisitForInStatement() local 972 __ bne(&fixed_array); in VisitForInStatement() 999 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 997 Label fixed_array; in VisitForInStatement() local 1001 __ bne(&fixed_array); in VisitForInStatement() 1028 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 1038 Label fixed_array; in VisitForInStatement() local 1041 __ Branch(&fixed_array, ne, a2, Operand(at)); in VisitForInStatement() 1065 __ bind(&fixed_array); in VisitForInStatement()
|
/external/ceres-solver/docs/source/ |
D | version_history.rst | 191 #. Remove DCHECK_GE checks from fixed_array.h.
|
/external/v8/test/cctest/ |
D | test-api.cc | 16345 i::Handle<FixedTypedArrayClass> fixed_array( in FixedTypedArrayTestHelper() local 16348 fixed_array->map()->instance_type()); in FixedTypedArrayTestHelper() 16349 CHECK_EQ(kElementCount, fixed_array->length()); in FixedTypedArrayTestHelper() 16352 fixed_array->set(i, static_cast<ElementType>(i)); in FixedTypedArrayTestHelper() 16358 static_cast<int64_t>(fixed_array->get_scalar(i))); in FixedTypedArrayTestHelper()
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/ |
D | ChangeLog.21 | 7191 (cid_parser_to_{int,fixed,coord_array,fixed_array,token,token_array}):
|