Functions§
- decode_
fixed32 - | Lower-level versions of Get… that | read directly from a character buffer | without any bounds checking. |
- decode_
fixed64 - encode_
fixed32 - | Lower-level versions of Put… that write | directly into a character buffer | | REQUIRES: dst has enough space for the value | being written
- encode_
fixed64 - encode_
varint32 - | Lower-level versions of Put… that write | directly into a character buffer and return | a pointer just past the last byte written. | | REQUIRES: dst has enough space for the value | being written
- encode_
varint64 - get_
length_ prefixed_ slice - get_
length_ prefixed_ slice_ with_ limit - get_
varint32 - | Standard Get… routines parse a value | from the beginning of a Slice and advance | the slice past the parsed value. |
- get_
varint64 - get_
varint_ 32ptr - | Pointer-based variants of GetVarint… These | either store a value in *v and return a pointer | just past the parsed value, or return nullptr | on error. These routines only look at bytes in | the range [p..limit-1]
- get_
varint_ 32ptr_ fallback - | Internal routine for use by fallback | path of GetVarint32Ptr |
- get_
varint_ 64ptr - put_
fixed32 - | Standard Put… routines append to | a string |
- put_
fixed64 - put_
length_ prefixed_ slice - put_
varint32 - put_
varint64 - varint_
length - | Returns the length of the varint32 or | varint64 encoding of “v” |