HomeSort by relevance Sort by last modified time
    Searched refs:MinSize (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/include/clang/Analysis/Support/
BumpVector.h 189 /// least one more element or MinSize if specified.
190 void grow(BumpVectorContext &C, size_type MinSize = 1);
215 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) {
219 if (NewCapacity < MinSize)
220 NewCapacity = MinSize;
  /external/clang/include/clang/AST/
ASTVector.h 352 /// least one more element or MinSize if specified.
353 void grow(ASTContext &C, size_type MinSize = 1);
373 void ASTVector<T>::grow(ASTContext &C, size_t MinSize) {
377 if (NewCapacity < MinSize)
378 NewCapacity = MinSize;
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 44 int MinSize, int MinAlign,
48 if (MinSize > (int)Size)
49 Size = MinSize;
TargetRegisterInfo.cpp 219 unsigned MinSize = RCA->getSize();
227 if (!RC || RC->getSize() < MinSize)
244 // Bail early if we reached MinSize. We won't find a better candidate.
245 if (BestRC->getSize() == MinSize)
  /external/llvm/lib/Target/Hexagon/
HexagonCallingConvLower.cpp 43 int MinSize, int MinAlign,
47 if (MinSize > (int)Size)
48 Size = MinSize;
HexagonCallingConvLower.h 178 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 50 unsigned MinSize = LSize < RSize ? LSize : RSize;
53 for (; Count != MinSize; ++Count)
64 unsigned MinSize = LSize < RSize ? LSize : RSize;
66 for (unsigned i = 0; i != MinSize; ++i)
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 144 unsigned MinSize = LSize < RSize ? LSize : RSize;
147 for (; Count != MinSize; ++Count)
159 unsigned MinSize = LSize < RSize ? LSize : RSize;
161 for (unsigned i = 0; i != MinSize; ++i)
JITMemoryManager.cpp 390 FreeRangeHeader *allocateNewCodeSlab(size_t MinSize) {
391 // If the user needs at least MinSize free memory, then we account for
394 size_t PaddedMin = MinSize + 2 * sizeof(MemoryRangeHeader);
417 assert(NewBlock->BlockSize - sizeof(MemoryRangeHeader) >= MinSize &&
    [all...]
  /external/llvm/lib/Target/X86/
X86PadShortFunction.cpp 98 Attribute::MinSize)) {
X86FrameLowering.cpp 703 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
704 if (HasFP) MinSize += SlotSize;
705 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 230 /// Guarantees space for at least one more element, or MinSize more
232 void grow(size_t MinSize = 0);
267 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
271 if (NewCapacity < MinSize)
272 NewCapacity = MinSize;
343 /// least one more element or MinSize if specified.
344 void grow(size_t MinSize = 0) {
345 this->grow_pod(MinSize*sizeof(T), sizeof(T));
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 307 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
  /external/llvm/include/llvm/IR/
Attributes.h 73 MinSize, ///< Function must be optimized for size first
  /external/clang/lib/CodeGen/
CGCleanup.cpp 244 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth();
245 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
247 while (BranchFixups.size() > MinSize &&
    [all...]
CGCall.cpp     [all...]
CodeGenModule.cpp 608 F->addFnAttr(llvm::Attribute::MinSize);
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
SVD.h 39 MinSize = EIGEN_SIZE_MIN_PREFER_DYNAMIC(MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime)
45 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MinSize> MatrixUType;
47 typedef Matrix<Scalar, MinSize, 1> SingularValuesType;
  /external/llvm/lib/IR/
Attributes.cpp 166 if (hasAttribute(Attribute::MinSize))
167 return "minsize";
390 case Attribute::MinSize: return 1ULL << 33;
    [all...]
Verifier.cpp 656 !Attrs.hasAttribute(Idx, Attribute::MinSize) &&
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 254 Attribute::MinSize))
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 512 HANDLE_ATTR(MinSize);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]

Completed in 610 milliseconds

1 2