Searched defs:decoderState (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/encoding/gob/ |
D | dec_helpers.go | 52 func decBoolArray(state *decoderState, v reflect.Value, length int, ovfl error) bool { 60 func decBoolSlice(state *decoderState, v reflect.Value, length int, ovfl error) bool { 79 func decComplex64Array(state *decoderState, v reflect.Value, length int, ovfl error) bool { 87 func decComplex64Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool { 108 func decComplex128Array(state *decoderState, v reflect.Value, length int, ovfl error) bool { 116 func decComplex128Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool { 137 func decFloat32Array(state *decoderState, v reflect.Value, length int, ovfl error) bool { 145 func decFloat32Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool { 164 func decFloat64Array(state *decoderState, v reflect.Value, length int, ovfl error) bool { 172 func decFloat64Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool { [all …]
|
D | decode.go | 29 type decoderState struct { struct 30 dec *Decoder 33 b *decBuffer 34 fieldnum int // the last field number read. 35 next *decoderState // for free list 103 func (dec *Decoder) freeDecoderState(d *decoderState) { 146 func (state *decoderState) decodeUint() (x uint64) { 173 func (state *decoderState) decodeInt() int64 { 184 func (state *decoderState) getLength() (int, bool) { 204 func ignoreUint(i *decInstr, state *decoderState, v reflect.Value) { [all …]
|
D | codec_test.go | 324 func execDec(instr *decInstr, state *decoderState, t *testing.T, value reflect.Value) {
|