Lines Matching refs:PC
234 BPF_JA 0x00 PC += off BPF_JMP only
235 BPF_JEQ 0x10 PC += off if dst == src
236 BPF_JGT 0x20 PC += off if dst > src unsigned
237 BPF_JGE 0x30 PC += off if dst >= src unsigned
238 BPF_JSET 0x40 PC += off if dst & src
239 BPF_JNE 0x50 PC += off if dst != src
240 BPF_JSGT 0x60 PC += off if dst > src signed
241 BPF_JSGE 0x70 PC += off if dst >= src signed
244 BPF_JLT 0xa0 PC += off if dst < src unsigned
245 BPF_JLE 0xb0 PC += off if dst <= src unsigned
246 BPF_JSLT 0xc0 PC += off if dst < src signed
247 BPF_JSLE 0xd0 PC += off if dst <= src signed