Searched refs:UINT8_MAX (Results 1 - 25 of 117) sorted by relevance

12345

/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dbin_types.h10 #define TSD_BINSHARDS_ZERO_INITIALIZER {{UINT8_MAX}}
/freebsd-current/sys/contrib/ck/include/
H A Dck_limits.h30 #ifndef UINT8_MAX
31 #define UINT8_MAX ((u8)(~0U)) macro
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
H A Dgenerichash_blake2b.c19 assert(outlen <= UINT8_MAX);
20 assert(keylen <= UINT8_MAX);
36 assert(outlen <= UINT8_MAX);
37 assert(keylen <= UINT8_MAX);
53 assert(outlen <= UINT8_MAX);
54 assert(keylen <= UINT8_MAX);
76 assert(outlen <= UINT8_MAX);
77 assert(keylen <= UINT8_MAX);
103 assert(outlen <= UINT8_MAX);
/freebsd-current/contrib/flex/src/
H A Dflexint.h52 #ifndef UINT8_MAX
53 #define UINT8_MAX (255U) macro
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dlimits.h34 #define U8_MAX UINT8_MAX
/freebsd-current/sys/sys/
H A Ddisk.h153 #define KDA_REMOVE UINT8_MAX
154 #define KDA_REMOVE_ALL (UINT8_MAX - 1)
155 #define KDA_REMOVE_DEV (UINT8_MAX - 2)
156 #define KDA_APPEND (UINT8_MAX - 3)
/freebsd-current/contrib/netbsd-tests/include/
H A Dt_stdint.c41 ATF_CHECK(INT8_MIN < UINT8_MAX);
/freebsd-current/sys/compat/linux/
H A Dlinux_common.h43 #define AF_UNKNOWN UINT8_MAX
/freebsd-current/sys/arm/include/
H A D_stdint.h72 #define UINT8_MAX 0xff macro
94 #define UINT_LEAST8_MAX UINT8_MAX
/freebsd-current/sys/arm64/include/
H A D_stdint.h74 #define UINT8_MAX 0xff macro
96 #define UINT_LEAST8_MAX UINT8_MAX
/freebsd-current/sys/riscv/include/
H A D_stdint.h70 #define UINT8_MAX 0xff macro
92 #define UINT_LEAST8_MAX UINT8_MAX
/freebsd-current/contrib/libdivsufsort/include/
H A Ddivsufsort_private.h86 #if !defined(UINT8_MAX)
87 # define UINT8_MAX (255) macro
88 #endif /* UINT8_MAX */
93 # define ALPHABET_SIZE (UINT8_MAX + 1)
/freebsd-current/sys/powerpc/include/
H A D_stdint.h95 #define UINT8_MAX 0xff macro
117 #define UINT_LEAST8_MAX UINT8_MAX
/freebsd-current/sys/x86/include/
H A D_stdint.h80 #define UINT8_MAX 0xff macro
111 #define UINT_LEAST8_MAX UINT8_MAX
/freebsd-current/sys/dev/ftwd/
H A Dftwd.c63 if (timeout <= UINT8_MAX) {
66 } else if ((timeout / 60) <= UINT8_MAX) {
/freebsd-current/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackWriter.cpp68 if (u <= UINT8_MAX) {
108 else if (!Compatible && Size <= UINT8_MAX) {
128 if (Size <= UINT8_MAX) {
195 if (Size <= UINT8_MAX) {
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dddt.h56 _Static_assert(DDT_TYPES <= UINT8_MAX,
78 _Static_assert(DDT_CLASSES < UINT8_MAX,
/freebsd-current/contrib/libcbor/src/cbor/internal/
H A Dencoders.c90 if (value <= UINT8_MAX)
/freebsd-current/crypto/openssl/include/internal/
H A Dnumbers.h43 # define UINT8_MAX __MAXUINT__(uint8_t) macro
/freebsd-current/sys/netpfil/pf/
H A Dpf_nv.h67 PF_NV_DEF_UINT(uint8, uint8_t, UINT8_MAX);
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/
H A DPackedVersion.cpp47 if (Num > UINT8_MAX)
/freebsd-current/usr.sbin/bluetooth/btpand/
H A Dserver.c79 server_avail = UINT8_MAX - (count - 1) * UINT8_MAX / server_limit;
80 log_info("Service Availability: %d/%d", server_avail, UINT8_MAX);
/freebsd-current/contrib/netbsd-tests/lib/libbluetooth/
H A Dt_sdp_put.c291 ATF_REQUIRE(sdp_put_uint(&test, (uintmax_t)UINT8_MAX));
292 ATF_REQUIRE(sdp_put_uint(&test, (uintmax_t)UINT8_MAX + 1));
336 ATF_REQUIRE(sdp_put_uint8(&test, (uint8_t)UINT8_MAX));
363 ATF_REQUIRE(sdp_put_uint16(&test, (uint16_t)UINT8_MAX));
394 ATF_REQUIRE(sdp_put_uint32(&test, (uint32_t)UINT8_MAX));
432 ATF_REQUIRE(sdp_put_uint64(&test, (uint64_t)UINT8_MAX));
709 ATF_REQUIRE(sdp_put_seq(&test, (ssize_t)UINT8_MAX));
710 ATF_REQUIRE(sdp_put_seq(&test, (ssize_t)UINT8_MAX + 1));
743 ATF_REQUIRE(sdp_put_alt(&test, (ssize_t)UINT8_MAX));
744 ATF_REQUIRE(sdp_put_alt(&test, (ssize_t)UINT8_MAX
[all...]
H A Dt_sdp_set.c102 ATF_CHECK_EQ(sdp_set_uint(&test, UINT8_MAX + 1), false); /* too big */
255 ATF_CHECK_EQ(sdp_set_seq(&test, UINT8_MAX), false); /* data too big */
314 ATF_CHECK_EQ(sdp_set_alt(&test, UINT8_MAX), false); /* data too big */
/freebsd-current/sys/dev/itwd/
H A Ditwd.c87 if (timeout <= UINT8_MAX) {

Completed in 382 milliseconds

12345