Searched defs:decInstr (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/encoding/gob/ |
D | decode.go | 196 type decInstr struct { struct 197 op decOp 198 field int // field number of the wire type 199 index []int // field access indices for destination type 200 ovfl error // error message for overflow/underflow (for arrays, of the elements) 204 func ignoreUint(i *decInstr, state *decoderState, v reflect.Value) { 210 func ignoreTwoUints(i *decInstr, state *decoderState, v reflect.Value) { 237 func decBool(i *decInstr, state *decoderState, value reflect.Value) { 242 func decInt8(i *decInstr, state *decoderState, value reflect.Value) { 251 func decUint8(i *decInstr, state *decoderState, value reflect.Value) { [all …]
|
D | codec_test.go | 324 func execDec(instr *decInstr, state *decoderState, t *testing.T, value reflect.Value) {
|