Lines Matching defs:byte
94 func ConsumeField(b []byte) (Number, Type, int) {
112 func ConsumeFieldValue(num Number, typ Type, b []byte) (n int) {
116 func consumeFieldValueD(num Number, typ Type, b []byte, depth int) (n int) {
162 func AppendTag(b []byte, num Number, typ Type) []byte {
168 func ConsumeTag(b []byte) (Number, Type, int) {
185 func AppendVarint(b []byte, v uint64) []byte {
267 func ConsumeVarint(b []byte) (v uint64, n int) {
378 func AppendFixed32(b []byte, v uint32) []byte {
388 func ConsumeFixed32(b []byte) (v uint32, n int) {
402 func AppendFixed64(b []byte, v uint64) []byte {
416 func ConsumeFixed64(b []byte) (v uint64, n int) {
430 func AppendBytes(b []byte, v []byte) []byte {
436 func ConsumeBytes(b []byte) (v []byte, n int) {
454 func AppendString(b []byte, v string) []byte {
460 func ConsumeString(b []byte) (v string, n int) {
467 func AppendGroup(b []byte, num Number, v []byte) []byte {
475 func ConsumeGroup(num Number, b []byte) (v []byte, n int) {