Home
last modified time | relevance | path

Searched refs:UINT64_MAX (Results 1 – 25 of 133) sorted by relevance

123456

/f-stack/freebsd/x86/include/
H A D_stdint.h91 #define UINT64_MAX 0xffffffffffffffff macro
95 #define UINT64_MAX 0xffffffffffffffffULL macro
118 #define UINT_LEAST64_MAX UINT64_MAX
140 #define UINT_FAST64_MAX UINT64_MAX
149 #define UINTPTR_MAX UINT64_MAX
162 #define UINTMAX_MAX UINT64_MAX
178 #define SIZE_MAX UINT64_MAX
/f-stack/freebsd/arm64/include/
H A D_stdint.h75 #define UINT64_MAX 0xffffffffffffffffUL macro
97 #define UINT_LEAST64_MAX UINT64_MAX
119 #define UINT_FAST64_MAX UINT64_MAX
127 #define UINTPTR_MAX UINT64_MAX
135 #define UINTMAX_MAX UINT64_MAX
150 #define SIZE_MAX UINT64_MAX
/f-stack/dpdk/drivers/net/bnxt/
H A Dbnxt_filter.c57 filter->fw_l2_filter_id = UINT64_MAX; in bnxt_alloc_vf_filter()
71 filter->fw_l2_filter_id = UINT64_MAX; in bnxt_init_filters()
72 filter->fw_em_filter_id = UINT64_MAX; in bnxt_init_filters()
73 filter->fw_ntuple_filter_id = UINT64_MAX; in bnxt_init_filters()
131 filter->fw_ntuple_filter_id = UINT64_MAX; in bnxt_free_filter_mem()
143 filter->fw_l2_filter_id = UINT64_MAX; in bnxt_free_filter_mem()
199 filter->fw_l2_filter_id = UINT64_MAX; in bnxt_free_filter()
200 filter->fw_ntuple_filter_id = UINT64_MAX; in bnxt_free_filter()
201 filter->fw_em_filter_id = UINT64_MAX; in bnxt_free_filter()
/f-stack/freebsd/mips/include/
H A D_stdint.h101 #define UINT64_MAX __UINT64_C(0xffffffffffffffff) macro
123 #define UINT_LEAST64_MAX UINT64_MAX
145 #define UINT_FAST64_MAX UINT64_MAX
154 #define UINTPTR_MAX UINT64_MAX
167 #define UINTMAX_MAX UINT64_MAX
179 #define SIZE_MAX UINT64_MAX
/f-stack/dpdk/app/test/
H A Dtest_cmdline_num.c43 {"18446744073709551615", UINT64_MAX },
60 {"0xFFFFFFFFFFFFFFFF", UINT64_MAX },
77 {"0xFFFFFFFFFFFFFFFF", UINT64_MAX },
100 UINT64_MAX },
127 {"01777777777777777777777", UINT64_MAX },
168 {"01777777777777777777777\0garbage", UINT64_MAX },
169 {"01777777777777777777777\rgarbage", UINT64_MAX },
170 {"01777777777777777777777\tgarbage", UINT64_MAX },
171 {"01777777777777777777777\ngarbage", UINT64_MAX },
172 {"01777777777777777777777#garbage", UINT64_MAX },
[all …]
/f-stack/freebsd/arm/include/
H A D_stdint.h77 #define UINT64_MAX 0xffffffffffffffffULL macro
99 #define UINT_LEAST64_MAX UINT64_MAX
121 #define UINT_FAST64_MAX UINT64_MAX
137 #define UINTMAX_MAX UINT64_MAX
/f-stack/app/redis-5.0.5/deps/jemalloc/include/msvc_compat/C99/
H A Dstdint.h143 #define UINT64_MAX _UI64_MAX macro
157 #define UINT_LEAST64_MAX UINT64_MAX
171 #define UINT_FAST64_MAX UINT64_MAX
177 # define UINTPTR_MAX UINT64_MAX
187 #define UINTMAX_MAX UINT64_MAX
/f-stack/freebsd/contrib/ck/include/
H A Dck_limits.h39 #ifndef UINT64_MAX
40 #define UINT64_MAX ULLONG_MAX macro
/f-stack/freebsd/kern/
H A Dsys_eventfd.c203 if (count == UINT64_MAX) in eventfd_write()
209 if (UINT64_MAX - efd->efd_count <= count) { in eventfd_write()
222 MPASS(UINT64_MAX - efd->efd_count > count); in eventfd_write()
245 if ((events & (POLLOUT | POLLWRNORM)) != 0 && UINT64_MAX - 1 > in eventfd_poll()
310 kn->kn_data = (int64_t)(UINT64_MAX - 1 - efd->efd_count); in filt_eventfdwrite()
311 ret = UINT64_MAX - 1 > efd->efd_count; in filt_eventfdwrite()
/f-stack/freebsd/sys/
H A Dstdint.h61 #if defined(UINTPTR_MAX) && defined(UINT64_MAX) && (UINTPTR_MAX == UINT64_MAX)
H A Dracct.h250 return (UINT64_MAX); in racct_get_limit()
257 return (UINT64_MAX); in racct_get_available()
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dmisuse.c113 assert(crypto_aead_xchacha20poly1305_ietf_encrypt(NULL, NULL, NULL, UINT64_MAX, in sigabrt_handler_5()
123 assert(crypto_aead_chacha20poly1305_ietf_encrypt(NULL, NULL, NULL, UINT64_MAX, in sigabrt_handler_4()
133 assert(crypto_aead_chacha20poly1305_encrypt(NULL, NULL, NULL, UINT64_MAX, in sigabrt_handler_3()
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dnstime.c53 assert(UINT64_MAX - time->ns >= addend->ns); in nstime_add()
60 assert(UINT64_MAX - time->ns >= addend); in nstime_iadd()
81 assert((((time->ns | multiplier) & (UINT64_MAX << (sizeof(uint64_t) << in nstime_imultiply()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
H A Dgenerichash_blake2b.c16 keylen > BLAKE2B_KEYBYTES || inlen > UINT64_MAX) { in crypto_generichash_blake2b()
33 keylen > BLAKE2B_KEYBYTES || inlen > UINT64_MAX) { in crypto_generichash_blake2b_salt_personal()
/f-stack/app/redis-5.0.5/src/
H A Dlistpack.c177 if (v > (UINT64_MAX / 10)) /* Overflow. */ in lpStringToInt64()
181 if (v > (UINT64_MAX - (p[0]-'0'))) /* Overflow. */ in lpStringToInt64()
343 if (shift > 28) return UINT64_MAX; in lpDecodeBacklen()
496 negstart = UINT64_MAX; /* 7 bit ints are always positive. */ in lpGet()
534 negmax = UINT64_MAX; in lpGet()
543 negstart = UINT64_MAX; in lpGet()
/f-stack/freebsd/contrib/openzfs/module/zcommon/
H A Dzfs_comutil.c108 zlpp->zlp_maxdata = UINT64_MAX; in zpool_get_load_policy()
109 zlpp->zlp_txg = UINT64_MAX; in zpool_get_load_policy()
H A Dzfs_prop.c632 UINT64_MAX, PROP_READONLY, ZFS_TYPE_FILESYSTEM, in zfs_prop_init()
635 UINT64_MAX, PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, in zfs_prop_init()
661 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, in zfs_prop_init()
664 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, in zfs_prop_init()
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dbackground_thread_structs.h10 #define BACKGROUND_THREAD_INDEFINITE_SLEEP UINT64_MAX
/f-stack/tools/libutil/
H A Dexpand_number.c52 if (umaxval > UINT64_MAX) in expand_number()
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddmu_redact.c155 curbuild->end_blkid != UINT64_MAX) || in record_merge_enqueue()
157 curbuild->end_blkid == UINT64_MAX && new->start_blkid == 0)) { in record_merge_enqueue()
293 record->end_blkid = UINT64_MAX; in redact_cb()
337 record->end_blkid = UINT64_MAX; in redact_cb()
744 record->end_object = record->end_blkid = UINT64_MAX; in perform_thread_merge()
973 commit_rl_updates(os, &md, UINT64_MAX, UINT64_MAX); in perform_redaction()
1112 if (new_rl->rl_phys->rlp_last_blkid == UINT64_MAX && in dmu_redact_snap()
1113 new_rl->rl_phys->rlp_last_object == UINT64_MAX) { in dmu_redact_snap()
H A Dvdev_trim.c215 if (last_offset > 0 || vd->vdev_trim_last_offset == UINT64_MAX) { in vdev_trim_zap_update_sync()
217 if (vd->vdev_trim_last_offset == UINT64_MAX) in vdev_trim_zap_update_sync()
236 if (rate == UINT64_MAX) in vdev_trim_zap_update_sync()
244 if (partial == UINT64_MAX) in vdev_trim_zap_update_sync()
251 if (secure == UINT64_MAX) in vdev_trim_zap_update_sync()
299 vd->vdev_trim_last_offset = UINT64_MAX; in vdev_trim_change_state()
300 vd->vdev_trim_rate = UINT64_MAX; in vdev_trim_change_state()
301 vd->vdev_trim_partial = UINT64_MAX; in vdev_trim_change_state()
302 vd->vdev_trim_secure = UINT64_MAX; in vdev_trim_change_state()
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/
H A Dexport.h55 #define SODIUM_SIZE_MAX SODIUM_MIN(UINT64_MAX, SIZE_MAX)
/f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/
H A Dctr.c202 upper_mask = (count == 64) ? UINT64_MAX : (1ULL << count) - 1; in ctr_init_ctx()
203 lower_mask = UINT64_MAX; in ctr_init_ctx()
/f-stack/dpdk/lib/librte_rib/
H A Drte_rib.h64 return (uint32_t)(UINT64_MAX << (32 - depth)); in rte_rib_depth_to_mask()
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc_ef10.h52 const efsys_uint128_t val = _mm_set1_epi64x(UINT64_MAX);

123456