Lines Matching full:offset
26 inline auto BytecodeInst<Mode>::ReadHelper(size_t byteoffset, size_t bytecount, size_t offset, size… in ReadHelper() argument
30 size_t right_shift = offset % BYTE_WIDTH; in ReadHelper()
51 template <size_t offset, size_t width, bool is_signed /* = false */>
55 constexpr size_t BYTE_OFFSET = offset / BYTE_WIDTH; in Read()
56 constexpr size_t BYTE_OFFSET_END = (offset + width + BYTE_WIDTH - 1) / BYTE_WIDTH; in Read()
62 return ReadHelper<return_type, storage_type>(BYTE_OFFSET, BYTE_COUNT, offset, width); in Read()
67 inline auto BytecodeInst<Mode>::Read64(size_t offset, size_t width) const in Read64() argument
72 ASSERT((offset % BYTE_WIDTH) + width <= BIT64); in Read64()
74 size_t byteoffset = offset / BYTE_WIDTH; in Read64()
75 size_t byteoffset_end = (offset + width + BYTE_WIDTH - 1) / BYTE_WIDTH; in Read64()
81 return ReadHelper<return_type, storage_type>(byteoffset, bytecount, offset, width); in Read64()