HomeSort by: relevance | last modified time | path
    Searched defs:MaxSize (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/test/profile/
instrprof-without-libc.c 25 const uint64_t MaxSize = 10000;
26 static char Buffer[MaxSize];
29 if (Size > MaxSize)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SmallVector.cpp 51 static void report_size_overflow(size_t MinSize, size_t MaxSize);
52 static void report_size_overflow(size_t MinSize, size_t MaxSize) {
56 std::to_string(MaxSize) + ")";
66 LLVM_ATTRIBUTE_NORETURN static void report_at_maximum_capacity(size_t MaxSize);
67 static void report_at_maximum_capacity(size_t MaxSize) {
70 std::to_string(MaxSize);
81 constexpr size_t MaxSize = std::numeric_limits<Size_T>::max();
85 if (MinSize > MaxSize)
86 report_size_overflow(MinSize, MaxSize);
92 if (OldCapacity == MaxSize)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCBranchFinalize.cpp 148 unsigned MaxSize = 0;
161 MaxSize += Size;
172 isInt<9>(MaxSize) ? replaceWithBRcc(P.first) : replaceWithCmpBcc(P.first);
176 << MaxSize << "\n");
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h 113 int MaxSize = 100;
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
SetTheory.cpp 163 unsigned MaxSize = 0;
166 MaxSize = std::max(MaxSize, unsigned(Args[i].size()));
169 for (unsigned n = 0; n != MaxSize; ++n)
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_profile_collector.cc 250 auto MaxSize = profilingFlags()->global_allocator_max;
251 auto ProfileArena = allocateBuffer(MaxSize);
256 [&]() XRAY_NEVER_INSTRUMENT { deallocateBuffer(ProfileArena, MaxSize); });
263 [&]() XRAY_NEVER_INSTRUMENT { deallocateBuffer(PathArena, MaxSize); });
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenInsert.cpp 384 const unsigned MaxSize;
388 : MaxSize(MaxORLSize), Ord(RO) {}
451 if (S > MaxSize)
452 Seq.resize(MaxSize);
453 assert(Seq.size() <= MaxSize);
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
macho2yaml.cpp 227 auto MaxSize = LoadCmd.C.cmdsize - sizeof(StructType);
228 auto Size = strnlen(Start, MaxSize);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerLoop.cpp 414 void Fuzzer::RereadOutputCorpus(size_t MaxSize) {
419 &EpochOfLastReadOfOutputCorpus, MaxSize,
425 if (U.size() > MaxSize)
426 U.resize(MaxSize);
740 size_t MaxSize = 0;
751 MaxSize = Max(File.Size, MaxSize);
756 SetMaxInputLen(std::min(std::max(kMinDefaultLen, MaxSize), kMaxSaneLen));
770 SizedFiles.size(), MinSize, MaxSize, TotalSize, GetPeakRSSMb());
894 LLVMFuzzerMutate(uint8_t *Data, size_t Size, size_t MaxSize) {
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 114 size_t MaxSize);
401 // insert on an input of size `MaxSize`. Performing an insert in this case
408 size_t MaxSize = sizeof(Data);
410 size_t NewSize = MD->Mutate_CopyPart(Data, MaxSize, MaxSize);
411 ASSERT_EQ(NewSize, MaxSize);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64CallLowering.cpp 290 unsigned MaxSize = MemSize * 8;
294 MaxSize = 0;
306 ValVReg = extendRegister(ValVReg, VA, MaxSize);
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp 46 const uint64_t MaxSize;
53 if (!ReachedLimitErr && getOffset() + Size <= MaxSize)
63 : InitialOffset(BaseOffset), MaxSize(SizeLimit), OS(Buf) {}
313 yaml::ErrorHandler EH, uint64_t MaxSize);
1877 yaml::ErrorHandler EH, uint64_t MaxSize) {
1904 ContiguousBlobAccumulator CBA(SectionContentBeginOffset, MaxSize);
1912 bool ReachedLimit = CBA.getOffset() > MaxSize;
1943 uint64_t MaxSize) {
1948 return ELFState<object::ELF64LE>::writeELF(Out, Doc, EH, MaxSize);
1949 return ELFState<object::ELF64BE>::writeELF(Out, Doc, EH, MaxSize);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Attributes.cpp 1362 unsigned MaxSize = 0;
1364 MaxSize = std::max(MaxSize, List.getNumAttrSets());
1367 if (MaxSize == 0)
1370 SmallVector<AttributeSet, 8> NewAttrSets(MaxSize);
1371 for (unsigned I = 0; I < MaxSize; ++I) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 133 // is not performed. MaxSize is turned into unswitching quota for
136 // processed, so that MaxSize will return to its previous
137 // value. So in most cases MaxSize will equal the Threshold flag
139 // MaxSize will have a smaller value while processing nested loops
142 // FIXME: The way that MaxSize works is subtle and depends on the
145 // way of doing what MaxSize does.
146 unsigned MaxSize;
149 LUAnalysisCache() : MaxSize(Threshold) {}
317 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
319 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 4203 size_t MaxSize = this->Obj.getBufSize() - Phdr.p_offset;
4204 size_t Len = strnlen(Data, MaxSize);
4205 if (Len == MaxSize) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 5417 const unsigned MaxSize = 4;
5437 if (I + 1 == MaxSize) {

Completed in 104 milliseconds