Lines Matching refs:byte
22 enum class DwarfOpcodes : byte {
35 enum DwarfEncodingSpecifiers : byte {
141 void WriteByte(byte value) { eh_frame_buffer_.push_back(value); }
143 WriteByte(static_cast<byte>(opcode));
145 void WriteBytes(const byte* start, int size) {
149 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value));
152 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value));
210 ZoneVector<byte> eh_frame_buffer_;
215 EhFrameIterator(const byte* start, const byte* end)
241 byte GetNextByte() { return GetNextValue<byte>(); }
268 static uint32_t DecodeULeb128(const byte* encoded, int* encoded_size);
269 static int32_t DecodeSLeb128(const byte* encoded, int* encoded_size);
280 const byte* start_;
281 const byte* next_;
282 const byte* end_;
289 EhFrameDisassembler(const byte* start, const byte* end)
299 static void DumpDwarfDirectives(std::ostream& stream, const byte* start,
300 const byte* end);
304 const byte* start_;
305 const byte* end_;