Lines Matching refs:A
123 uint32_t A; member
455 rl_printf("A: [%#08x][%u]\n", r->A, r->A); in bpf_dump_curr()
645 r->R = r->A; in bpf_single_step()
653 r->X = r->A; in bpf_single_step()
656 r->A = r->X; in bpf_single_step()
659 r->M[K] = r->A; in bpf_single_step()
667 r->A = extract_u32(pkt, K); in bpf_single_step()
674 r->A = extract_u16(pkt, K); in bpf_single_step()
681 r->A = extract_u8(pkt, K); in bpf_single_step()
688 r->A = extract_u32(pkt, r->X + K); in bpf_single_step()
693 r->A = extract_u16(pkt, r->X + K); in bpf_single_step()
700 r->A = extract_u8(pkt, r->X + K); in bpf_single_step()
713 r->A = pkt_len; in bpf_single_step()
716 r->A = pkt_len; in bpf_single_step()
719 r->A = K; in bpf_single_step()
725 r->A = r->M[K]; in bpf_single_step()
734 r->Pc += r->A > r->X ? f->jt : f->jf; in bpf_single_step()
737 r->Pc += r->A > K ? f->jt : f->jf; in bpf_single_step()
740 r->Pc += r->A >= r->X ? f->jt : f->jf; in bpf_single_step()
743 r->Pc += r->A >= K ? f->jt : f->jf; in bpf_single_step()
746 r->Pc += r->A == r->X ? f->jt : f->jf; in bpf_single_step()
749 r->Pc += r->A == K ? f->jt : f->jf; in bpf_single_step()
752 r->Pc += r->A & r->X ? f->jt : f->jf; in bpf_single_step()
755 r->Pc += r->A & K ? f->jt : f->jf; in bpf_single_step()
758 r->A = -r->A; in bpf_single_step()
761 r->A <<= r->X; in bpf_single_step()
764 r->A <<= K; in bpf_single_step()
767 r->A >>= r->X; in bpf_single_step()
770 r->A >>= K; in bpf_single_step()
773 r->A += r->X; in bpf_single_step()
776 r->A += K; in bpf_single_step()
779 r->A -= r->X; in bpf_single_step()
782 r->A -= K; in bpf_single_step()
785 r->A *= r->X; in bpf_single_step()
788 r->A *= K; in bpf_single_step()
806 r->A /= r->X; in bpf_single_step()
809 r->A /= K; in bpf_single_step()
812 r->A %= r->X; in bpf_single_step()
815 r->A %= K; in bpf_single_step()
820 r->A &= r->X; in bpf_single_step()
823 r->A &= K; in bpf_single_step()
826 r->A |= r->X; in bpf_single_step()
829 r->A |= K; in bpf_single_step()
832 r->A ^= r->X; in bpf_single_step()
835 r->A ^= K; in bpf_single_step()