OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
alpha
/
include
/
uapi
/
asm
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:15 AM
rwxr-xr-x
📄
Kbuild
101 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
a.out.h
2 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
auxvec.h
774 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bitsperlong.h
237 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
byteorder.h
194 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
compiler.h
4.12 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
console.h
1.15 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
errno.h
5.31 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
fcntl.h
1.86 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
fpu.h
4.52 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
gentrap.h
1.43 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioctl.h
2.3 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioctls.h
4.32 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
ipcbuf.h
95 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
kvm_para.h
97 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mman.h
3.45 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
msgbuf.h
922 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
pal.h
1.01 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
param.h
313 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
poll.h
93 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
posix_types.h
513 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace.h
1.66 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
reg.h
1005 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
regdef.h
1.04 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
resource.h
761 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sembuf.h
670 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
setup.h
1.43 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
shmbuf.h
1.08 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sigcontext.h
891 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
siginfo.h
468 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
signal.h
3.08 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
socket.h
2.54 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sockios.h
497 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
stat.h
1.05 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
statfs.h
314 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
swab.h
1.25 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sysinfo.h
775 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
termbits.h
5.14 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
termios.h
1.49 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
types.h
884 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unistd.h
14.99 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 _ALPHA_SWAB_H #define _ALPHA_SWAB_H #include <linux/types.h> #include <linux/compiler.h> #include <asm/compiler.h> #ifdef __GNUC__ static inline __attribute_const__ __u32 __arch_swab32(__u32 x) { /* * Unfortunately, we can't use the 6 instruction sequence * on ev6 since the latency of the UNPKBW is 3, which is * pretty hard to hide. Just in case a future implementation * has a lower latency, here's the sequence (also by Mike Burrows) * * UNPKBW a0, v0 v0: 00AA00BB00CC00DD * SLL v0, 24, a0 a0: BB00CC00DD000000 * BIS v0, a0, a0 a0: BBAACCBBDDCC00DD * EXTWL a0, 6, v0 v0: 000000000000BBAA * ZAP a0, 0xf3, a0 a0: 00000000DDCC0000 * ADDL a0, v0, v0 v0: ssssssssDDCCBBAA */ __u64 t0, t1, t2, t3; t0 = __kernel_inslh(x, 7); /* t0 : 0000000000AABBCC */ t1 = __kernel_inswl(x, 3); /* t1 : 000000CCDD000000 */ t1 |= t0; /* t1 : 000000CCDDAABBCC */ t2 = t1 >> 16; /* t2 : 0000000000CCDDAA */ t0 = t1 & 0xFF00FF00; /* t0 : 00000000DD00BB00 */ t3 = t2 & 0x00FF00FF; /* t3 : 0000000000CC00AA */ t1 = t0 + t3; /* t1 : ssssssssDDCCBBAA */ return t1; } #define __arch_swab32 __arch_swab32 #endif /* __GNUC__ */ #endif /* _ALPHA_SWAB_H */