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

1 2

  /external/opencv3/modules/cudaimgproc/test/
test_mean_shift.cpp 130 IMPLEMENT_PARAM_CLASS(MinSize, int);
133 PARAM_TEST_CASE(MeanShiftSegmentation, cv::cuda::DeviceInfo, MinSize)
136 int minsize; local
141 minsize = GET_PARAM(1);
153 path << "meanshift/cones_segmented_sp10_sr10_minsize" << minsize; local
162 cv::cuda::meanShiftSegmentation(loadMat(img), dst, 10, 10, minsize); local
172 testing::Values(MinSize(0), MinSize(4), MinSize(20), MinSize(84), MinSize(340), MinSize(1364))))
    [all...]
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 194 /// least one more element or MinSize if specified.
195 void grow(BumpVectorContext &C, size_type MinSize = 1);
220 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) {
224 if (NewCapacity < MinSize)
225 NewCapacity = MinSize;
  /external/llvm/lib/Object/
MachOUniversal.cpp 117 uint32_t MinSize = sizeof(MachO::fat_header) +
119 if (H.magic != MachO::FAT_MAGIC || Buf.size() < MinSize) {
  /external/clang/include/clang/AST/
ASTVector.h 352 /// least one more element or MinSize if specified.
353 void grow(const ASTContext &C, size_type MinSize = 1);
376 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) {
380 if (NewCapacity < MinSize)
381 NewCapacity = MinSize;
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelDAGToDAG.cpp 52 MF.getFunction()->hasFnAttribute(Attribute::MinSize);
Relooper.cpp 75 bool MinSize;
88 void SetMinSize(bool MinSize_) { MinSize = MinSize_; }
186 : Root(nullptr), MinSize(false), BlockIdCounter(1),
293 if (!MinSize)
    [all...]
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 46 int MinSize, int MinAlign,
50 if (MinSize > (int)Size)
51 Size = MinSize;
TargetRegisterInfo.cpp 261 unsigned MinSize = RCA->getSize();
269 if (!RC || RC->getSize() < MinSize)
286 // Bail early if we reached MinSize. We won't find a better candidate.
287 if (BestRC->getSize() == MinSize)
  /external/mesa3d/src/mesa/main/
points.c 142 if (ctx->Point.MinSize == params[0])
145 ctx->Point.MinSize = params[0];
247 ctx->Point.MinSize = 0.0;
  /external/llvm/include/llvm/ADT/
SmallVector.h 225 /// element, or MinSize more elements if specified.
226 void grow(size_t MinSize = 0);
251 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
256 if (NewCapacity < MinSize)
257 NewCapacity = MinSize;
332 /// least one more element or MinSize if specified.
333 void grow(size_t MinSize = 0) {
334 this->grow_pod(MinSize*sizeof(T), sizeof(T));
  /external/llvm/lib/Target/AArch64/
AArch64ConditionalCompares.cpp 728 bool MinSize;
828 if (MinSize) {
902 MinSize = MF.getFunction()->optForMinSize();
AArch64A57FPLoadBalancing.cpp 415 unsigned MinSize = L.front()->size() - SizeFuzz;
417 if ((*I)->size() <= MinSize) {
  /external/webp/src/enc/
iterator.c 101 static WEBP_INLINE int MinSize(int a, int b) { return (a < b) ? a : b; }
134 const int w = MinSize(pic->width - x * 16, 16);
135 const int h = MinSize(pic->height - y * 16, 16);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 275 ctx->Point.MinSize,
gen6_sf_state.c 243 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
gen7_sf_state.c 278 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
  /external/mesa3d/src/mesa/state_tracker/
st_atom_rasterizer.c 209 ctx->Point.MinSize,
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 37 unsigned MinSize = LSize < RSize ? LSize : RSize;
40 for (; Count != MinSize; ++Count)
  /external/mesa3d/src/mesa/swrast/
s_points.c 68 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize);
546 ctx->Point.MinSize,
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 443 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
  /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/mesa3d/src/mesa/program/
prog_statevars.c 269 value[1] = ctx->Point.MinSize;
494 value[1] = ctx->Point.MinSize >= minImplSize ? ctx->Point.MinSize : minImplSize;
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 260 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth();
261 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
263 while (BranchFixups.size() > MinSize &&
    [all...]
  /external/llvm/include/llvm/IR/
Function.h 411 bool optForMinSize() const { return hasFnAttribute(Attribute::MinSize); };
  /external/llvm/lib/Support/
Path.cpp 962 size_t MinSize = offsetof(COFF::BigObjHeader, UUID) + sizeof(COFF::BigObjMagic);
963 if (Magic.size() < MinSize)

Completed in 677 milliseconds

1 2