Searched refs:OldSize (Results 1 - 25 of 29) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DAddrModeMatcher.cpp182 unsigned OldSize = AddrModeInsts.size(); local
189 AddrModeInsts.resize(OldSize);
198 AddrModeInsts.resize(OldSize);
261 unsigned OldSize = AddrModeInsts.size(); local
271 AddrModeInsts.resize(OldSize);
284 AddrModeInsts.resize(OldSize);
294 AddrModeInsts.resize(OldSize);
327 unsigned OldSize = AddrModeInsts.size(); local
343 AddrModeInsts.resize(OldSize);
/external/swiftshader/third_party/LLVM/lib/Support/
H A DSmallPtrSet.cpp134 unsigned OldSize = CurArraySize;
159 for (const void **BucketPtr = OldBuckets, **E = OldBuckets+OldSize;
/external/llvm/lib/MC/
H A DMCAssembler.cpp788 uint64_t OldSize = LF.getContents().size(); local
800 return OldSize != LF.getContents().size();
806 uint64_t OldSize = DF.getContents().size(); local
818 return OldSize != Data.size();
824 uint64_t OldSize = DF.getContents().size(); local
833 return OldSize != Data.size();
838 unsigned OldSize = F.getContents().size(); local
840 return OldSize != F.getContents().size();
845 unsigned OldSize = F.getContents().size(); local
847 return OldSize !
[all...]
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DCrashDebugger.cpp479 unsigned OldSize = GVs.size(); local
484 if (GVs.size() < OldSize)
502 unsigned OldSize = Functions.size(); local
505 if (Functions.size() < OldSize)
520 unsigned OldSize = Blocks.size(); local
522 if (Blocks.size() < OldSize)
H A DMiscompilation.cpp535 unsigned OldSize = Blocks.size(); local
549 if (Blocks.size() == OldSize)
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dmisc.c59 IN UINTN OldSize,
72 CopyMem (NewPool, OldPool, OldSize < NewSize ? OldSize : NewSize);
57 ReallocatePool( IN VOID *OldPool, IN UINTN OldSize, IN UINTN NewSize ) argument
/external/llvm/lib/CodeGen/
H A DMachineCombiner.cpp62 bool doSubstitute(unsigned NewSize, unsigned OldSize);
340 bool MachineCombiner::doSubstitute(unsigned NewSize, unsigned OldSize) { argument
341 if (OptSize && (NewSize < OldSize))
H A DCodeGenPrepare.cpp3188 unsigned OldSize = AddrModeInsts.size(); local
3202 AddrModeInsts.resize(OldSize);
3212 AddrModeInsts.resize(OldSize);
3277 unsigned OldSize = AddrModeInsts.size(); local
3287 AddrModeInsts.resize(OldSize);
3300 AddrModeInsts.resize(OldSize);
3310 AddrModeInsts.resize(OldSize);
3354 unsigned OldSize = AddrModeInsts.size(); local
3362 ExtCost + (AddrModeInsts.size() - OldSize),
3365 AddrModeInsts.resize(OldSize);
3402 unsigned OldSize = AddrModeInsts.size(); local
[all...]
/external/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp488 uptr OldSize = OldHeader.RequestedSize; local
489 memcpy(NewPtr, OldPtr, Min(NewSize, OldSize));
494 QuarantineCallback(&Cache), Chunk, OldSize);
499 Chunk, OldSize);
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DBitVector.h212 unsigned OldSize = Size; local
214 if (t || N < OldSize)
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp694 unsigned OldSize = GVs.size(); local
698 if (GVs.size() < OldSize)
806 unsigned OldSize = Functions.size(); local
809 if (Functions.size() < OldSize)
823 unsigned OldSize = Blocks.size(); local
825 if (Blocks.size() < OldSize)
H A DMiscompilation.cpp544 unsigned OldSize = Blocks.size(); local
558 if (Blocks.size() == OldSize)
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAssembler.cpp720 uint64_t OldSize = LF.getContents().size(); local
732 return OldSize != LF.getContents().size();
738 uint64_t OldSize = DF.getContents().size(); local
749 return OldSize != Data.size();
755 uint64_t OldSize = DF.getContents().size(); local
764 return OldSize != Data.size();
/external/llvm/lib/Fuzzer/
H A DFuzzerLoop.cpp549 size_t OldSize = Res.size(); local
567 assert(NewSize <= OldSize);
570 if (NewSize + 5 >= OldSize)
572 OldSize = NewSize;
/external/llvm/include/llvm/ADT/
H A DBitVector.h207 unsigned OldSize = Size; local
209 if (t || N < OldSize)
H A DDenseMap.h946 unsigned OldSize = this->size(); local
951 if (OldSize) {
952 NewNumBuckets = 1 << (Log2_32_Ceil(OldSize) + 1);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DBitVector.h207 unsigned OldSize = Size; local
209 if (t || N < OldSize)
H A DDenseMap.h946 unsigned OldSize = this->size(); local
951 if (OldSize) {
952 NewNumBuckets = 1 << (Log2_32_Ceil(OldSize) + 1);
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp229 int OldSize = Slices.size(); local
231 auto SliceI = Slices.begin() + OldSize;
3036 unsigned OldSize = Indices.size();
3037 (void)OldSize;
3040 assert(Indices.size() == OldSize && "Did not return to the old size");
3051 unsigned OldSize = Indices.size();
3052 (void)OldSize;
3055 assert(Indices.size() == OldSize && "Did not return to the old size");
/external/swiftshader/third_party/subzero/src/
H A DIceBitVector.h436 unsigned OldSize = Size;
438 if (t || N < OldSize)
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2305 // redzones, and OldSize is number of allocated blocks with
2307 // OldSize * ElementSize.
2310 Value *OldSize = local
2314 // PartialSize = OldSize % 32
2315 Value *PartialSize = IRB.CreateAnd(OldSize, AllocaRzMask);
2330 Value *NewSize = IRB.CreateAdd(OldSize, AdditionalChunkSize);
2341 IRB.CreateCall(AsanAllocaPoisonFunc, {NewAddress, OldSize});
/external/llvm/lib/Analysis/
H A DLazyCallGraph.cpp589 int OldSize = OldSCC.size();
595 for (Node &N : make_range(OldSCC.begin() + OldSize, OldSCC.end())) {
/external/syslinux/efi32/include/efi/
H A Defilib.h358 IN UINTN OldSize,
/external/syslinux/efi64/include/efi/
H A Defilib.h358 IN UINTN OldSize,
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
H A Defilib.h358 IN UINTN OldSize,

Completed in 8770 milliseconds

12