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

1 2 3

  /art/runtime/base/
bounded_fifo.h 27 template <typename T, const size_t MaxSize>
32 CHECK(IsPowerOfTwo(MaxSize));
51 DCHECK_LE(size_, MaxSize);
67 static const size_t mask_ = MaxSize - 1;
69 T data_[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/net/quic/congestion_control/
quic_max_sized_map_test.cc 17 EXPECT_EQ(100u, test_map.MaxSize());
21 EXPECT_EQ(100u, test_map.MaxSize());
24 EXPECT_EQ(100u, test_map.MaxSize());
quic_max_sized_map.h 29 size_t MaxSize() const {
38 if (Size() == MaxSize()) {
  /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/clang/lib/AST/
APValue.cpp 37 (MaxSize - sizeof(LVBase)) / sizeof(LValuePathEntry);
78 (MaxSize - sizeof(MemberPointerBase)) / sizeof(const CXXRecordDecl*);
251 char TmpData[MaxSize];
252 memcpy(TmpData, Data, MaxSize);
253 memcpy(Data, RHS.Data, MaxSize);
254 memcpy(RHS.Data, TmpData, MaxSize);
622 assert(sizeof(LV) <= MaxSize && "LV too big");
  /external/llvm/utils/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/eigen/Eigen/src/Core/
GeneralProduct.h 47 template<int Size, int MaxSize> struct product_size_category
49 enum { is_large = MaxSize == Dynamic ||
348 template<typename Scalar,int Size,int MaxSize,bool Cond> struct gemv_static_vector_if;
350 template<typename Scalar,int Size,int MaxSize>
351 struct gemv_static_vector_if<Scalar,Size,MaxSize,false>
362 template<typename Scalar,int Size,int MaxSize>
363 struct gemv_static_vector_if<Scalar,Size,MaxSize,true>
366 internal::plain_array<Scalar,EIGEN_SIZE_MIN_PREFER_FIXED(Size,MaxSize),0> m_data;
375 internal::plain_array<Scalar,EIGEN_SIZE_MIN_PREFER_FIXED(Size,MaxSize)+(ForceAlignment?PacketSize:0),0> m_data;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 107 int maxWidth = style()->maxWidth().isUndefined() ? w : calcScrollbarThicknessUsing(MaxSize, style()->maxWidth(), visibleSize, renderView);
125 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(MaxSize, style()->maxHeight(), visibleSize, renderView);
  /external/chromium/base/
mach_ipc_mac.h 211 size_t MaxSize() const { return storage_length_bytes_; }
  /external/chromium_org/ipc/
file_descriptor_set_posix_unittest.cc 67 TEST(FileDescriptorSet, MaxSize) {
  /external/clang/include/clang/AST/
APValue.h 112 MaxSize = (sizeof(ComplexAPSInt) > sizeof(ComplexAPFloat) ?
118 char Data[MaxSize];
  /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);

Completed in 1006 milliseconds

1 2 3