Home
last modified time | relevance | path

Searched refs:fixed_array (Results 1 – 23 of 23) sorted by relevance

/external/v8/src/heap/
Dobject-stats.cc138 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 …]
Dobject-stats.h90 static void CountFixedArray(FixedArrayBase* fixed_array,
Dheap.cc2221 ALLOCATE_PARTIAL_MAP(FIXED_ARRAY_TYPE, kVariableSizeSentinel, fixed_array); in CreateInitialMaps()
/external/v8/src/interpreter/
Dconstant-array-builder.cc98 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/
Dstring-builder.h30 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()
Dobjects-inl.h6771 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()
Dapi.cc6841 i::Handle<i::FixedTypedArrayBase> fixed_array( in CopyContents() local
6843 source = reinterpret_cast<char*>(fixed_array->DataPtr()); in CopyContents()
/external/v8/test/mjsunit/
Dkeyed-call-generic.js76 var fixed_array = [zero, one, two]; variable
93 testMany(fixed_array, first3num, first3num);
/external/v8/src/runtime/
Druntime-strings.cc454 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 …]
Druntime-internal.cc62 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/
Dtest-compaction.cc26 for (auto& fixed_array : handles) { in CheckAllObjectsOnPage() local
27 CHECK(Page::FromAddress(fixed_array->address()) == page); in CheckAllObjectsOnPage()
/external/v8/src/full-codegen/ia32/
Dfull-codegen-ia32.cc961 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/
Dfull-codegen-x87.cc953 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/
Dfull-codegen-arm64.cc1036 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/
Dfull-codegen-x64.cc993 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/
Dfull-codegen-mips64.cc1038 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/
Dfull-codegen-arm.cc1039 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/
Dfull-codegen-s390.cc969 Label fixed_array; in VisitForInStatement() local
972 __ bne(&fixed_array); in VisitForInStatement()
999 __ bind(&fixed_array); in VisitForInStatement()
/external/v8/src/full-codegen/ppc/
Dfull-codegen-ppc.cc997 Label fixed_array; in VisitForInStatement() local
1001 __ bne(&fixed_array); in VisitForInStatement()
1028 __ bind(&fixed_array); in VisitForInStatement()
/external/v8/src/full-codegen/mips/
Dfull-codegen-mips.cc1038 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/
Dversion_history.rst191 #. Remove DCHECK_GE checks from fixed_array.h.
/external/v8/test/cctest/
Dtest-api.cc16345 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/
DChangeLog.217191 (cid_parser_to_{int,fixed,coord_array,fixed_array,token,token_array}):