Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DRawCommentList.h210 size_t OldSize = Comments.size(); in addCommentsToFront() local
211 Comments.resize(C.size() + OldSize); in addCommentsToFront()
212 std::copy_backward(Comments.begin(), Comments.begin() + OldSize, in addCommentsToFront()
/external/llvm/tools/bugpoint/
DCrashDebugger.cpp478 unsigned OldSize = GVs.size(); in DebugACrash() local
483 if (GVs.size() < OldSize) in DebugACrash()
501 unsigned OldSize = Functions.size(); in DebugACrash() local
504 if (Functions.size() < OldSize) in DebugACrash()
519 unsigned OldSize = Blocks.size(); in DebugACrash() local
521 if (Blocks.size() < OldSize) in DebugACrash()
DMiscompilation.cpp570 unsigned OldSize = Blocks.size(); in ExtractBlocks() local
584 if (Blocks.size() == OldSize) in ExtractBlocks()
/external/llvm/lib/Support/
DSmallPtrSet.cpp132 unsigned OldSize = CurArraySize; in Grow() local
153 for (const void **BucketPtr = OldBuckets, **E = OldBuckets+OldSize; in Grow()
/external/llvm/lib/MC/
DMCAssembler.cpp897 uint64_t OldSize = LF.getContents().size(); in relaxLEB() local
909 return OldSize != LF.getContents().size(); in relaxLEB()
916 uint64_t OldSize = DF.getContents().size(); in relaxDwarfLineAddr() local
927 return OldSize != Data.size(); in relaxDwarfLineAddr()
934 uint64_t OldSize = DF.getContents().size(); in relaxDwarfCallFrameFragment() local
943 return OldSize != Data.size(); in relaxDwarfCallFrameFragment()
/external/llvm/lib/Transforms/Scalar/
DCodeGenPrepare.cpp1055 unsigned OldSize = AddrModeInsts.size(); in MatchOperationAddr() local
1062 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1071 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1134 unsigned OldSize = AddrModeInsts.size(); in MatchOperationAddr() local
1144 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1157 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1167 AddrModeInsts.resize(OldSize); in MatchOperationAddr()
1200 unsigned OldSize = AddrModeInsts.size(); in MatchAddr() local
1216 AddrModeInsts.resize(OldSize); in MatchAddr()
DSROA.cpp2712 unsigned OldSize = Indices.size(); in emitSplitOps() local
2713 (void)OldSize; in emitSplitOps()
2716 assert(Indices.size() == OldSize && "Did not return to the old size"); in emitSplitOps()
2727 unsigned OldSize = Indices.size(); in emitSplitOps() local
2728 (void)OldSize; in emitSplitOps()
2731 assert(Indices.size() == OldSize && "Did not return to the old size"); in emitSplitOps()
DScalarReplAggregates.cpp2103 ConstantInt *OldSize = cast<ConstantInt>(II->getArgOperand(0)); in RewriteLifetimeIntrinsic() local
2112 uint64_t Size = OldSize->getLimitedValue(); in RewriteLifetimeIntrinsic()
/external/llvm/include/llvm/ADT/
DBitVector.h224 unsigned OldSize = Size; variable
226 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()
/external/clang/lib/CodeGen/
DCodeGenFunction.h399 size_t OldSize = LifetimeExtendedCleanupStack.size(); in pushCleanupAfterFullExpr() local
403 char *Buffer = &LifetimeExtendedCleanupStack[OldSize]; in pushCleanupAfterFullExpr()