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

1 2 3

  /art/runtime/base/
bounded_fifo.h 24 template <typename T, const size_t MaxSize>
29 CHECK(IsPowerOfTwo(MaxSize));
48 DCHECK_LE(size_, MaxSize);
64 static const size_t mask_ = MaxSize - 1;
66 T data_[MaxSize];
  /external/compiler-rt/test/profile/
instrprof-without-libc.c 25 const uint64_t MaxSize = 10000;
26 static char Buffer[MaxSize];
29 if (Size > MaxSize)
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 6 return T::MaxSize; // expected-error {{'int' cannot be used prior to '::'}}
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglarray.c 45 new_size = array->MaxSize;
57 array->MaxSize = new_size;
74 array->MaxSize = (init_size > 0) ? init_size : 1;
107 if (array->Size >= array->MaxSize && !_eglGrowArray(array))
eglarray.h 41 EGLint MaxSize;
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 68 MaxSize = MatrixType::MaxRowsAtCompileTime,
69 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : MaxSize - 1
268 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;
Tridiagonalization.h 76 MaxSize = MatrixType::MaxRowsAtCompileTime,
77 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : (MaxSize > 1 ? MaxSize - 1 : 1)
  /external/mesa3d/src/egl/main/
eglarray.c 45 new_size = array->MaxSize;
57 array->MaxSize = new_size;
74 array->MaxSize = (init_size > 0) ? init_size : 1;
107 if (array->Size >= array->MaxSize && !_eglGrowArray(array))
eglarray.h 41 EGLint MaxSize;
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
tote.h 27 int MaxSize() const {return kMaxSize_;}
65 int MaxSize() const {return kMaxSize_;}
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
points.c 153 if (ctx->Point.MaxSize == params[0])
156 ctx->Point.MaxSize = params[0];
248 ctx->Point.MaxSize
  /external/mesa3d/src/mesa/main/
points.c 153 if (ctx->Point.MaxSize == params[0])
156 ctx->Point.MaxSize = params[0];
248 ctx->Point.MaxSize
  /external/eigen/Eigen/src/Core/
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:0),0> m_data;
  /external/llvm/lib/TableGen/
SetTheory.cpp 153 unsigned MaxSize = 0;
156 MaxSize = std::max(MaxSize, unsigned(Args[i].size()));
159 for (unsigned n = 0; n != MaxSize; ++n)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 104 int maxWidth = style()->maxWidth().isMaxSizeNone() ? w : calcScrollbarThicknessUsing(MaxSize, style()->maxWidth(), visibleSize);
121 int maxHeight = style()->maxHeight().isMaxSizeNone() ? h : calcScrollbarThicknessUsing(MaxSize, style()->maxHeight(), visibleSize);
  /external/chromium_org/ipc/
file_descriptor_set_posix_unittest.cc 67 TEST(FileDescriptorSet, MaxSize) {
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 95 unsigned MaxSize;
101 MaxSize(Threshold)
241 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
242 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount;
273 MaxSize += Props.CanBeUnswitchedCount * Props.SizeEstimation;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf_state.c 276 ctx->Point.MaxSize)), 1, 255) * (1<<3);
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/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_rasterizer.c 210 ctx->Point.MaxSize);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 276 ctx->Point.MaxSize)), 1, 255) * (1<<3);
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 210 ctx->Point.MaxSize);

Completed in 875 milliseconds

1 2 3