__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* Copyright (C) 2017-2018 ARM Limited */ /* * For use by other UAPI headers only. * Do not make direct use of header or its definitions. */ #ifndef _UAPI__ASM_SVE_CONTEXT_H #define _UAPI__ASM_SVE_CONTEXT_H #include <linux/types.h> #define __SVE_VQ_BYTES 16 /* number of bytes per quadword */ /* * Yes, __SVE_VQ_MAX is 512 QUADWORDS. * * To help ensure forward portability, this is much larger than the * current maximum value defined by the SVE architecture. While arrays * or static allocations can be sized based on this value, watch out! * It will waste a surprisingly large amount of memory. * * Dynamic sizing based on the actual runtime vector length is likely to * be preferable for most purposes. */ #define __SVE_VQ_MIN 1 #define __SVE_VQ_MAX 512 #define __SVE_VL_MIN (__SVE_VQ_MIN * __SVE_VQ_BYTES) #define __SVE_VL_MAX (__SVE_VQ_MAX * __SVE_VQ_BYTES) #define __SVE_NUM_ZREGS 32 #define __SVE_NUM_PREGS 16 #define __sve_vl_valid(vl) \ ((vl) % __SVE_VQ_BYTES == 0 && \ (vl) >= __SVE_VL_MIN && \ (vl) <= __SVE_VL_MAX) #define __sve_vq_from_vl(vl) ((vl) / __SVE_VQ_BYTES) #define __sve_vl_from_vq(vq) ((vq) * __SVE_VQ_BYTES) #define __SVE_ZREG_SIZE(vq) ((__u32)(vq) * __SVE_VQ_BYTES) #define __SVE_PREG_SIZE(vq) ((__u32)(vq) * (__SVE_VQ_BYTES / 8)) #define __SVE_FFR_SIZE(vq) __SVE_PREG_SIZE(vq) #define __SVE_ZREGS_OFFSET 0 #define __SVE_ZREG_OFFSET(vq, n) \ (__SVE_ZREGS_OFFSET + __SVE_ZREG_SIZE(vq) * (n)) #define __SVE_ZREGS_SIZE(vq) \ (__SVE_ZREG_OFFSET(vq, __SVE_NUM_ZREGS) - __SVE_ZREGS_OFFSET) #define __SVE_PREGS_OFFSET(vq) \ (__SVE_ZREGS_OFFSET + __SVE_ZREGS_SIZE(vq)) #define __SVE_PREG_OFFSET(vq, n) \ (__SVE_PREGS_OFFSET(vq) + __SVE_PREG_SIZE(vq) * (n)) #define __SVE_PREGS_SIZE(vq) \ (__SVE_PREG_OFFSET(vq, __SVE_NUM_PREGS) - __SVE_PREGS_OFFSET(vq)) #define __SVE_FFR_OFFSET(vq) \ (__SVE_PREGS_OFFSET(vq) + __SVE_PREGS_SIZE(vq)) #endif /* ! _UAPI__ASM_SVE_CONTEXT_H */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Kbuild | File | 85 B | 0644 |
|
| auxvec.h | File | 912 B | 0644 |
|
| bitsperlong.h | File | 841 B | 0644 |
|
| bpf_perf_event.h | File | 257 B | 0644 |
|
| byteorder.h | File | 887 B | 0644 |
|
| fcntl.h | File | 1.02 KB | 0644 |
|
| hwcap.h | File | 4.61 KB | 0644 |
|
| kvm.h | File | 17.21 KB | 0644 |
|
| mman.h | File | 552 B | 0644 |
|
| param.h | File | 798 B | 0644 |
|
| perf_regs.h | File | 1.04 KB | 0644 |
|
| posix_types.h | File | 325 B | 0644 |
|
| ptrace.h | File | 9.57 KB | 0644 |
|
| setup.h | File | 879 B | 0644 |
|
| sigcontext.h | File | 11.12 KB | 0644 |
|
| signal.h | File | 898 B | 0644 |
|
| statfs.h | File | 842 B | 0644 |
|
| sve_context.h | File | 1.96 KB | 0644 |
|
| ucontext.h | File | 1.06 KB | 0644 |
|
| unistd.h | File | 90 B | 0644 |
|