/external/compiler-rt/test/profile/ |
D | instrprof-without-libc.c | 25 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/ |
D | eglarray.c | 45 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()
|
D | eglarray.h | 41 EGLint MaxSize; member
|
/external/mesa3d/src/egl/main/ |
D | eglarray.c | 45 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()
|
D | eglarray.h | 41 EGLint MaxSize; member
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | HessenbergDecomposition.h | 68 MaxSize = MatrixType::MaxRowsAtCompileTime, 69 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : MaxSize - 1 268 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;
|
D | Tridiagonalization.h | 76 MaxSize = MatrixType::MaxRowsAtCompileTime, 77 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : (MaxSize > 1 ? MaxSize - 1 : 1)
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | points.c | 153 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/ |
D | points.c | 153 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/ |
D | GeneralProduct.h | 47 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/ |
D | tote.h | 27 int MaxSize() const {return kMaxSize_;} in MaxSize() function 65 int MaxSize() const {return kMaxSize_;} in MaxSize() function
|
D | compact_lang_det_impl.cc | 1107 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/ |
D | p11.cpp | 6 return T::MaxSize; // expected-error {{'int' cannot be used prior to '::'}} in f0()
|
/external/llvm/lib/TableGen/ |
D | SetTheory.cpp | 153 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/ |
D | RenderScrollbarPart.cpp | 104 …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/ |
D | LoopUnswitch.cpp | 95 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/ |
D | meta.c | 210 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/ |
D | meta.c | 210 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/ |
D | file_descriptor_set_posix_unittest.cc | 67 TEST(FileDescriptorSet, MaxSize) { in TEST() argument
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 489 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/ |
D | st_atom_rasterizer.c | 210 ctx->Point.MaxSize); in update_raster_state()
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
D | st_atom_rasterizer.c | 210 ctx->Point.MaxSize); in update_raster_state()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
D | gen7_sf_state.c | 278 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in upload_sf_state()
|
D | gen6_sf_state.c | 243 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in upload_sf_state()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | gen6_sf_state.c | 243 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in upload_sf_state()
|