Lines Matching defs:length
156 return SeqOneByteString::SizeFor(object.length(kAcquireLoad));
162 return SeqTwoByteString::SizeFor(object.length(kAcquireLoad));
267 // The length() function checks that the length is a Smi.
269 Object length = object.unchecked_length(kAcquireLoad);
270 // No accounting here to avoid re-reading the length which could already
273 // The cached length must be the actual length as the array is not black.
274 // Left trimming marks the array black before over-writing the length.
275 DCHECK(length.IsSmi());
276 int size = T::SizeFor(Smi::ToInt(length));