Home
last modified time | relevance | path

Searched refs:MaxSize (Results 1 – 25 of 53) sorted by relevance

123

/external/compiler-rt/test/profile/
Dinstrprof-without-libc.c25 const uint64_t MaxSize = 10000; in main() local
26 static char Buffer[MaxSize]; in main()
29 if (Size > MaxSize) in main()
/external/chromium_org/third_party/mesa/src/src/egl/main/
Deglarray.c45 new_size = array->MaxSize; in _eglGrowArray()
57 array->MaxSize = new_size; in _eglGrowArray()
74 array->MaxSize = (init_size > 0) ? init_size : 1; in _eglCreateArray()
107 if (array->Size >= array->MaxSize && !_eglGrowArray(array)) in _eglAppendArray()
Deglarray.h41 EGLint MaxSize; member
/external/mesa3d/src/egl/main/
Deglarray.c45 new_size = array->MaxSize; in _eglGrowArray()
57 array->MaxSize = new_size; in _eglGrowArray()
74 array->MaxSize = (init_size > 0) ? init_size : 1; in _eglCreateArray()
107 if (array->Size >= array->MaxSize && !_eglGrowArray(array)) in _eglAppendArray()
Deglarray.h41 EGLint MaxSize; member
/external/eigen/Eigen/src/Eigenvalues/
DHessenbergDecomposition.h68 MaxSize = MatrixType::MaxRowsAtCompileTime,
69 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : MaxSize - 1
268 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;
DTridiagonalization.h76 MaxSize = MatrixType::MaxRowsAtCompileTime,
77 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : (MaxSize > 1 ? MaxSize - 1 : 1)
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dpoints.c153 if (ctx->Point.MaxSize == params[0]) in _mesa_PointParameterfv()
156 ctx->Point.MaxSize = params[0]; in _mesa_PointParameterfv()
248 ctx->Point.MaxSize in _mesa_init_point()
/external/mesa3d/src/mesa/main/
Dpoints.c153 if (ctx->Point.MaxSize == params[0]) in _mesa_PointParameterfv()
156 ctx->Point.MaxSize = params[0]; in _mesa_PointParameterfv()
248 ctx->Point.MaxSize in _mesa_init_point()
/external/eigen/Eigen/src/Core/
DGeneralProduct.h47 template<int Size, int MaxSize> struct product_size_category
49 enum { is_large = MaxSize == Dynamic ||
370 template<typename Scalar,int Size,int MaxSize,bool Cond> struct gemv_static_vector_if;
372 template<typename Scalar,int Size,int MaxSize>
373 struct gemv_static_vector_if<Scalar,Size,MaxSize,false>
384 template<typename Scalar,int Size,int MaxSize>
385 struct gemv_static_vector_if<Scalar,Size,MaxSize,true>
388 internal::plain_array<Scalar,EIGEN_SIZE_MIN_PREFER_FIXED(Size,MaxSize),0> m_data;
397 …internal::plain_array<Scalar,EIGEN_SIZE_MIN_PREFER_FIXED(Size,MaxSize)+(ForceAlignment?PacketSize:…
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
Dtote.h27 int MaxSize() const {return kMaxSize_;} in MaxSize() function
65 int MaxSize() const {return kMaxSize_;} in MaxSize() function
Dcompact_lang_det_impl.cc1107 for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) { in RemoveExtendedLanguages()
1142 for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) { in RemoveUnreliableLanguages()
1211 for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) { in RemoveUnreliableLanguages()
1249 for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) { in RefineScoredClosePairs()
1258 for (int sub2 = sub + 1; sub2 < doc_tote->MaxSize(); ++sub2) { in RefineScoredClosePairs()
1312 for (int sub = 0; sub < chunk_tote->MaxSize(); ++sub) { in ApplyLanguageHints()
/external/clang/test/CXX/temp/temp.spec/temp.inst/
Dp11.cpp6 return T::MaxSize; // expected-error {{'int' cannot be used prior to '::'}} in f0()
/external/llvm/lib/TableGen/
DSetTheory.cpp153 unsigned MaxSize = 0; in apply() local
156 MaxSize = std::max(MaxSize, unsigned(Args[i].size())); in apply()
159 for (unsigned n = 0; n != MaxSize; ++n) in apply()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderScrollbarPart.cpp104 …int maxWidth = style()->maxWidth().isMaxSizeNone() ? w : calcScrollbarThicknessUsing(MaxSize, styl… in computeScrollbarWidth()
121 …int maxHeight = style()->maxHeight().isMaxSizeNone() ? h : calcScrollbarThicknessUsing(MaxSize, st… in computeScrollbarHeight()
/external/llvm/lib/Transforms/Scalar/
DLoopUnswitch.cpp95 unsigned MaxSize; member in __anon0e98809b0111::LUAnalysisCache
101 MaxSize(Threshold) in LUAnalysisCache()
241 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation); in countLoop()
242 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount; in countLoop()
273 MaxSize += Props.CanBeUnswitchedCount * Props.SizeEstimation; in forgetLoop()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
Dmeta.c210 GLsizei MaxSize; /**< Max possible texture size */ member
1177 tex->MaxSize = ctx->Const.MaxTextureRectSize; in init_temp_texture()
1183 tex->MaxSize = 1 << (ctx->Const.MaxTextureLevels - 1); in init_temp_texture()
1187 assert(tex->MaxSize > 0); in init_temp_texture()
1252 ASSERT(width <= tex->MaxSize); in alloc_texture()
1253 ASSERT(height <= tex->MaxSize); in alloc_texture()
1581 const GLsizei maxTexSize = tex->MaxSize; in _mesa_meta_BlitFramebuffer()
2117 width > tex->MaxSize || in _mesa_meta_CopyPixels()
2118 height > tex->MaxSize) { in _mesa_meta_CopyPixels()
2440 if (width > tex->MaxSize || height > tex->MaxSize) { in _mesa_meta_DrawPixels()
[all …]
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c210 GLsizei MaxSize; /**< Max possible texture size */ member
1177 tex->MaxSize = ctx->Const.MaxTextureRectSize; in init_temp_texture()
1183 tex->MaxSize = 1 << (ctx->Const.MaxTextureLevels - 1); in init_temp_texture()
1187 assert(tex->MaxSize > 0); in init_temp_texture()
1252 ASSERT(width <= tex->MaxSize); in alloc_texture()
1253 ASSERT(height <= tex->MaxSize); in alloc_texture()
1581 const GLsizei maxTexSize = tex->MaxSize; in _mesa_meta_BlitFramebuffer()
2117 width > tex->MaxSize || in _mesa_meta_CopyPixels()
2118 height > tex->MaxSize) { in _mesa_meta_CopyPixels()
2440 if (width > tex->MaxSize || height > tex->MaxSize) { in _mesa_meta_DrawPixels()
[all …]
/external/chromium_org/ipc/
Dfile_descriptor_set_posix_unittest.cc67 TEST(FileDescriptorSet, MaxSize) { in TEST() argument
/external/llvm/lib/Analysis/
DMemoryBuiltins.cpp489 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits); in visitCallSite() local
490 if (Size.ugt(MaxSize)) in visitCallSite()
491 Size = MaxSize + 1; in visitCallSite()
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_rasterizer.c210 ctx->Point.MaxSize); in update_raster_state()
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
Dst_atom_rasterizer.c210 ctx->Point.MaxSize); in update_raster_state()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dgen7_sf_state.c278 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in upload_sf_state()
Dgen6_sf_state.c243 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in upload_sf_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()

123