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

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.cpp 164 size_t OldSize = AllFeatures.size();
166 if (AllFeatures.size() > OldSize)
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_segmented_array.h 460 auto OldSize = Size;
504 auto PS = F(OldSize);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceGraphBuilder.cpp 499 size_t OldSize = Graph.Nodes.size();
502 if (Graph.Nodes.size() != OldSize)
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MSFBuilder.cpp 193 uint32_t OldSize = getStreamSize(Idx);
194 if (OldSize == Size)
198 uint32_t OldBlocks = bytesToBlocks(OldSize, BlockSize);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 256 int OldSize = Slices.size();
258 auto SliceI = Slices.begin() + OldSize;
3339 unsigned OldSize = Indices.size();
3340 (void)OldSize;
3343 assert(Indices.size() == OldSize && "Did not return to the old size");
3354 unsigned OldSize = Indices.size();
3355 (void)OldSize;
3358 assert(Indices.size() == OldSize && "Did not return to the old size");
RewriteStatepointsForGC.cpp 953 const size_t OldSize = States.size();
983 assert(OldSize == States.size() &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
AliasSetTracker.h 81 LocationSize OldSize = Size;
83 SizeChanged = OldSize != Size;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DenseMap.h 1092 unsigned OldSize = this->size();
1097 if (OldSize) {
1098 NewNumBuckets = 1 << (Log2_32_Ceil(OldSize) + 1);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterleavedLoadCombinePass.cpp 748 unsigned OldSize = DL.getTypeAllocSize(VTy->getElementType());
750 if (NewSize * Factor != OldSize)
StackColoring.cpp 1333 int OldSize = FirstS.size();
1335 auto Mid = FirstS.begin() + OldSize;
CodeGenPrepare.cpp 4514 unsigned OldSize = AddrModeInsts.size();
4529 AddrModeInsts.resize(OldSize);
4539 AddrModeInsts.resize(OldSize);
4638 unsigned OldSize = AddrModeInsts.size();
4650 AddrModeInsts.resize(OldSize);
4663 AddrModeInsts.resize(OldSize);
4673 AddrModeInsts.resize(OldSize);
4717 unsigned OldSize = AddrModeInsts.size();
4725 ExtCost + (AddrModeInsts.size() - OldSize),
4728 AddrModeInsts.resize(OldSize);
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
CrashDebugger.cpp 1077 unsigned OldSize = GVs.size();
1083 if (GVs.size() < OldSize)
1208 unsigned OldSize = Functions.size();
1214 if (Functions.size() < OldSize)
1228 unsigned OldSize = 0;
1238 OldSize += Attrs.size();
1247 if (OldSize < NewSize)
1259 unsigned OldSize = Blocks.size();
1267 if (Blocks.size() < OldSize)
1281 unsigned OldSize = Blocks.size()
    [all...]
Miscompilation.cpp 553 unsigned OldSize = Blocks.size();
568 if (Blocks.size() == OldSize)
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAssembler.cpp 1021 uint64_t OldSize = LF.getContents().size();
1034 encodeSLEB128(Value, OSE, OldSize);
1036 encodeULEB128(Value, OSE, OldSize);
1037 return OldSize != LF.getContents().size();
1104 uint64_t OldSize = DF.getContents().size();
1138 return OldSize != Data.size();
1144 uint64_t OldSize = DF.getContents().size();
1168 return OldSize != Data.size();
1173 unsigned OldSize = F.getContents().size();
1175 return OldSize != F.getContents().size()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
MicrosoftDemangle.cpp 2144 size_t OldSize = MangledName.size();
2153 size_t CharsConsumed = OldSize - MangledName.size();
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 877 const unsigned OldSize = RF.getContents().size();
878 if (OldSize == 15)
881 const unsigned MaxPossiblePad = std::min(15 - OldSize, RemainingSize);
934 const unsigned OldSize = RF.getContents().size();
936 assert(NewSize >= OldSize && "size decrease during relaxation?");
937 unsigned Delta = NewSize - OldSize;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.h 772 size_t OldSize = LifetimeExtendedCleanupStack.size();
779 char *Buffer = &LifetimeExtendedCleanupStack[OldSize];
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 735 unsigned OldSize = OldVT.getStoreSizeInBits();
741 if (OldSize >= 32 && NewSize < 32 && MN->getAlignment() >= 4 &&
756 return (OldSize < 32);

Completed in 67 milliseconds