/prebuilts/go/darwin-x86/src/encoding/gob/ |
encgen.go | 38 state.encodeUint(1) 40 state.encodeUint(0) 49 state.encodeUint(rpart) 50 state.encodeUint(ipart)`, 58 state.encodeUint(rpart) 59 state.encodeUint(ipart)`, 66 state.encodeUint(bits)`, 73 state.encodeUint(bits)`, 109 `state.encodeUint(uint64(len(x))) 116 `state.encodeUint(uint64(x))` [all...] |
enc_helpers.go | 68 state.encodeUint(1) 70 state.encodeUint(0) 95 state.encodeUint(rpart) 96 state.encodeUint(ipart) 120 state.encodeUint(rpart) 121 state.encodeUint(ipart) 144 state.encodeUint(bits) 167 state.encodeUint(bits) 299 state.encodeUint(uint64(len(x))) 322 state.encodeUint(uint64(x) [all...] |
encode.go | 106 // encodeUint writes an encoded unsigned integer to state.b. 107 func (state *encoderState) encodeUint(x uint64) { 130 state.encodeUint(x) 148 state.encodeUint(uint64(instr.field - state.fieldnum)) 179 state.encodeUint(1) 181 state.encodeUint(0) 200 state.encodeUint(value) 221 state.encodeUint(bits) 233 state.encodeUint(rpart) 234 state.encodeUint(ipart [all...] |
encoder.go | 76 enc.countState.encodeUint(uint64(messageLen))
|
codec_test.go | 65 encState.encodeUint(tt.x) 67 t.Errorf("encodeUint: %#x encode: expected % x got % x", tt.x, tt.b, b.Bytes()) 72 encState.encodeUint(u) [all...] |
/prebuilts/go/linux-x86/src/encoding/gob/ |
encgen.go | 38 state.encodeUint(1) 40 state.encodeUint(0) 49 state.encodeUint(rpart) 50 state.encodeUint(ipart)`, 58 state.encodeUint(rpart) 59 state.encodeUint(ipart)`, 66 state.encodeUint(bits)`, 73 state.encodeUint(bits)`, 109 `state.encodeUint(uint64(len(x))) 116 `state.encodeUint(uint64(x))` [all...] |
enc_helpers.go | 68 state.encodeUint(1) 70 state.encodeUint(0) 95 state.encodeUint(rpart) 96 state.encodeUint(ipart) 120 state.encodeUint(rpart) 121 state.encodeUint(ipart) 144 state.encodeUint(bits) 167 state.encodeUint(bits) 299 state.encodeUint(uint64(len(x))) 322 state.encodeUint(uint64(x) [all...] |
encode.go | 106 // encodeUint writes an encoded unsigned integer to state.b. 107 func (state *encoderState) encodeUint(x uint64) { 130 state.encodeUint(x) 148 state.encodeUint(uint64(instr.field - state.fieldnum)) 179 state.encodeUint(1) 181 state.encodeUint(0) 200 state.encodeUint(value) 221 state.encodeUint(bits) 233 state.encodeUint(rpart) 234 state.encodeUint(ipart [all...] |
encoder.go | 76 enc.countState.encodeUint(uint64(messageLen))
|
codec_test.go | 65 encState.encodeUint(tt.x) 67 t.Errorf("encodeUint: %#x encode: expected % x got % x", tt.x, tt.b, b.Bytes()) 72 encState.encodeUint(u) [all...] |
/external/curl/lib/ |
x509asn1.c | 357 static int encodeUint(char *buf, int n, unsigned int x) 366 i += encodeUint(buf, n, y); 391 i += encodeUint(buf + i, n - i, x); 395 i += encodeUint(buf + i, n - i, y); 409 i += encodeUint(buf + i, n - i, x); [all...] |