Lines Matching defs:offset
61 // Translate an offset into the continuous jump table to a jump table index.
70 // Translate a jump table index to an offset into the continuous jump table.
85 // Translate a far jump table index to an offset into the table.
90 // Translate a far jump table offset to the index into the table.
91 static uint32_t FarJumpSlotOffsetToIndex(uint32_t offset) {
92 DCHECK_EQ(0, offset % kFarJumpTableSlotSize);
93 return offset / kFarJumpTableSlotSize;
104 // Translate a slot index to an offset into the lazy compile table.
136 int offset = 0;
139 DCHECK_EQ(offset, FarJumpSlotIndexToOffset(index));
143 index < num_runtime_slots ? stub_targets[index] : base + offset;
145 offset += kFarJumpTableSlotSize;
146 DCHECK_EQ(offset, jtasm.pc_offset());