Lines Matching refs:dst
292 def BpfMov64Reg(dst, src): argument
294 dst_src = src << 4 | dst
299 def BpfLdxMem(size, dst, src, off): argument
301 dst_src = src << 4 | dst
306 def BpfStxMem(size, dst, src, off): argument
308 dst_src = src << 4 | dst
313 def BpfStMem(size, dst, off, imm): argument
315 dst_src = dst
320 def BpfAlu64Imm(op, dst, imm): argument
322 dst_src = dst
327 def BpfJumpImm(op, dst, imm, off): argument
329 dst_src = dst
334 def BpfRawInsn(code, dst, src, off, imm): argument
335 ret = BpfInsn((code, (src << 4 | dst), off, imm))
339 def BpfMov64Imm(dst, imm): argument
341 dst_src = dst
352 def BpfLoadMapFd(map_fd, dst): argument
354 dst_src = BPF_PSEUDO_MAP_FD << 4 | dst