/usr/include/x86_64-linux-gnu/asm
NameSizeModeActions
a.out.h7560644editdlrm
auxvec.h5460644editdlrm
bitsperlong.h3210644editdlrm
boot.h3230644editdlrm
bootparam.h82370644editdlrm
bpf_perf_event.h400644editdlrm
byteorder.h2000644editdlrm
debugreg.h33290644editdlrm
e820.h25790644editdlrm
errno.h310644editdlrm
fcntl.h310644editdlrm
hwcap2.h3240644editdlrm
hw_breakpoint.h690644editdlrm
ioctl.h310644editdlrm
ioctls.h320644editdlrm
ipcbuf.h320644editdlrm
ist.h8540644editdlrm
kvm.h108580644editdlrm
kvm_para.h43000644editdlrm
kvm_perf.h3880644editdlrm
ldt.h13060644editdlrm
mce.h17300644editdlrm
mman.h10020644editdlrm
msgbuf.h10790644editdlrm
msr.h3460644editdlrm
mtrr.h42250644editdlrm
param.h310644editdlrm
perf_regs.h14030644editdlrm
poll.h300644editdlrm
posix_types.h2240644editdlrm
posix_types_32.h7650644editdlrm
posix_types_64.h6090644editdlrm
posix_types_x32.h5810644editdlrm
prctl.h5240644editdlrm
processor-flags.h66230644editdlrm
ptrace-abi.h20370644editdlrm
ptrace.h14950644editdlrm
resource.h340644editdlrm
sembuf.h10700644editdlrm
setup.h60644editdlrm
sgx.h59200644editdlrm
shmbuf.h12580644editdlrm
sigcontext.h97230644editdlrm
sigcontext32.h2710644editdlrm
siginfo.h4220644editdlrm
signal.h20610644editdlrm
socket.h320644editdlrm
sockios.h330644editdlrm
stat.h31310644editdlrm
statfs.h4160644editdlrm
svm.h89020644editdlrm
swab.h7240644editdlrm
termbits.h340644editdlrm
termios.h330644editdlrm
types.h310644editdlrm
ucontext.h21170644editdlrm
unistd.h6230644editdlrm
unistd_32.h118760644editdlrm
unistd_64.h96870644editdlrm
unistd_x32.h170540644editdlrm
vm86.h31860644editdlrm
vmx.h73680644editdlrm
vsyscall.h2630644editdlrm
Edit: /usr/include/x86_64-linux-gnu/asm/swab.h (724B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASM_X86_SWAB_H #define _ASM_X86_SWAB_H #include static __inline__ __u32 __arch_swab32(__u32 val) { __asm__("bswapl %0" : "=r" (val) : "0" (val)); return val; } #define __arch_swab32 __arch_swab32 static __inline__ __u64 __arch_swab64(__u64 val) { #ifdef __i386__ union { struct { __u32 a; __u32 b; } s; __u64 u; } v; v.u = val; __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b)); return v.u; #else /* __i386__ */ __asm__("bswapq %0" : "=r" (val) : "0" (val)); return val; #endif } #define __arch_swab64 __arch_swab64 #endif /* _ASM_X86_SWAB_H */