Lines Matching refs:dst
351 def BpfMov64Reg(dst, src): argument
353 dst_src = src << 4 | dst
358 def BpfLdxMem(size, dst, src, off): argument
360 dst_src = src << 4 | dst
365 def BpfStxMem(size, dst, src, off): argument
367 dst_src = src << 4 | dst
372 def BpfStMem(size, dst, off, imm): argument
374 dst_src = dst
379 def BpfAlu64Imm(op, dst, imm): argument
381 dst_src = dst
386 def BpfJumpImm(op, dst, imm, off): argument
388 dst_src = dst
393 def BpfRawInsn(code, dst, src, off, imm): argument
394 ret = BpfInsn((code, (src << 4 | dst), off, imm))
398 def BpfMov64Imm(dst, imm): argument
400 dst_src = dst
411 def BpfLoadMapFd(map_fd, dst): argument
413 dst_src = BPF_PSEUDO_MAP_FD << 4 | dst