Searched defs:MinSize (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/tools/gn/
H A Dpattern.h28 size_t MinSize() const { function in struct:Pattern::Subrange
/external/llvm/lib/Object/
H A DMachOUniversal.cpp124 uint32_t MinSize = sizeof(MachO::fat_header) + local
126 if (H.magic != MachO::FAT_MAGIC || Buf.size() < MinSize) {
/external/llvm/lib/CodeGen/
H A DCallingConvLower.cpp44 int MinSize, int MinAlign,
48 if (MinSize > (int)Size)
49 Size = MinSize;
42 HandleByVal(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags) argument
H A DTargetRegisterInfo.cpp229 unsigned MinSize = RCA->getSize(); local
237 if (!RC || RC->getSize() < MinSize)
254 // Bail early if we reached MinSize. We won't find a better candidate.
255 if (BestRC->getSize() == MinSize)
/external/llvm/lib/Target/Hexagon/
H A DHexagonCallingConvLower.cpp42 int MinSize, int MinAlign,
46 if (MinSize > (int)Size)
47 Size = MinSize;
40 HandleByVal(unsigned ValNo, EVT ValVT, EVT LocVT, CCValAssign::LocInfo LocInfo, int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags) argument
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h189 /// 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) { argument
219 if (NewCapacity < MinSize)
220 NewCapacity = MinSize;
/external/eigen/Eigen/src/Eigen2Support/
H A DSVD.h39 MinSize = EIGEN_SIZE_MIN_PREFER_DYNAMIC(MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime) enumerator in enum:Eigen::SVD::__anon20883
45 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MinSize> MatrixUType;
47 typedef Matrix<Scalar, MinSize, 1> SingularValuesType;
/external/chromium_org/third_party/libwebp/enc/
H A Diterator.c101 static WEBP_INLINE int MinSize(int a, int b) { return (a < b) ? a : b; } function
134 const int w = MinSize(pic->width - x * 16, 16);
135 const int h = MinSize(pic->height - y * 16, 16);
/external/clang/include/clang/AST/
H A DASTVector.h351 /// least one more element or MinSize if specified.
352 void grow(const ASTContext &C, size_type MinSize = 1);
375 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { argument
379 if (NewCapacity < MinSize)
380 NewCapacity = MinSize;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp37 unsigned MinSize = LSize < RSize ? LSize : RSize; local
40 for (; Count != MinSize; ++Count)
/external/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp397 unsigned MinSize = L.front()->size() - SizeFuzz; local
399 if ((*I)->size() <= MinSize) {
H A DAArch64ConditionalCompares.cpp728 bool MinSize; member in class:__anon25936::AArch64ConditionalCompares
828 if (MinSize) {
903 MinSize = MF.getFunction()->getAttributes().hasAttribute(
904 AttributeSet::FunctionIndex, Attribute::MinSize);
/external/webp/src/enc/
H A Diterator.c101 static WEBP_INLINE int MinSize(int a, int b) { return (a < b) ? a : b; } function
134 const int w = MinSize(pic->width - x * 16, 16);
135 const int h = MinSize(pic->height - y * 16, 16);
/external/llvm/include/llvm/ADT/
H A DSmallVector.h220 /// Guarantees space for at least one more element, or MinSize more
222 void grow(size_t MinSize = 0);
247 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { argument
252 if (NewCapacity < MinSize)
253 NewCapacity = MinSize;
324 /// least one more element or MinSize if specified.
325 void grow(size_t MinSize = 0) {
326 this->grow_pod(MinSize*sizeof(T), sizeof(T));
/external/llvm/include/llvm/IR/
H A DAttributes.h79 MinSize, ///< Function must be optimized for size first enumerator in enum:llvm::Attribute::AttrKind
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp394 FreeRangeHeader *allocateNewCodeSlab(size_t MinSize) { argument
395 // If the user needs at least MinSize free memory, then we account for
398 size_t PaddedMin = MinSize + 2 * sizeof(MemoryRangeHeader);
421 assert(NewBlock->BlockSize - sizeof(MemoryRangeHeader) >= MinSize &&
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp244 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth(); local
245 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
247 while (BranchFixups.size() > MinSize &&
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBox.h35 enum SizeType { MainOrPreferredSize, MinSize, MaxSize }; enumerator in enum:blink::SizeType
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
H A Dmeta.c209 GLsizei MinSize; /**< Min texture size to allocate */ member in struct:temp_texture
1186 tex->MinSize = 16; /* 16 x 16 at least */
1262 tex->Width = MAX2(tex->MinSize, width);
1263 tex->Height = MAX2(tex->MinSize, height);
1268 w = h = tex->MinSize;
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c209 GLsizei MinSize; /**< Min texture size to allocate */ member in struct:temp_texture
1186 tex->MinSize = 16; /* 16 x 16 at least */
1262 tex->Width = MAX2(tex->MinSize, width);
1263 tex->Height = MAX2(tex->MinSize, height);
1268 w = h = tex->MinSize;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h1069 GLfloat MinSize, MaxSize; /**< GL_EXT_point_parameters */ member in struct:gl_point_attrib
/external/mesa3d/src/mesa/main/
H A Dmtypes.h1069 GLfloat MinSize, MaxSize; /**< GL_EXT_point_parameters */ member in struct:gl_point_attrib

Completed in 8999 milliseconds