Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-5.15.0-185 /
include /
vdso /
Delete
Unzip
Name
Size
Permission
Date
Action
bits.h
171
B
-rw-r--r--
2021-11-01 05:53
clocksource.h
479
B
-rw-r--r--
2021-11-01 05:53
const.h
196
B
-rw-r--r--
2021-11-01 05:53
datapage.h
4.12
KB
-rw-r--r--
2021-11-01 05:53
helpers.h
1.27
KB
-rw-r--r--
2021-11-01 05:53
jiffies.h
298
B
-rw-r--r--
2021-11-01 05:53
ktime.h
454
B
-rw-r--r--
2021-11-01 05:53
limits.h
564
B
-rw-r--r--
2021-11-01 05:53
math64.h
468
B
-rw-r--r--
2021-11-01 05:53
processor.h
251
B
-rw-r--r--
2021-11-01 05:53
time.h
190
B
-rw-r--r--
2021-11-01 05:53
time32.h
274
B
-rw-r--r--
2021-11-01 05:53
time64.h
426
B
-rw-r--r--
2021-11-01 05:53
vsyscall.h
288
B
-rw-r--r--
2021-11-01 05:53
Save
Rename
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __VDSO_MATH64_H #define __VDSO_MATH64_H static __always_inline u32 __iter_div_u64_rem(u64 dividend, u32 divisor, u64 *remainder) { u32 ret = 0; while (dividend >= divisor) { /* The following asm() prevents the compiler from optimising this loop into a modulo operation. */ asm("" : "+rm"(dividend)); dividend -= divisor; ret++; } *remainder = dividend; return ret; } #endif /* __VDSO_MATH64_H */