Home
last modified time | relevance | path

Searched refs:OldSize (Results 1 – 10 of 10) sorted by relevance

/external/clang/include/clang/AST/
DRawCommentList.h197 size_t OldSize = Comments.size(); in addCommentsToFront() local
198 Comments.resize(C.size() + OldSize); in addCommentsToFront()
199 std::copy_backward(Comments.begin(), Comments.begin() + OldSize, in addCommentsToFront()
/external/llvm/tools/bugpoint/
DCrashDebugger.cpp480 unsigned OldSize = GVs.size(); in DebugACrash() local
485 if (GVs.size() < OldSize) in DebugACrash()
503 unsigned OldSize = Functions.size(); in DebugACrash() local
506 if (Functions.size() < OldSize) in DebugACrash()
521 unsigned OldSize = Blocks.size(); in DebugACrash() local
523 if (Blocks.size() < OldSize) in DebugACrash()
DMiscompilation.cpp535 unsigned OldSize = Blocks.size(); in ExtractBlocks() local
549 if (Blocks.size() == OldSize) in ExtractBlocks()
/external/llvm/lib/Support/
DSmallPtrSet.cpp136 unsigned OldSize = CurArraySize; in Grow() local
161 for (const void **BucketPtr = OldBuckets, **E = OldBuckets+OldSize; in Grow()
/external/llvm/lib/MC/
DMCAssembler.cpp866 uint64_t OldSize = LF.getContents().size(); in relaxLEB() local
878 return OldSize != LF.getContents().size(); in relaxLEB()
884 uint64_t OldSize = DF.getContents().size(); in relaxDwarfLineAddr() local
895 return OldSize != Data.size(); in relaxDwarfLineAddr()
901 uint64_t OldSize = DF.getContents().size(); in relaxDwarfCallFrameFragment() local
910 return OldSize != Data.size(); in relaxDwarfCallFrameFragment()
/external/llvm/lib/Transforms/Scalar/
DCodeGenPrepare.cpp1053 unsigned OldSize = AddrModeInsts.size(); in MatchOperationAddr() local
1060 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1069 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1132 unsigned OldSize = AddrModeInsts.size(); in MatchOperationAddr() local
1142 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1155 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1165 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1198 unsigned OldSize = AddrModeInsts.size(); in MatchAddr() local
1214 AddrModeInsts.resize(OldSize); in MatchAddr()
DSROA.cpp3117 unsigned OldSize = Indices.size(); in emitSplitOps() local
3118 (void)OldSize; in emitSplitOps()
3121 assert(Indices.size() == OldSize && "Did not return to the old size"); in emitSplitOps()
3132 unsigned OldSize = Indices.size(); in emitSplitOps() local
3133 (void)OldSize; in emitSplitOps()
3136 assert(Indices.size() == OldSize && "Did not return to the old size"); in emitSplitOps()
DScalarReplAggregates.cpp2112 ConstantInt *OldSize = cast<ConstantInt>(II->getArgOperand(0)); in RewriteLifetimeIntrinsic() local
2121 uint64_t Size = OldSize->getLimitedValue(); in RewriteLifetimeIntrinsic()
/external/llvm/include/llvm/ADT/
DBitVector.h217 unsigned OldSize = Size; variable
219 if (t || N < OldSize)
DDenseMap.h899 unsigned OldSize = this->size(); in shrink_and_clear() local
904 if (OldSize) { in shrink_and_clear()
905 NewNumBuckets = 1 << (Log2_32_Ceil(OldSize) + 1); in shrink_and_clear()