HomeSort by relevance Sort by last modified time
    Searched refs:MinSize (Results 1 - 15 of 15) 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/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/Target/
TargetRegisterInfo.cpp 215 unsigned MinSize = RCA->getSize();
223 if (!RC || RC->getSize() < MinSize)
240 // Bail early if we reached MinSize. We won't find a better candidate.
241 if (BestRC->getSize() == MinSize)
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 51 unsigned MinSize = LSize < RSize ? LSize : RSize;
54 for (; Count != MinSize; ++Count)
65 unsigned MinSize = LSize < RSize ? LSize : RSize;
67 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 386 FreeRangeHeader *allocateNewCodeSlab(size_t MinSize) {
387 // If the user needs at least MinSize free memory, then we account for
390 size_t PaddedMin = MinSize + 2 * sizeof(MemoryRangeHeader);
413 assert(NewBlock->BlockSize - sizeof(MemoryRangeHeader) >= MinSize &&
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 226 /// Guarantees space for at least one more element, or MinSize more
228 void grow(size_t MinSize = 0);
263 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
267 if (NewCapacity < MinSize)
268 NewCapacity = MinSize;
339 /// least one more element or MinSize if specified.
340 void grow(size_t MinSize = 0) {
341 this->grow_pod(MinSize*sizeof(T), sizeof(T));
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 305 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
  /external/clang/lib/CodeGen/
CGCleanup.cpp 238 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth();
239 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
241 while (BranchFixups.size() > MinSize &&
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 683 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
684 if (HasFP) MinSize += SlotSize;
685 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 457 milliseconds