Home | History | Annotate | Download | only in mips

Lines Matching refs:FixedArray

127     size += FixedArray::SizeFor(initial_capacity);
162 // Initialize the FixedArray and fill it with holes. FixedArray length is
168 STATIC_ASSERT(0 * kPointerSize == FixedArray::kMapOffset);
172 STATIC_ASSERT(1 * kPointerSize == FixedArray::kLengthOffset);
176 // Fill the FixedArray with the hole value. Inline the code if short.
177 STATIC_ASSERT(2 * kPointerSize == FixedArray::kHeaderSize);
200 // into the result register and beginning and end of the FixedArray elements
224 // Allocate the JSArray object together with space for a FixedArray with the
228 (JSArray::kSize + FixedArray::kHeaderSize) / kPointerSize);
263 // Initialize the fixed array and fill it with holes. FixedArray length is
269 ASSERT_EQ(0 * kPointerSize, FixedArray::kMapOffset);
273 // Length of the FixedArray is the number of pre-allocated elements if
275 // JSArrays. The length of a FixedArray is stored as a smi.
278 ASSERT_EQ(1 * kPointerSize, FixedArray::kLengthOffset);
290 // Fill the allocated FixedArray with the hole value if requested.
309 // the JSArray object and the FixedArray elements array and initializes these.
881 __ Addu(a0, a3, Operand(FixedArray::kHeaderSize / kPointerSize));
890 // Initialize the FixedArray.
899 __ sw(a0, MemOperand(a2, FixedArray::kLengthOffset));
903 ASSERT_EQ(1 * kPointerSize, FixedArray::kLengthOffset);
907 // a2: First element of FixedArray (not tagged)
910 // t5: FixedArray (not tagged)
913 ASSERT_EQ(2 * kPointerSize, FixedArray::kHeaderSize);
929 // Store the initialized FixedArray into the properties field of
933 // t5: FixedArray (not tagged)