reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/PDB/Native/HashTable.h
  311     uint32_t NewCapacity = (capacity() <= INT32_MAX) ? MaxLoad * 2 : UINT32_MAX;
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  288             ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN)));
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
  176       assert(static_cast<int64_t>(Result) <= INT32_MAX &&
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
  266       assert(static_cast<int64_t>(RE.Addend) <= INT32_MAX &&
  281       assert(static_cast<int64_t>(RE.Addend) <= INT32_MAX &&
  296       assert(static_cast<int64_t>(RE.Addend) <= INT32_MAX &&
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
  104       assert(((int64_t)Result <= INT32_MAX) && "Relocation overflow");
  131       assert(static_cast<int64_t>(RE.Addend) <= INT32_MAX && "Relocation overflow");
lib/MC/WinCOFFObjectWriter.cpp
  956   if (Sections.size() > INT32_MAX)
lib/Object/WasmObjectFile.cpp
  142   if (Result > INT32_MAX || Result < INT32_MIN)
lib/Support/FileCheck.cpp
 1006     if (Count <= 0 || Count > INT32_MAX)
lib/Support/YAMLTraits.cpp
  993   if ((N > INT32_MAX) || (N < INT32_MIN))
lib/Support/raw_ostream.cpp
  702   size_t MaxWriteSize = INT32_MAX;
lib/Target/AArch64/AArch64ISelLowering.cpp
 2004         if ((VT == MVT::i32 && C != INT32_MAX &&
lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
  132     return Reg & INT32_MAX;
lib/Target/X86/X86MCInstLower.cpp
 1900     assert(Disp >= 0 && Disp <= INT32_MAX - 2 && "Unexpected displacement");
 1931     assert(Disp >= 0 && Disp <= INT32_MAX - 2 && "Unexpected displacement");
lib/Target/X86/X86WinAllocaExpander.cpp
  139     OutOffset[&MBB] = INT32_MAX;
  152     if (Offset == -1) Offset = INT32_MAX;
  183         Offset = INT32_MAX;
projects/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
  125   if (Opts.SampleRate > INT32_MAX) {
tools/lldb/source/Host/common/StringConvert.cpp
   23         *success_ptr = ((sval <= INT32_MAX) && (sval >= INT32_MIN));
tools/lldb/source/Interpreter/OptionValueArray.cpp
  210             StringConvert::ToSInt32(args.GetArgumentAtIndex(i), INT32_MAX);
tools/lldb/source/Interpreter/OptionValueFileSpecList.cpp
  133             StringConvert::ToSInt32(args.GetArgumentAtIndex(i), INT32_MAX);
  134         if (idx == INT32_MAX)
tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
  168             StringConvert::ToSInt32(args.GetArgumentAtIndex(i), INT32_MAX);
  169         if (idx == INT32_MAX)
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 2610                ((int64_t)value > INT32_MAX && (int64_t)value < INT32_MIN)) ||
 2612                ((int64_t)value > INT32_MAX && (int64_t)value < INT32_MIN))) {
tools/lldb/source/Symbol/ClangASTContext.cpp
 6818                 bit_offset = INT32_MAX;
 6835                   if (bit_offset == INT32_MAX)
tools/polly/lib/External/isl/isl_int_sioimath.h
  882 	if (isl_sioimath_is_small(lhs) && (rhs <= (unsigned long) INT32_MAX)) {
  939 	if (isl_sioimath_decode_small(lhs, &lhssmall) && (rhs <= INT32_MAX)) {
  993 	if (isl_sioimath_decode_small(lhs, &lhssmall) && (rhs <= INT32_MAX)) {
unittests/BinaryFormat/MsgPackReaderTest.cpp
  156   EXPECT_EQ(Obj.Int, INT32_MAX);
unittests/Support/NativeFormatTests.cpp
  121   EXPECT_EQ("2147483647", format_number(INT32_MAX, IntegerStyle::Integer));