Home | History | Annotate | Download | only in gob

Lines Matching full:uint64

92 func (state *encoderState) encodeUint(x uint64) {
111 var x uint64
113 x = uint64(^i<<1) | 1
115 x = uint64(i << 1)
117 state.encodeUint(uint64(x))
135 state.encodeUint(uint64(instr.field - state.fieldnum))
182 // encUint encodes the unsigned integer (uint uint8 uint16 uint32 uint64 uintptr) referenced by v.
191 // floatBits returns a uint64 holding the bits of a floating-point number.
197 func floatBits(f float64) uint64 {
199 var v uint64
237 state.encodeUint(uint64(len(b)))
248 state.encodeUint(uint64(len(s)))
331 state.encodeUint(uint64(length))
365 state.encodeUint(uint64(len(keys)))
401 state.encodeUint(uint64(len(name)))
446 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
480 state.encodeUint(uint64(len(data)))
496 reflect.Uint64: encUint,