Lines Matching refs:offset
47 int EmitSelf(size_t offset, size_t len);
88 inline uint64_t GetU64(size_t offset) const
91 return *reinterpret_cast<uint64_t *>(buf_ + offset);
94 inline uint32_t GetU32(size_t offset) const
97 return *reinterpret_cast<uint32_t *>(buf_ + offset);
100 inline void PutU32(size_t offset, uint32_t data) const
103 *reinterpret_cast<uint32_t *>(buf_ + offset) = data;
106 inline uint32_t GetU16(size_t offset) const
109 return *reinterpret_cast<uint16_t *>(buf_ + offset);
112 inline void PutU16(size_t offset, uint16_t data) const
115 *reinterpret_cast<uint16_t *>(buf_ + offset) = data;
118 inline uint32_t GetU8(size_t offset) const
121 return *(buf_ + offset);
124 inline void PutU8(size_t offset, uint8_t data) const
127 *(buf_ + offset) = data;