Searched refs:INT32_MIN (Results 51 - 68 of 68) sorted by relevance

123

/freebsd-current/contrib/bsnmp/lib/
H A Dasn1.c428 } else if (val > INT32_MAX || val < INT32_MIN) {
/freebsd-current/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_value.c1254 if (intv.i64 < INT32_MIN || intv.i64 > INT32_MAX)
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp234 if (option_arg.getAsInteger(0, offset) || offset == INT32_MIN) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp2826 if (imm == 0 && !add) imm = INT32_MIN;
4399 imm = INT32_MIN;
4411 Inst.addOperand(MCOperand::createImm(INT32_MIN));
4425 Inst.addOperand(MCOperand::createImm(INT32_MIN));
4489 imm = INT32_MIN;
4502 imm = INT32_MIN;
4505 if (imm != INT32_MIN)
4776 imm = INT32_MIN; // indicate -0
4780 if (imm != INT32_MIN)
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cc.c1302 if (baseval < INT32_MIN || baseval > INT32_MAX) {
1314 if (limitval < INT32_MIN || limitval > INT32_MAX) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp1080 if (dividend == INT32_MIN && divisor == -1)
1109 if (dividend == INT32_MIN && divisor == -1)
/freebsd-current/contrib/unbound/util/
H A Dconfiglexer.c66 #ifndef INT32_MIN
67 #define INT32_MIN (-2147483647-1) macro
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerLowering.cpp602 (Size == 32 && static_cast<int32_t>(C) == INT32_MIN))
/freebsd-current/contrib/llvm-project/lld/ELF/Arch/
H A DPPC64.cpp1729 if (stackFrameSize < config->splitStackAdjustSize + INT32_MIN) {
/freebsd-current/usr.sbin/ndp/
H A Dndp.c191 assert(tm->tm_gmtoff > INT32_MIN && tm->tm_gmtoff < INT32_MAX);
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_mtree.c186 return (time_t)INT32_MIN;
/freebsd-current/sys/kern/
H A Dsubr_stats.c299 [VSD_DTYPE_INT_S32] = {.int32 = {.s32 = INT32_MIN}},
305 [VSD_DTYPE_Q_S32] = {.q32 = {.sq32 = Q_IFMINVAL(INT32_MIN)}},
/freebsd-current/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1293 // For example, would -0xfffffffff mean 1 or INT32_MIN?
1298 const int64_t MinVal = Is64 ? INT64_MIN : INT32_MIN;
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp152 if (Result > INT32_MAX || Result < INT32_MIN)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp465 int64_t Limit = Int64 ? INT64_MIN : INT32_MIN;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp2652 ((int64_t)value > INT32_MAX || (int64_t)value < INT32_MIN))) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp1807 // Special case, #-0 is INT32_MIN.
1808 return (Val >= -508 && Val <= 508 && (Val & 3) == 0) || Val == INT32_MIN;
1853 // INT32_MIN is a special-case value (indicating the encoding with
1855 if (Val == INT32_MIN)
1915 return (Val == INT32_MIN) || (Val > -Range && Val < Range);
/freebsd-current/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5305 OPTIONAL(thisAdjustment, MDSignedField, (0, INT32_MIN, INT32_MAX)); \

Completed in 292 milliseconds

123