Lines Matching defs:index
11 #include "src/objects/internal-index.h"
136 int RemovedIndexAt(int index) {
137 return Smi::ToInt(get(RemovedHolesIndex() + index));
154 // The next table is stored at the same index as the nof elements.
235 // Returns an index into |this| for the given entry.
261 void SetRemovedIndexAt(int index, int removed_index) {
262 return set(RemovedHolesIndex() + index, Smi::FromInt(removed_index));
367 // The index are represented as bytes, on a 64 bit machine with
372 // Note: For the sake of brevity, the following start with index 0
406 // ByteIndex points to a index in the table that needs to be
488 // index.
613 byte getByte(Offset offset, ByteIndex index) const {
616 return ReadField<byte>(offset + (index * kOneByteSize));
619 void setByte(Offset offset, ByteIndex index, byte value) {
622 WriteField<byte>(offset + (index * kOneByteSize), value);