Home | History | Annotate | Download | only in src

Lines Matching defs:byte

47         buffer_(reinterpret_cast<byte*>(malloc(capacity_))) {
109 buffer_ = reinterpret_cast<byte*>(realloc(buffer_, capacity_));
115 byte* buffer() { return buffer_; }
127 uint8_t byte = value & 0x7F;
129 if (value != 0) byte |= 0x80;
130 Write<uint8_t>(byte);
137 int8_t byte = value & 0x7F;
138 bool byte_sign = byte & 0x40;
144 byte |= 0x80;
147 Write<int8_t>(byte);
169 byte* buffer_;