HomeSort by: relevance | last modified time | path
    Searched refs:OldSize (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/compiler/
aslallocate.c 143 * OldSize - Old size of Buffer
155 UINT32 OldSize,
162 memset (*Buffer + OldSize, 0, NewSize - OldSize);
167 OldSize, NewSize);
aslcompiler.h 184 UINT32 OldSize,
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCorpus.h 219 uint32_t OldSize = GetFeature(Idx);
220 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
221 if (OldSize > 0) {
243 uint32_t OldSize = GetFeature(Idx % kFeatureSetSize);
244 return OldSize == 0 || (Shrink && OldSize > NewSize);
FuzzerMerge.cpp 164 size_t OldSize = AllFeatures.size();
166 if (AllFeatures.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/sys/external/bsd/gnu-efi/dist/lib/
misc.c 61 IN UINTN OldSize,
74 CopyMem (NewPool, OldPool, OldSize < NewSize ? OldSize : NewSize);
  /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/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/CodeGen/
MachineCombiner.cpp 93 bool doSubstitute(unsigned NewSize, unsigned OldSize, bool OptForSize);
445 bool MachineCombiner::doSubstitute(unsigned NewSize, unsigned OldSize,
447 if (OptForSize && (NewSize < OldSize))
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/llvm-objdump/
SourcePrinter.cpp 119 size_t OldSize = ActiveCols.size();
120 ActiveCols.grow(std::max<size_t>(OldSize * 2, 1));
121 return OldSize;
  /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/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/include/llvm/Analysis/
AliasSetTracker.h 81 LocationSize OldSize = Size;
83 SizeChanged = OldSize != Size;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceGraphBuilder.cpp 499 size_t OldSize = Graph.Nodes.size();
502 if (Graph.Nodes.size() != OldSize)
LazyCallGraph.cpp 857 int OldSize = OldSCC.size();
863 for (Node &N : drop_begin(OldSCC, OldSize)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BitVector.h 453 unsigned OldSize = Size;
465 set(OldSize);
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/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");
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Metadata.cpp 1185 auto OldSize = Attachments.size();
1188 return OldSize != Attachments.size();
  /src/sys/external/bsd/gnu-efi/dist/inc/
efilib.h 497 IN UINTN OldSize,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 3511 // redzones, and OldSize is number of allocated blocks with
3513 // OldSize * ElementSize.
3516 Value *OldSize =
3520 // PartialSize = OldSize % 32
3521 Value *PartialSize = IRB.CreateAnd(OldSize, AllocaRzMask);
3536 Value *NewSize = IRB.CreateAdd(OldSize, AdditionalChunkSize);
3547 IRB.CreateCall(AsanAllocaPoisonFunc, {NewAddress, OldSize});

Completed in 92 milliseconds

1 2