Home
last modified time | relevance | path

Searched refs:Array2 (Results 1 – 7 of 7) sorted by relevance

/external/llvm/unittests/ADT/
DArrayRefTest.cpp41 ArrayRef<uint16_t> Array2 = makeArrayRef(Words2, 5); in TEST() local
43 ArrayRef<uint16_t> Array2c = Array2.copy(Alloc); in TEST()
46 EXPECT_TRUE(Array2.equals(Array2c)); in TEST()
47 EXPECT_NE(Array2.data(), Array2c.data()); in TEST()
/external/swiftshader/third_party/LLVM/test/Analysis/BasicAA/
Dfeaturetest.ll16 %Array2 = alloca i32, i32 200
19 call void @external(i32* %Array2)
24 %pointer2 = getelementptr i32* %Array2, i64 %B
/external/llvm/test/Analysis/BasicAA/
Dfeaturetest.ll16 %Array2 = alloca i32, i32 200
19 call void @external(i32* %Array2)
24 %pointer2 = getelementptr i32, i32* %Array2, i64 %B
/external/swiftshader/third_party/subzero/crosstest/
Dtest_global.cpp37 double Array2[3]; member
/external/llvm/test/Transforms/LoopStrengthReduce/
D2012-01-02-nopreheader.ll60 define fastcc void @nopreheader2([200 x i32]* nocapture %Array2) nounwind {
77 %scevgep = getelementptr [200 x i32], [200 x i32]* %Array2, i32 %tmp26, i32 %indvar
/external/clang/test/SemaObjC/
Dkindof.m408 @interface Array2<T1, T2, T3> : NSObject interface
411 @interface Array2<T, T, __kindof I1*>(extensions2) // expected-error{{expected type parameter name}… interface in extensions2
/external/clang/lib/AST/
DASTImporter.cpp452 const ArrayType *Array2) { in IsArrayStructurallyEquivalent() argument
455 Array2->getElementType())) in IsArrayStructurallyEquivalent()
457 if (Array1->getSizeModifier() != Array2->getSizeModifier()) in IsArrayStructurallyEquivalent()
459 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers()) in IsArrayStructurallyEquivalent()
563 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2); in IsStructurallyEquivalent() local
564 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize())) in IsStructurallyEquivalent()
567 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) in IsStructurallyEquivalent()
581 const VariableArrayType *Array2 = cast<VariableArrayType>(T2); in IsStructurallyEquivalent() local
583 Array1->getSizeExpr(), Array2->getSizeExpr())) in IsStructurallyEquivalent()
586 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) in IsStructurallyEquivalent()
[all …]