Home
last modified time | relevance | path

Searched refs:UL (Results 1 – 25 of 35) sorted by relevance

12

/tools/arch/arm64/include/asm/
A Desr.h12 #define ESR_ELx_EC_UNKNOWN UL(0x00)
13 #define ESR_ELx_EC_WFx UL(0x01)
15 #define ESR_ELx_EC_CP15_32 UL(0x03)
16 #define ESR_ELx_EC_CP15_64 UL(0x04)
17 #define ESR_ELx_EC_CP14_MR UL(0x05)
18 #define ESR_ELx_EC_CP14_LS UL(0x06)
24 #define ESR_ELx_EC_BTI UL(0x0D)
25 #define ESR_ELx_EC_ILL UL(0x0E)
27 #define ESR_ELx_EC_SVC32 UL(0x11)
35 #define ESR_ELx_EC_SVE UL(0x19)
[all …]
A Dsysreg.h1026 #define PIE_R_O UL(0x1)
1027 #define PIE_X_O UL(0x2)
1032 #define PIE_R UL(0x8)
1034 #define PIE_RX UL(0xa)
1035 #define PIE_RW UL(0xc)
1047 #define POE_R UL(0x1)
1048 #define POE_X UL(0x2)
1049 #define POE_RX UL(0x3)
1050 #define POE_W UL(0x4)
1051 #define POE_RW UL(0x5)
[all …]
/tools/arch/riscv/include/asm/
A Dcsr.h21 #define SR_FS_OFF _AC(0x00000000, UL)
23 #define SR_FS_CLEAN _AC(0x00004000, UL)
24 #define SR_FS_DIRTY _AC(0x00006000, UL)
27 #define SR_VS_OFF _AC(0x00000000, UL)
29 #define SR_VS_CLEAN _AC(0x00000400, UL)
33 #define SR_XS_OFF _AC(0x00000000, UL)
54 #define SATP_PPN _AC(0x003FFFFF, UL)
59 #define SATP_ASID_MASK _AC(0x1FF, UL)
136 #define HGATP_MODE_OFF _AC(0, UL)
170 (_AC(1, UL) << IRQ_S_EXT))
[all …]
/tools/testing/selftests/kvm/include/arm64/
A Dprocessor.h47 #define MAIR_ATTR_DEVICE_GRE UL(0x0c)
48 #define MAIR_ATTR_NORMAL_WT UL(0xbb)
84 #define TCR_SH0_MASK (UL(3) << TCR_SH0_SHIFT)
85 #define TCR_SH0_INNER (UL(3) << TCR_SH0_SHIFT)
88 #define TCR_TG0_MASK (UL(3) << TCR_TG0_SHIFT)
89 #define TCR_TG0_4K (UL(0) << TCR_TG0_SHIFT)
90 #define TCR_TG0_64K (UL(1) << TCR_TG0_SHIFT)
91 #define TCR_TG0_16K (UL(2) << TCR_TG0_SHIFT)
94 #define TCR_IPS_MASK (UL(7) << TCR_IPS_SHIFT)
100 #define TCR_HA (UL(1) << 39)
[all …]
/tools/memory-model/
A Dlock.cat20 * UL Unlock: a spin_unlock() event
28 * LKW and UL are write events; UL has Release ordering.
73 let Release = Release | UL
76 (* Match LKW events to their corresponding UL events *)
77 let critical = ([LKW] ; po-loc ; [UL]) \ (po-loc ; [LKW | UL] ; po-loc)
79 flag ~empty UL \ range(critical) as unmatched-unlock
118 let possible-rf-ru e = (((UL * {e}) & po-loc) \
119 ([UL] ; po-loc ; [UL] ; po-loc)) |
120 (((UL | IW) * {e}) & loc & ext)
140 let W = W | UL
[all …]
/tools/testing/selftests/powerpc/dexcr/
A Ddexcr.c65 return prctl(PR_PPC_GET_DEXCR, which, 0UL, 0UL, 0UL); in pr_get_dexcr()
70 return prctl(PR_PPC_SET_DEXCR, which, ctrl, 0UL, 0UL); in pr_set_dexcr()
/tools/include/vdso/
A Dconst.h7 #define UL(x) (_UL(x)) macro
A Dbits.h7 #define BIT(nr) (UL(1) << (nr))
/tools/include/linux/
A Dbitmap.h27 #define BITMAP_FIRST_WORD_MASK(start) (~0UL << ((start) & (BITS_PER_LONG - 1)))
28 #define BITMAP_LAST_WORD_MASK(nbits) (~0UL >> (-(nbits) & (BITS_PER_LONG - 1)))
35 *dst = 0UL; in bitmap_zero()
A Dfind.h101 return val == ~0UL ? size : ffz(val); in find_next_zero_bit()
170 return val == ~0UL ? size : ffz(val); in find_first_zero_bit()
A Dpoison.h13 # define POISON_POINTER_DELTA _AC(CONFIG_ILLEGAL_POINTER_VALUE, UL)
A Dmm.h9 #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT)
A Dbits.h10 #define BIT_MASK(nr) (UL(1) << ((nr) % BITS_PER_LONG))
/tools/include/uapi/linux/
A Dconst.h25 #define _UL(x) (_AC(x, UL))
A Dprctl.h238 # define PR_MTE_TCF_NONE 0UL
/tools/lib/
A Dbitmap.c115 mask_to_set = ~0UL; in __bitmap_set()
135 mask_to_clear = ~0UL; in __bitmap_clear()
/tools/testing/selftests/bpf/prog_tests/
A Dread_vsyscall.c11 #define VSYSCALL_ADDR 0UL
/tools/testing/selftests/arm64/mte/
A Dmte_def.h25 #define PR_MTE_TCF_NONE (0UL << PR_MTE_TCF_SHIFT)
/tools/perf/arch/riscv/util/
A Driscv_trap_types.h6 #define CAUSE_IRQ_FLAG (_AC(1, UL) << (__riscv_xlen - 1))
/tools/memory-model/Documentation/
A Dherd-representation.txt8 # UL, an Unlock event
49 | spin_unlock | UL |
/tools/power/x86/intel-speed-select/
A Disst.h35 #define GENMASK(h, l) (((~0UL) << (l)) & (~0UL >> (sizeof(long) * 8 - 1 - (h))))
/tools/perf/trace/beauty/include/uapi/linux/
A Dprctl.h238 # define PR_MTE_TCF_NONE 0UL
/tools/include/nolibc/
A Dstdlib.h200 signed char pos = (~0UL > 0xfffffffful) ? 60 : 28; in utoh_r()
242 int pos = (~0UL > 0xfffffffful) ? 19 : 9; in utoa_r()
/tools/testing/vma/
A Dvma_internal.h35 #define mmap_min_addr 0UL
36 #define dac_mmap_min_addr 0UL
117 #define FIRST_USER_ADDRESS 0UL
118 #define USER_PGTABLES_CEILING 0UL
/tools/testing/selftests/timers/
A Dvalid-adjtimex.c103 #define LONG_MAX (~0UL>>1)

Completed in 55 milliseconds

12