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

  /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 348 /// least one more element or MinSize if specified.
349 void grow(ASTContext &C, size_type MinSize = 1);
369 void ASTVector<T>::grow(ASTContext &C, size_t MinSize) {
373 if (NewCapacity < MinSize)
374 NewCapacity = MinSize;
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 44 int MinSize, int MinAlign,
48 if (MinSize > (int)Size)
49 Size = MinSize;
  /external/llvm/include/llvm/ADT/
SmallVector.h 195 /// least one more element or MinSize if specified.
196 void grow(size_t MinSize = 0);
201 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
205 if (NewCapacity < MinSize)
206 NewCapacity = MinSize;
254 /// least one more element or MinSize if specified.
255 void grow(size_t MinSize = 0) {
256 this->grow_pod(MinSize*sizeof(T), sizeof(T));
  /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 369 FreeRangeHeader *allocateNewCodeSlab(size_t MinSize) {
370 // If the user needs at least MinSize free memory, then we account for
373 size_t PaddedMin = MinSize + 2 * sizeof(MemoryRangeHeader);
396 assert(NewBlock->BlockSize - sizeof(MemoryRangeHeader) >= MinSize &&
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 305 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
  /external/clang/lib/CodeGen/
CGCleanup.cpp 239 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth();
240 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
242 while (BranchFixups.size() > MinSize &&
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 644 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
645 if (HasFP) MinSize += SlotSize;
646 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 1029 GLfloat MinSize, MaxSize; /**< GL_EXT_point_parameters */
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]

Completed in 375 milliseconds