Lines Matching refs:pc
179 size_t pc = 0, dp = 0, tdp = 0, len = 0; in asn1_ber_decoder() local
203 pc, machlen, dp, datalen, csp, jsp); in asn1_ber_decoder()
204 if (unlikely(pc >= machlen)) in asn1_ber_decoder()
206 op = machine[pc]; in asn1_ber_decoder()
207 if (unlikely(pc + asn1_op_lengths[op] > machlen)) in asn1_ber_decoder()
220 pc += asn1_op_lengths[op]; in asn1_ber_decoder()
242 optag = machine[pc + 1]; in asn1_ber_decoder()
252 pc += asn1_op_lengths[op]; in asn1_ber_decoder()
314 ret = actions[machine[pc + 1]](context, hdr, tag, data + dp, len); in asn1_ber_decoder()
322 ret = actions[machine[pc + 2]](context, hdr, tag, data + dp, len); in asn1_ber_decoder()
346 pc += asn1_op_lengths[op]; in asn1_ber_decoder()
355 jump_stack[jsp++] = pc + asn1_op_lengths[op]; in asn1_ber_decoder()
356 pc = machine[pc + 2]; in asn1_ber_decoder()
362 pc += asn1_op_lengths[op]; in asn1_ber_decoder()
401 pc = machine[pc + 1]; in asn1_ber_decoder()
414 pc = machine[pc + 1]; in asn1_ber_decoder()
427 act = machine[pc + 2]; in asn1_ber_decoder()
429 act = machine[pc + 1]; in asn1_ber_decoder()
432 pc += asn1_op_lengths[op]; in asn1_ber_decoder()
437 pc += asn1_op_lengths[op]; in asn1_ber_decoder()
441 ret = actions[machine[pc + 1]](context, hdr, tag, data + tdp, len); in asn1_ber_decoder()
444 pc += asn1_op_lengths[op]; in asn1_ber_decoder()
450 pc = jump_stack[--jsp]; in asn1_ber_decoder()
460 op, pc); in asn1_ber_decoder()
503 errmsg, pc, dp, optag, tag, len); in asn1_ber_decoder()