| /src/sys/arm64/include/ |
| H A D | hypervisor.h | 144 #define HAFGRTR_EL2_TRAP_ALL UL(0x0003fffffffe001f) 147 #define HCR_VM (UL(0x1) << 0) 148 #define HCR_SWIO (UL(0x1) << 1) 149 #define HCR_PTW (UL(0x1) << 2) 150 #define HCR_FMO (UL(0x1) << 3) 151 #define HCR_IMO (UL(0x1) << 4) 152 #define HCR_AMO (UL(0x1) << 5) 153 #define HCR_VF (UL(0x1) << 6) 154 #define HCR_VI (UL(0x1) << 7) 155 #define HCR_VSE (UL(0x1) << 8) [all …]
|
| H A D | armreg.h | 358 #define CTR_TminLine_MASK (UL(0x3f) << CTR_TminLine_SHIFT) 661 #define ESR_ELx_EC_MASK (UL(0x3f) << 26) 793 #define ID_AA64DFR0_DebugVer_MASK (UL(0xf) << ID_AA64DFR0_DebugVer_SHIFT) 795 #define ID_AA64DFR0_DebugVer_8 (UL(0x6) << ID_AA64DFR0_DebugVer_SHIFT) 796 #define ID_AA64DFR0_DebugVer_8_VHE (UL(0x7) << ID_AA64DFR0_DebugVer_SHIFT) 797 #define ID_AA64DFR0_DebugVer_8_2 (UL(0x8) << ID_AA64DFR0_DebugVer_SHIFT) 798 #define ID_AA64DFR0_DebugVer_8_4 (UL(0x9) << ID_AA64DFR0_DebugVer_SHIFT) 799 #define ID_AA64DFR0_DebugVer_8_8 (UL(0xa) << ID_AA64DFR0_DebugVer_SHIFT) 800 #define ID_AA64DFR0_DebugVer_8_9 (UL(0xb) << ID_AA64DFR0_DebugVer_SHIFT) 803 #define ID_AA64DFR0_TraceVer_MASK (UL(0xf) << ID_AA64DFR0_TraceVer_SHIFT) [all …]
|
| /src/sbin/ipf/ipftest/ |
| H A D | md5.c | 102 #define UL(x) x##U macro 208 FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */ in Transform() 209 FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */ in Transform() 210 FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */ in Transform() 211 FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */ in Transform() 212 FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */ in Transform() 213 FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */ in Transform() 214 FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */ in Transform() 215 FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 */ in Transform() 216 FF ( a, b, c, d, in[ 8], S11, UL(1770035416)); /* 9 */ in Transform() [all …]
|
| /src/sys/dev/isci/scil/ |
| H A D | scu_registers.h | 91 #define SMU_POST_CONTEXT_PORT_CONTEXT_INDEX_SHIFT (0UL) 109 #define SMU_INTERRUPT_STATUS_QUEUE_ERROR_SHIFT (0UL) 125 #define SMU_INTERRUPT_MASK_QUEUE_ERROR_SHIFT (0UL) 137 #define SMU_INTERRUPT_COALESCING_CONTROL_TIMER_SHIFT (0UL) 147 #define SMU_TASK_CONTEXT_RANGE_START_SHIFT (0UL) 163 #define SMU_COMPLETION_QUEUE_PUT_POINTER_SHIFT (0UL) 181 #define SMU_COMPLETION_QUEUE_GET_POINTER_SHIFT (0UL) 212 #define SMU_COMPLETION_QUEUE_CONTROL_QUEUE_LIMIT_SHIFT (0UL) 229 #define SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT (0UL) 267 #define SMU_CLOCK_GATING_CONTROL_IDLE_ENABLE_SHIFT (0UL) [all …]
|
| H A D | scu_viit_data.h | 83 #define SCU_VIIT_ENTRY_STATUS_SHIFT (0UL) 85 #define SCU_VIIT_ENTRY_ID_INVALID (0UL << SCU_VIIT_ENTRY_ID_SHIFT) 154 #define SCU_IIT_ENTRY_STATUS_SHIFT (0UL) 158 #define SCU_IIT_ENTRY_REMOTE_TAG_SHIFT (0UL) 163 #define SCU_IIT_ENTRY_ID_INVALID (0UL << SCU_IIT_ENTRY_ID_SHIFT)
|
| /src/contrib/gdtoa/ |
| H A D | qnan.c | 66 #define UL (unsigned long) macro 86 printf("#define f_QNAN 0x%lx\n", UL c.L[0]); in main() 90 printf("#define d_QNAN0 0x%lx\n", UL c.L[0]); in main() 91 printf("#define d_QNAN1 0x%lx\n", UL c.L[1]); in main() 104 printf("#define ld_QNAN%d 0x%lx\n", i, UL a.L[i]); in main()
|
| /src/crypto/openssl/crypto/bn/ |
| H A D | bn_srp.c | 22 #define bn_pack4(a1, a2, a3, a4) ((a1##UL << 48) | (a2##UL << 32) | (a3##UL << 16) | a4##UL) 27 #define bn_pack4(a1, a2, a3, a4) ((a3##UL << 16) | a4##UL), ((a1##UL << 16) | a2##UL)
|
| /src/crypto/libecc/include/libecc/words/ |
| H A D | types.h | 140 #define UINT8_C(c) ((uint8_t)(c ## UL)) 141 #define UINT16_C(c) ((uint16_t)(c ## UL)) 142 #define UINT32_C(c) ((uint32_t)(c ## UL))
|
| /src/contrib/ntp/sntp/libopts/ |
| H A D | enum.c | 262 uintptr_t res = 0UL; in optionEnumerationVal() 417 res = 0UL; in check_membership_start() 449 return 0UL; in check_membership_start() 477 return 0UL; in find_member_bit() 584 else res = ~0UL; in optionSetMembers() 596 if (bit == 0UL) in optionSetMembers() 608 res ^= ~0UL; in optionSetMembers()
|
| /src/sys/dev/random/ |
| H A D | uint128.h | 50 static const uint128_t very_long_zero = {0UL,0UL}; 61 if (big_uintp->u128t_word0 == 0UL) in uint128_increment()
|
| /src/sys/ofed/include/uapi/rdma/ |
| H A D | ib_user_ioctl_verbs.h | 138 IB_UVERBS_FLOW_ACTION_ESP_FLAGS_INLINE_CRYPTO = 0UL << 0, /* Default */ 141 IB_UVERBS_FLOW_ACTION_ESP_FLAGS_TUNNEL = 0UL << 1, /* Default */ 144 IB_UVERBS_FLOW_ACTION_ESP_FLAGS_DECRYPT = 0UL << 2, /* Default */
|
| /src/tools/bus_space/C/ |
| H A D | lang.c | 213 return ((error) ? ~0UL : addr); in busdma_seg_get_addr() 223 return ((error) ? ~0UL : size); in busdma_seg_get_size() 230 return (bd_sync(md, op, 0UL, ~0UL)); in busdma_sync()
|
| /src/sys/dev/mana/ |
| H A D | gdma_util.h | 74 #define BITMAP_FIRST_WORD_MASK(start) (~0UL << ((start) % BITS_PER_LONG)) 75 #define BITMAP_LAST_WORD_MASK(n) (~0UL >> (BITS_PER_LONG - (n))) 127 mask_to_set = ~0UL; in bitmap_set() 150 mask_to_clear = ~0UL; in bitmap_clear()
|
| /src/usr.bin/indent/tests/ |
| H A D | binary.0 | 5 unsigned long ul[] = {0b00001111UL, 0x01010101UL, 02UL, 17UL};
|
| H A D | binary.0.stdout | 7 unsigned long ul[] = {0b00001111UL, 0x01010101UL, 02UL, 17UL};
|
| /src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_allocator_local_cache.h | 35 CHECK_NE(class_id, 0UL); in Allocate() 50 CHECK_NE(class_id, 0UL); in Deallocate() 96 DCHECK_NE(c->max_count, 0UL); in InitCache() 160 CHECK_NE(class_id, 0UL); in Allocate() 175 CHECK_NE(class_id, 0UL); in Deallocate() 238 DCHECK_NE(c->max_count, 0UL); in InitCache()
|
| /src/contrib/bmake/unit-tests/ |
| H A D | opt-debug-lint.mk | 74 .if ${value:${:UL}PL} != "" 75 . error ${value:${:UL}PL}
|
| /src/contrib/ntp/sntp/tests/ |
| H A D | packetHandling.c | 153 tmp.l_uf = 0UL; in test_OffsetCalculationPositiveOffset() 163 tmp.l_uf = 0UL; in test_OffsetCalculationPositiveOffset() 168 tmp.l_uf = 0UL; in test_OffsetCalculationPositiveOffset() 199 tmp.l_uf = 0UL; in test_OffsetCalculationNegativeOffset() 214 tmp.l_uf = 0UL; in test_OffsetCalculationNegativeOffset()
|
| /src/stand/kboot/kboot/arch/powerpc64/ |
| H A D | load_addr.c | 55 static uint64_t load_segment = ~(0UL); in kboot_get_phys_load_segment() 63 if (load_segment == ~(0UL)) { in kboot_get_phys_load_segment() 66 load_segment = 0UL; in kboot_get_phys_load_segment()
|
| /src/contrib/ofed/libmlx5/ |
| H A D | bitmap.h | 89 tmp = (*p) | (~0UL << size); in mlx5_find_first_zero_bit() 90 if (tmp == (uint32_t)~0UL) /* Are any bits zero? */ in mlx5_find_first_zero_bit()
|
| /src/sys/contrib/openzfs/config/ |
| H A D | kernel-declare-event-class.m4 | 14 trace_zfs_autoconf_event_one(1UL); 15 trace_zfs_autoconf_event_two(2UL);
|
| /src/contrib/ncurses/include/ |
| H A D | curses.tail | 16 #define NCURSES_BUTTON_RELEASED 001UL 17 #define NCURSES_BUTTON_PRESSED 002UL 18 #define NCURSES_BUTTON_CLICKED 004UL 19 #define NCURSES_DOUBLE_CLICKED 010UL 20 #define NCURSES_TRIPLE_CLICKED 020UL 21 #define NCURSES_RESERVED_EVENT 040UL
|
| /src/contrib/jemalloc/m4/ |
| H A D | ax_cxx_compile_stdcxx.m4 | 298 return strlen_c_r(s, 0UL); 301 static_assert(strlen_c("") == 0UL, ""); 302 static_assert(strlen_c("1") == 1UL, ""); 303 static_assert(strlen_c("example") == 7UL, ""); 304 static_assert(strlen_c("another\0example") == 7UL, ""); 476 return (sizeof(x) == 1UL) ? 1 : 0; 501 auto length = 0UL; 507 static_assert(strlen_c("") == 0UL, ""); 508 static_assert(strlen_c("x") == 1UL, ""); 509 static_assert(strlen_c("test") == 4UL, ""); [all …]
|
| /src/contrib/kyua/m4/ |
| H A D | ax_cxx_compile_stdcxx.m4 | 298 return strlen_c_r(s, 0UL); 301 static_assert(strlen_c("") == 0UL, ""); 302 static_assert(strlen_c("1") == 1UL, ""); 303 static_assert(strlen_c("example") == 7UL, ""); 304 static_assert(strlen_c("another\0example") == 7UL, ""); 476 return (sizeof(x) == 1UL) ? 1 : 0; 501 auto length = 0UL; 507 static_assert(strlen_c("") == 0UL, ""); 508 static_assert(strlen_c("x") == 1UL, ""); 509 static_assert(strlen_c("test") == 4UL, ""); [all …]
|
| /src/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64/ |
| H A D | hwcap.inc | 173 #define HWCAP2_WFXT (1UL << 31) 182 #define HWCAP2_SME2 (1UL << 37) 188 #define HWCAP2_LRCPC3 (1UL << 46)
|