Home
last modified time | relevance | path

Searched refs:getop (Results 1 – 5 of 5) sorted by relevance

/third_party/grpc/third_party/upb/upb/pb/
Ddecoder.c649 UPB_ASSERT(getop(*d->last) == OP_CHECKDELIM); in dispatch()
696 op = getop(instruction); in run_decoder_vm()
928 if (getop(*p) == OP_CHECKDELIM) { in upb_pbdecoder_end()
930 UPB_ASSERT(getop(*d->pc) == OP_TAG1 || in upb_pbdecoder_end()
931 getop(*d->pc) == OP_TAG2 || in upb_pbdecoder_end()
932 getop(*d->pc) == OP_TAGN || in upb_pbdecoder_end()
933 getop(*d->pc) == OP_DISPATCH); in upb_pbdecoder_end()
Ddecoder.int.h75 UPB_INLINE opcode getop(uint32_t instr) { return (opcode)(instr & 0xff); } in getop() function
Dcompile_decoder.c116 switch (getop(instr)) { in instruction_len()
125 switch (getop(instruction)) { in op_has_longofs()
152 *instruction = getop(*instruction) | (uint32_t)ofs << 8; in setofs()
345 uint8_t op = getop(instr); in dumpbc()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c6128 switch (getop(instr)) { in instruction_len()
6137 switch (getop(instruction)) { in op_has_longofs()
6164 *instruction = getop(*instruction) | (uint32_t)ofs << 8; in setofs()
6357 uint8_t op = getop(instr); in dumpbc()
7579 UPB_ASSERT(getop(*d->last) == OP_CHECKDELIM); in dispatch()
7626 op = getop(instruction); in run_decoder_vm()
7858 if (getop(*p) == OP_CHECKDELIM) { in upb_pbdecoder_end()
7860 UPB_ASSERT(getop(*d->pc) == OP_TAG1 || in upb_pbdecoder_end()
7861 getop(*d->pc) == OP_TAG2 || in upb_pbdecoder_end()
7862 getop(*d->pc) == OP_TAGN || in upb_pbdecoder_end()
[all …]
Dupb.h6020 UPB_INLINE opcode getop(uint32_t instr) { return (opcode)(instr & 0xff); }