OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
m68k
/
include
/
uapi
/
asm
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:12 AM
rwxr-xr-x
📄
Kbuild
530 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
a.out.h
772 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo-amiga.h
1.46 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo-apollo.h
582 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo-atari.h
1015 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo-hp300.h
1.5 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo-mac.h
4.45 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo-q40.h
358 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo-vme.h
1.75 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
bootinfo.h
4.83 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
byteorder.h
188 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cachectl.h
559 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
fcntl.h
376 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioctls.h
220 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
param.h
254 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
poll.h
197 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
posix_types.h
733 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace.h
1.78 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
setup.h
461 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sigcontext.h
627 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
signal.h
2.56 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
stat.h
1.65 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
swab.h
665 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unistd.h
10.59 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: swab.h
Close
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _M68K_SWAB_H #define _M68K_SWAB_H #include <linux/types.h> #include <linux/compiler.h> #define __SWAB_64_THRU_32__ #if defined (__mcfisaaplus__) || defined (__mcfisac__) static inline __attribute_const__ __u32 __arch_swab32(__u32 val) { __asm__("byterev %0" : "=d" (val) : "0" (val)); return val; } #define __arch_swab32 __arch_swab32 #elif !defined(__mcoldfire__) static inline __attribute_const__ __u32 __arch_swab32(__u32 val) { __asm__("rolw #8,%0; swap %0; rolw #8,%0" : "=d" (val) : "0" (val)); return val; } #define __arch_swab32 __arch_swab32 #endif #endif /* _M68K_SWAB_H */