Searched defs:fixed_array (Results 1 - 12 of 12) sorted by path

/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc1162 Label fixed_array; local
1166 __ b(ne, &fixed_array);
1193 __ bind(&fixed_array);
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc1154 Label fixed_array, no_descriptors; local
1156 __ JumpIfNotRoot(x2, Heap::kMetaMapRootIndex, &fixed_array);
1180 __ Bind(&fixed_array);
/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc1360 FixedArrayBase* fixed_array, FixedArraySubInstanceType fast_type,
1536 FixedArrayBase* fixed_array, FixedArraySubInstanceType fast_type,
1538 Heap* heap = fixed_array->map()->GetHeap();
1539 if (fixed_array->map() != heap->fixed_cow_array_map() &&
1540 fixed_array->map() != heap->fixed_double_array_map() &&
1541 fixed_array != heap->empty_fixed_array()) {
1542 if (fixed_array->IsDictionary()) {
1543 heap->RecordFixedArraySubTypeStats(dictionary_type, fixed_array->Size());
1545 heap->RecordFixedArraySubTypeStats(fast_type, fixed_array->Size());
1648 FixedArray* fixed_array local
1535 ObjectStatsCountFixedArray( FixedArrayBase* fixed_array, FixedArraySubInstanceType fast_type, FixedArraySubInstanceType dictionary_type) argument
[all...]
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc1068 Label call_runtime, use_cache, fixed_array; local
1088 __ j(not_equal, &fixed_array);
1116 __ bind(&fixed_array);
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc1152 Label fixed_array; local
1155 __ Branch(&fixed_array, ne, a2, Operand(at));
1180 __ bind(&fixed_array);
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc1147 Label fixed_array; local
1150 __ Branch(&fixed_array, ne, a2, Operand(at));
1175 __ bind(&fixed_array);
/external/chromium_org/v8/src/
H A Dobjects-inl.h6321 FixedArrayBase* fixed_array = local
6327 Map* map = fixed_array->map();
6332 (fixed_array->IsFixedDoubleArray() ||
6333 fixed_array == GetHeap()->empty_fixed_array())) ||
6335 fixed_array->IsFixedArray() &&
6336 fixed_array->IsDictionary()) ||
H A Druntime.cc4647 Handle<FixedArray> fixed_array = builder.array(); local
4648 fixed_array->set(fixed_array->length() - 1,
4654 fixed_array,
7126 FixedArray* fixed_array,
7131 Object* element = fixed_array->get(i);
7143 Object* obj = fixed_array->get(++i);
7166 FixedArray* fixed_array,
7173 Object* elt = fixed_array->get(i);
7189 Object* next_smi = fixed_array
[all...]
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc1117 Label fixed_array; local
1120 __ j(not_equal, &fixed_array);
1148 __ bind(&fixed_array);
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc1057 Label call_runtime, use_cache, fixed_array; local
1077 __ j(not_equal, &fixed_array);
1105 __ bind(&fixed_array);
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc16563 i::Handle<FixedTypedArrayClass> fixed_array = local
16567 fixed_array->map()->instance_type());
16568 CHECK_EQ(kElementCount, fixed_array->length());
16571 fixed_array->set(i, static_cast<ElementType>(i));
16577 static_cast<int64_t>(fixed_array->get_scalar(i)));
16584 jsobj->set_elements(*fixed_array);
/external/chromium_org/v8/test/mjsunit/
H A Dkeyed-call-generic.js76 var fixed_array = [zero, one, two]; variable
93 testMany(fixed_array, first3num, first3num);

Completed in 483 milliseconds