Searched refs:fixed_array (Results 1 – 9 of 9) sorted by relevance
/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/ |
D | objects-inl.h | 1244 FixedArray* fixed_array = in ValidateSmiOnlyElements() local 1246 Map* map = fixed_array->map(); in ValidateSmiOnlyElements() 1251 for (int i = 0; i < fixed_array->length(); i++) { in ValidateSmiOnlyElements() 1252 Object* current = fixed_array->get(i); in ValidateSmiOnlyElements() 4280 FixedArrayBase* fixed_array = in GetElementsKind() local 4282 Map* map = fixed_array->map(); in GetElementsKind() 4287 (fixed_array->IsFixedDoubleArray() || in GetElementsKind() 4288 fixed_array == GetHeap()->empty_fixed_array())) || in GetElementsKind() 4290 fixed_array->IsFixedArray() && in GetElementsKind() 4291 fixed_array->IsDictionary()) || in GetElementsKind()
|
D | builtins.cc | 221 Object* fixed_array; in ArrayCodeGenericCommon() local 223 if (!maybe_obj->ToObject(&fixed_array)) return maybe_obj; in ArrayCodeGenericCommon() 226 array->set_elements(FixedArray::cast(fixed_array)); in ArrayCodeGenericCommon()
|
D | runtime.cc | 6641 FixedArray* fixed_array, in StringBuilderConcatHelper() argument 6645 Object* element = fixed_array->get(i); in StringBuilderConcatHelper() 6657 Object* obj = fixed_array->get(++i); in StringBuilderConcatHelper() 6698 FixedArray* fixed_array = FixedArray::cast(array->elements()); in RUNTIME_FUNCTION() local 6699 if (fixed_array->length() < array_length) { in RUNTIME_FUNCTION() 6700 array_length = fixed_array->length(); in RUNTIME_FUNCTION() 6706 Object* first = fixed_array->get(0); in RUNTIME_FUNCTION() 6714 Object* elt = fixed_array->get(i); in RUNTIME_FUNCTION() 6732 Object* next_smi = fixed_array->get(i); in RUNTIME_FUNCTION() 6776 fixed_array, in RUNTIME_FUNCTION() [all …]
|
D | heap.h | 2524 static MaybeObject* WrapFixedArrayInJSArray(Object* fixed_array);
|
/external/v8/src/arm/ |
D | full-codegen-arm.cc | 1041 Label fixed_array; in VisitForInStatement() local 1046 __ b(ne, &fixed_array); in VisitForInStatement() 1064 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/x64/ |
D | full-codegen-x64.cc | 950 Label fixed_array; in VisitForInStatement() local 953 __ j(not_equal, &fixed_array, Label::kNear); in VisitForInStatement() 971 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/ia32/ |
D | full-codegen-ia32.cc | 981 Label call_runtime, use_cache, fixed_array; in VisitForInStatement() local 1001 __ j(not_equal, &fixed_array); in VisitForInStatement() 1020 __ bind(&fixed_array); in VisitForInStatement()
|
/external/v8/src/mips/ |
D | full-codegen-mips.cc | 1050 Label fixed_array; in VisitForInStatement() local 1054 __ Branch(&fixed_array, ne, a1, Operand(at)); in VisitForInStatement() 1072 __ bind(&fixed_array); in VisitForInStatement()
|