Lines Matching defs:byte
98 func ConsumeField(b []byte) (Number, Type, int) {
116 func ConsumeFieldValue(num Number, typ Type, b []byte) (n int) {
120 func consumeFieldValueD(num Number, typ Type, b []byte, depth int) (n int) {
166 func AppendTag(b []byte, num Number, typ Type) []byte {
172 func ConsumeTag(b []byte) (Number, Type, int) {
189 func AppendVarint(b []byte, v uint64) []byte {
271 func ConsumeVarint(b []byte) (v uint64, n int) {
382 func AppendFixed32(b []byte, v uint32) []byte {
392 func ConsumeFixed32(b []byte) (v uint32, n int) {
406 func AppendFixed64(b []byte, v uint64) []byte {
420 func ConsumeFixed64(b []byte) (v uint64, n int) {
434 func AppendBytes(b []byte, v []byte) []byte {
440 func ConsumeBytes(b []byte) (v []byte, n int) {
458 func AppendString(b []byte, v string) []byte {
464 func ConsumeString(b []byte) (v string, n int) {
471 func AppendGroup(b []byte, num Number, v []byte) []byte {
479 func ConsumeGroup(num Number, b []byte) (v []byte, n int) {