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

1 2 3 4 5 6 7

  /external/eigen/test/
array.cpp 12 template<typename ArrayType> void array(const ArrayType& m)
14 typedef typename ArrayType::Index Index;
15 typedef typename ArrayType::Scalar Scalar;
17 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType;
18 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType;
23 ArrayType m1 = ArrayType::Random(rows, cols),
24 m2 = ArrayType::Random(rows, cols),
35 VERIFY_IS_APPROX(m1 + s1, ArrayType::Constant(rows,cols,s1) + m1)
    [all...]
vectorwiseop.cpp 14 template<typename ArrayType> void vectorwiseop_array(const ArrayType& m)
16 typedef typename ArrayType::Index Index;
17 typedef typename ArrayType::Scalar Scalar;
19 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType;
20 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType;
27 ArrayType m1 = ArrayType::Random(rows, cols),
  /external/chromium_org/third_party/WebKit/Source/wtf/
StdLibExtras.h 179 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey, BinarySearchMode mode>
180 inline ArrayElementType* binarySearchImpl(ArrayType& array, size_t size, KeyType key, const ExtractKey& extractKey = ExtractKey())
219 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey>
220 inline ArrayElementType* binarySearch(ArrayType& array, size_t size, KeyType key, ExtractKey extractKey = ExtractKey())
222 return binarySearchImpl<ArrayElementType, KeyType, ArrayType, ExtractKey, KeyMustBePresentInArray>(array, size, key, extractKey);
226 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey>
227 inline ArrayElementType* tryBinarySearch(ArrayType& array, size_t size, KeyType key, ExtractKey extractKey = ExtractKey())
229 return binarySearchImpl<ArrayElementType, KeyType, ArrayType, ExtractKey, KeyMightNotBePresentInArray>(array, size, key, extractKey);
233 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey>
234 inline ArrayElementType* approximateBinarySearch(ArrayType& array, size_t size, KeyType key, ExtractKey extractKey = ExtractKey()
    [all...]
  /external/eigen/Eigen/src/Core/
NumTraits.h 127 typedef Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> ArrayType;
132 typedef ArrayType & Nested;
139 ReadCost = ArrayType::SizeAtCompileTime==Dynamic ? Dynamic : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::ReadCost,
140 AddCost = ArrayType::SizeAtCompileTime==Dynamic ? Dynamic : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::AddCost,
141 MulCost = ArrayType::SizeAtCompileTime==Dynamic ? Dynamic : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::MulCost
  /external/clang/test/Index/
print-type.c 9 typedef int ArrayType[5];
41 // CHECK: TypedefDecl=ArrayType:9:13 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
print-type.cpp 20 typedef int ArrayType[5];
67 // CHECK: TypedefDecl=ArrayType:20:15 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.h 52 ArrayType
59 ASSERT(m_type == ArrayType);
IDBKey.cpp 40 if (m_type == ArrayType) {
57 case ArrayType:
IDBKey.h 100 ArrayType,
112 ASSERT(m_type == ArrayType);
152 IDBKey(const KeyArray& keyArray, size_t arraySize) : m_type(ArrayType), m_array(keyArray), m_number(0), m_sizeEstimate(OverheadSize + arraySize) { }
IDBKeyPath.cpp 203 : m_type(ArrayType)
221 case ArrayType:
244 case ArrayType:
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 61 static ArrayType *createLoweredType(Type *OriginalType) {
62 return ArrayType::get(OriginalType, MaxThreads);
66 createLoweredInitializer(ArrayType *NewType, Constant *OriginalInitializer) {
84 ArrayType *AT = dyn_cast<ArrayType>(Ty);
100 ArrayType *NewType = createLoweredType(GV->getType()->getElementType());
  /external/clang/lib/CodeGen/
CGVTT.cpp 47 llvm::ArrayType *ArrayType =
48 llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size());
88 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents);
113 llvm::ArrayType *ArrayType =
114 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size());
117 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
MicrosoftVBTables.cpp 178 llvm::ArrayType *VBTableType =
179 llvm::ArrayType::get(CGM.IntTy, 1 + ReusingBase->getNumVBases());
221 cast<llvm::ArrayType>(cast<llvm::PointerType>(GV->getType())
223 llvm::ArrayType *VBTableType =
224 llvm::ArrayType::get(CGM.IntTy, Offsets.size());
  /external/llvm/include/llvm/IR/
DerivedTypes.h 142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
330 /// ArrayType - Class to represent array types.
332 class ArrayType : public SequentialType {
335 ArrayType(const ArrayType &) LLVM_DELETED_FUNCTION;
336 const ArrayType &operator=(const ArrayType &) LLVM_DELETED_FUNCTION;
337 ArrayType(Type *ElType, uint64_t NumEl);
339 /// ArrayType::get - This static method is the primary way to construct an
340 /// ArrayType
    [all...]
  /external/clang/lib/AST/
StmtIterator.cpp 22 while (const ArrayType *vt = dyn_cast<ArrayType>(t)) {
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 49 ArrayType *AT = ArrayType::get(RuntimeCtorInit->getType(),
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_pod.hpp 86 template <typename ArrayType>
89 enum { is_pod = ::boost::is_POD<ArrayType>::value }; // MSVC workaround
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyPath.cpp 82 ASSERT(m_private->type() == IDBKeyPath::ArrayType);
  /external/clang/unittests/AST/
ASTTypeTraitsTest.cpp 42 EXPECT_FALSE(DNT<Expr>().isBaseOf(DNT<ArrayType>()));
  /external/llvm/lib/Linker/
LinkModules.cpp 180 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
181 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
290 return *Entry = ArrayType::get(ElementTypes[0],
291 cast<ArrayType>(Ty)->getNumElements());
621 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
622 ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType());
691 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType())
    [all...]
  /external/llvm/unittests/IR/
TypeBuilderTest.cpp 76 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7),
78 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0),
83 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7),
85 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0),
90 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7),
92 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0),
  /external/chromium_org/ppapi/tests/clang/
print_names_and_sizes.cc 70 } else if (const clang::ArrayType* array =
71 dyn_cast<clang::ArrayType>(&type)) {
  /art/compiler/llvm/
ir_builder.cc 122 ::llvm::ArrayType::get(getInt32Ty(), vreg_size),
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.h 72 const TypeDescriptor &ArrayType;
  /external/llvm/lib/Transforms/Instrumentation/
EdgeProfiling.cpp 77 Type *ATy = ArrayType::get(Type::getInt32Ty(M.getContext()), NumEdges);

Completed in 1026 milliseconds

1 2 3 4 5 6 7