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

  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 6 return T::MaxSize; // expected-error {{'int' cannot be used prior to '::'}}
  /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/webkit/Source/JavaScriptCore/wtf/
PageAllocatorSymbian.h 48 m_maxSize = MaxSize();
  /external/clang/lib/AST/
APValue.cpp 37 (MaxSize - sizeof(LVBase)) / sizeof(LValuePathEntry);
78 (MaxSize - sizeof(MemberPointerBase)) / sizeof(const CXXRecordDecl*);
217 char TmpData[MaxSize];
218 memcpy(TmpData, Data, MaxSize);
219 memcpy(Data, RHS.Data, MaxSize);
220 memcpy(RHS.Data, TmpData, MaxSize);
588 assert(sizeof(LV) <= MaxSize && "LV too big");
  /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/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)
AsmWriterEmitter.cpp 205 size_t MaxSize = FirstInst->Operands.size();
217 MaxSize = std::max(MaxSize, OtherInst->Operands.size());
    [all...]
  /external/chromium/base/
mach_ipc_mac.h 211 size_t MaxSize() const { return storage_length_bytes_; }
  /external/clang/include/clang/AST/
APValue.h 112 MaxSize = (sizeof(ComplexAPSInt) > sizeof(ComplexAPFloat) ?
118 char Data[MaxSize];
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 94 unsigned MaxSize;
100 MaxSize(Threshold)
251 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
252 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount;
284 MaxSize += Props.CanBeUnswitchedCount * Props.SizeEstimation;
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 494 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits);
495 if (Size.ugt(MaxSize))
496 Size = MaxSize + 1;
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]

Completed in 572 milliseconds