Home
last modified time | relevance | path

Searched refs:MinSize (Results 1 – 25 of 55) sorted by relevance

123

/external/clang/include/clang/Analysis/Support/
DBumpVector.h190 void grow(BumpVectorContext &C, size_type MinSize = 1);
215 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { in grow() argument
219 if (NewCapacity < MinSize) in grow()
220 NewCapacity = MinSize; in grow()
/external/mesa3d/src/mesa/main/
Dpoints.c142 if (ctx->Point.MinSize == params[0]) in _mesa_PointParameterfv()
145 ctx->Point.MinSize = params[0]; in _mesa_PointParameterfv()
247 ctx->Point.MinSize = 0.0; in _mesa_init_point()
/external/llvm/lib/CodeGen/
DTargetRegisterInfo.cpp230 unsigned MinSize = RCA->getSize(); in getCommonSuperRegClass() local
238 if (!RC || RC->getSize() < MinSize) in getCommonSuperRegClass()
256 if (BestRC->getSize() == MinSize) in getCommonSuperRegClass()
DCallingConvLower.cpp45 int MinSize, int MinAlign, in HandleByVal() argument
49 if (MinSize > (int)Size) in HandleByVal()
50 Size = MinSize; in HandleByVal()
/external/clang/include/clang/AST/
DASTVector.h353 void grow(const ASTContext &C, size_type MinSize = 1);
376 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { in grow() argument
380 if (NewCapacity < MinSize) in grow()
381 NewCapacity = MinSize; in grow()
/external/llvm/lib/Object/
DMachOUniversal.cpp117 uint32_t MinSize = sizeof(MachO::fat_header) + in MachOUniversalBinary() local
119 if (H.magic != MachO::FAT_MAGIC || Buf.size() < MinSize) { in MachOUniversalBinary()
/external/llvm/test/CodeGen/ARM/
Dminsize-litpools.ll4 ; CodeGen should be able to set and reset the MinSize subtarget-feature, and
/external/llvm/lib/Target/AArch64/
DAArch64ConditionalCompares.cpp728 bool MinSize; member in __anon2dd089570211::AArch64ConditionalCompares
828 if (MinSize) { in shouldConvert()
902 MinSize = MF.getFunction()->hasFnAttribute(Attribute::MinSize); in runOnMachineFunction()
DAArch64A57FPLoadBalancing.cpp415 unsigned MinSize = L.front()->size() - SizeFuzz; in getAndEraseNext() local
417 if ((*I)->size() <= MinSize) { in getAndEraseNext()
/external/llvm/include/llvm/ADT/
DSmallVector.h219 void grow(size_t MinSize = 0);
244 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { in grow() argument
249 if (NewCapacity < MinSize) in grow()
250 NewCapacity = MinSize; in grow()
324 void grow(size_t MinSize = 0) {
325 this->grow_pod(MinSize*sizeof(T), sizeof(T));
/external/webp/src/enc/
Diterator.c101 static WEBP_INLINE int MinSize(int a, int b) { return (a < b) ? a : b; } in MinSize() function
134 const int w = MinSize(pic->width - x * 16, 16); in VP8IteratorImport()
135 const int h = MinSize(pic->height - y * 16, 16); in VP8IteratorImport()
/external/llvm/test/CodeGen/X86/
D2009-06-04-VirtualLiveIn.ll18 define fastcc void @MinSize(%struct.rec* %x) nounwind {
/external/llvm/lib/Target/X86/
DX86PadShortFunction.cpp97 MF.getFunction()->hasFnAttribute(Attribute::MinSize)) { in runOnMachineFunction()
DX86CallFrameOptimization.cpp168 MF.getFunction()->hasFnAttribute(Attribute::MinSize); in isProfitable()
/external/eigen/Eigen/src/Eigen2Support/
DSVD.h39MinSize = EIGEN_SIZE_MIN_PREFER_DYNAMIC(MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTi… enumerator
45 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MinSize> MatrixUType;
47 typedef Matrix<Scalar, MinSize, 1> SingularValuesType;
/external/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp37 unsigned MinSize = LSize < RSize ? LSize : RSize; in sharedTypeIDs() local
40 for (; Count != MinSize; ++Count) in sharedTypeIDs()
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_rasterizer.c209 ctx->Point.MinSize, in update_raster_state()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dgen6_sf_state.c243 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in upload_sf_state()
Dgen7_sf_state.c278 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in upload_sf_state()
Dbrw_sf_state.c275 ctx->Point.MinSize, in upload_sf_unit()
/external/llvm/lib/Target/ARM/
DARMSubtarget.cpp354 !MF.getFunction()->hasFnAttribute(Attribute::MinSize)); in useMovt()
/external/mesa3d/src/mesa/program/
Dprog_statevars.c269 value[1] = ctx->Point.MinSize; in _mesa_fetch_state()
494 value[1] = ctx->Point.MinSize >= minImplSize ? ctx->Point.MinSize : minImplSize; in _mesa_fetch_state()
/external/mesa3d/src/mesa/swrast/
Ds_points.c68 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize); in get_size()
546 ctx->Point.MinSize, in _swrast_choose_point()
/external/clang/lib/CodeGen/
DCGCleanup.cpp246 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth(); in popNullFixups() local
247 assert(BranchFixups.size() >= MinSize && "fixup stack out of order"); in popNullFixups()
249 while (BranchFixups.size() > MinSize && in popNullFixups()
/external/llvm/include/llvm/CodeGen/
DCallingConvLower.h429 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);

123