/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/ |
H A D | MsgPackWriter.cpp | 74 if (u <= UINT16_MAX) { in write() 111 } else if (Size <= UINT16_MAX) { in write() 131 } else if (Size <= UINT16_MAX) { in write() 149 if (Size <= UINT16_MAX) { in writeArraySize() 165 if (Size <= UINT16_MAX) { in writeMapSize() 198 } else if (Size <= UINT16_MAX) { in writeExt()
|
/freebsd/sys/contrib/ck/include/ |
H A D | ck_limits.h | 33 #ifndef UINT16_MAX 34 #define UINT16_MAX USHRT_MAX macro
|
/freebsd/contrib/flex/src/ |
H A D | flexint.h | 55 #ifndef UINT16_MAX 56 #define UINT16_MAX (65535U) macro
|
/freebsd/usr.sbin/mpsutil/ |
H A D | mps_slot.c | 72 if (*endptr != '\0' || errno != 0 || x < 0 || x > UINT16_MAX) { in slot_set() 80 if (*endptr != '\0' || errno != 0 || x < 0 || x > UINT16_MAX) { in slot_set()
|
/freebsd/sys/arm/include/ |
H A D | _stdint.h | 73 #define UINT16_MAX 0xffff macro 95 #define UINT_LEAST16_MAX UINT16_MAX
|
/freebsd/sys/riscv/include/ |
H A D | _stdint.h | 71 #define UINT16_MAX 0xffff macro 93 #define UINT_LEAST16_MAX UINT16_MAX
|
/freebsd/sys/arm64/include/ |
H A D | _stdint.h | 75 #define UINT16_MAX 0xffff macro 97 #define UINT_LEAST16_MAX UINT16_MAX
|
/freebsd/sys/dev/nvdimm/ |
H A D | nvdimm_nfit.c | 146 offsetof(ACPI_NFIT_SYSTEM_ADDRESS, RangeIndex), UINT16_MAX, in acpi_nfit_get_spa_range() 165 offsetof(ACPI_NFIT_MEMORY_MAP, RangeIndex), UINT16_MAX, in acpi_nfit_get_region_mappings_by_spa_range() 175 offsetof(ACPI_NFIT_CONTROL_REGION, RegionIndex), UINT16_MAX, in acpi_nfit_get_control_region()
|
/freebsd/sys/x86/include/ |
H A D | _stdint.h | 81 #define UINT16_MAX 0xffff macro 112 #define UINT_LEAST16_MAX UINT16_MAX
|
/freebsd/sys/powerpc/include/ |
H A D | _stdint.h | 96 #define UINT16_MAX 0xffff macro 118 #define UINT_LEAST16_MAX UINT16_MAX
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LowerGlobalDtors.cpp | 109 uint16_t PriorityValue = Priority->getLimitedValue(UINT16_MAX); in runImpl() 179 (Priority != UINT16_MAX ? (Twine(".") + Twine(Priority)) in runImpl() 197 (Priority != UINT16_MAX ? (Twine(".") + Twine(Priority)) in runImpl()
|
/freebsd/contrib/netbsd-tests/lib/libbluetooth/ |
H A D | t_sdp_put.c | 293 ATF_REQUIRE(sdp_put_uint(&test, (uintmax_t)UINT16_MAX)); in ATF_TC_BODY() 294 ATF_REQUIRE(sdp_put_uint(&test, (uintmax_t)UINT16_MAX + 1)); in ATF_TC_BODY() 364 ATF_REQUIRE(sdp_put_uint16(&test, (uint16_t)UINT16_MAX)); in ATF_TC_BODY() 395 ATF_REQUIRE(sdp_put_uint32(&test, (uint32_t)UINT16_MAX)); in ATF_TC_BODY() 433 ATF_REQUIRE(sdp_put_uint64(&test, (uint64_t)UINT16_MAX)); in ATF_TC_BODY() 712 ATF_CHECK_EQ(sdp_put_seq(&test, (ssize_t)UINT16_MAX), false); /* no room */ in ATF_TC_BODY() 746 ATF_CHECK_EQ(sdp_put_alt(&test, (ssize_t)UINT16_MAX), false); /* no room */ in ATF_TC_BODY()
|
H A D | t_sdp_set.c | 111 ATF_CHECK_EQ(sdp_set_uint(&test, UINT16_MAX + 1), false); /* too big */ in ATF_TC_BODY() 256 ATF_CHECK_EQ(sdp_set_seq(&test, UINT16_MAX), false); /* size too big */ in ATF_TC_BODY() 315 ATF_CHECK_EQ(sdp_set_alt(&test, UINT16_MAX), false); /* size too big */ in ATF_TC_BODY()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCInstrItineraries.h | 131 return ((Itineraries[ItinClassIndx].FirstStage == UINT16_MAX) && in isEndMarker() 132 (Itineraries[ItinClassIndx].LastStage == UINT16_MAX)); in isEndMarker()
|
/freebsd/usr.sbin/bhyve/ |
H A D | bhyverun.c | 198 guest_ncpus = parse_int_value("cpus", value, 1, UINT16_MAX); in calc_topology() 206 cpu_cores = parse_int_value("cores", value, 1, UINT16_MAX); in calc_topology() 211 cpu_threads = parse_int_value("threads", value, 1, UINT16_MAX); in calc_topology() 216 cpu_sockets = parse_int_value("sockets", value, 1, UINT16_MAX); in calc_topology() 225 if (ncpus > UINT16_MAX) in calc_topology()
|
/freebsd/share/examples/ses/srcs/ |
H A D | getencstat.c | 152 objd.elm_desc_len = UINT16_MAX; in main() 153 objd.elm_desc_str = calloc(UINT16_MAX, sizeof(char)); in main()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | DbiStreamBuilder.cpp | 197 uint16_t ModiCount = std::min<uint32_t>(UINT16_MAX, ModiList.size()); in generateFileInfoSubstream() 198 uint16_t FileCount = std::min<uint32_t>(UINT16_MAX, SourceFileNames.size()); in generateFileInfoSubstream() 363 Entry.SecName = UINT16_MAX; in createSectionMap() 364 Entry.ClassName = UINT16_MAX; in createSectionMap()
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | limits.h | 37 #define U16_MAX UINT16_MAX
|
/freebsd/contrib/netbsd-tests/include/ |
H A D | t_stdint.c | 47 ATF_CHECK(INT16_MIN < UINT16_MAX); in ATF_TC_BODY()
|
/freebsd/tests/sys/netinet/ |
H A D | ip_reass_test.c | 206 ipid = arc4random_uniform(UINT16_MAX + 1); in ATF_TC_BODY() 286 ipid = arc4random_uniform(UINT16_MAX + 1); in ATF_TC_BODY() 336 ipid = arc4random_uniform(UINT16_MAX + 1); in ATF_TC_BODY()
|
/freebsd/tests/sys/kern/ |
H A D | coredump_phnum_helper.c | 47 pages = UINT16_MAX + 1000; in main()
|
/freebsd/sbin/ifconfig/ |
H A D | ifvxlan.c | 406 if (get_val(arg, &val) < 0 || val >= UINT16_MAX) in setvxlan_local_port() 428 if (get_val(arg, &val) < 0 || val >= UINT16_MAX) in setvxlan_remote_port() 450 if (get_val(arg1, &min) < 0 || min >= UINT16_MAX) in setvxlan_port_range() 452 if (get_val(arg2, &max) < 0 || max >= UINT16_MAX) in setvxlan_port_range()
|
/freebsd/sys/dev/ixgbe/ |
H A D | ixgbe_sriov.h | 63 #define IXGBE_API_VER_UNKNOWN UINT16_MAX
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | dtrace.h | 520 #define DTRACE_LQUANTIZE_STEPMASK ((uint64_t)UINT16_MAX << 48) 522 #define DTRACE_LQUANTIZE_LEVELMASK ((uint64_t)UINT16_MAX << 32) 539 #define DTRACE_LLQUANTIZE_FACTORMASK ((uint64_t)UINT16_MAX << 48) 541 #define DTRACE_LLQUANTIZE_LOWMASK ((uint64_t)UINT16_MAX << 32) 543 #define DTRACE_LLQUANTIZE_HIGHMASK ((uint64_t)UINT16_MAX << 16) 545 #define DTRACE_LLQUANTIZE_NSTEPMASK UINT16_MAX
|
/freebsd/contrib/mandoc/ |
H A D | term_ascii.c | 136 assert(p->defindent < UINT16_MAX); in ascii_init() 137 assert(p->defrmargin < UINT16_MAX); in ascii_init()
|