Home | History | Annotate | Download | only in common

Lines Matching defs:ByteBuffer

53 struct ByteBuffer {
54 ByteBuffer() : start(0), end(0) { }
55 ByteBuffer(const uint8_t *set_start, size_t set_size)
57 ~ByteBuffer() { };
61 bool operator==(const ByteBuffer &that) const {
64 bool operator!=(const ByteBuffer &that) const {
77 // A cursor pointing into a ByteBuffer that can parse numbers of various
80 // haven't gone beyond the end of the enclosing ByteBuffer.
85 ByteCursor(const ByteBuffer *buffer, bool big_endian = false)
250 const ByteBuffer *buffer_;