Lines Matching refs:PC
174 BPF_JA 0x00 PC += off BPF_JMP only
175 BPF_JEQ 0x10 PC += off if dst == src
176 BPF_JGT 0x20 PC += off if dst > src unsigned
177 BPF_JGE 0x30 PC += off if dst >= src unsigned
178 BPF_JSET 0x40 PC += off if dst & src
179 BPF_JNE 0x50 PC += off if dst != src
180 BPF_JSGT 0x60 PC += off if dst > src signed
181 BPF_JSGE 0x70 PC += off if dst >= src signed
184 BPF_JLT 0xa0 PC += off if dst < src unsigned
185 BPF_JLE 0xb0 PC += off if dst <= src unsigned
186 BPF_JSLT 0xc0 PC += off if dst < src signed
187 BPF_JSLE 0xd0 PC += off if dst <= src signed