Home
last modified time | relevance | path

Searched refs:Array1 (Results 1 – 4 of 4) sorted by relevance

/external/llvm/unittests/ADT/
DArrayRefTest.cpp39 ArrayRef<uint16_t> Array1 = makeArrayRef(Words1, 4); in TEST() local
42 ArrayRef<uint16_t> Array1c = Array1.copy(Alloc); in TEST()
44 EXPECT_TRUE(Array1.equals(Array1c)); in TEST()
45 EXPECT_NE(Array1.data(), Array1c.data()); in TEST()
/external/llvm/test/Analysis/BasicAA/
Dfeaturetest.ll15 %Array1 = alloca i32, i32 100
18 call void @external(i32* %Array1)
21 %pointer = getelementptr i32, i32* %Array1, i64 %A
/external/clang/lib/AST/
DASTImporter.cpp353 const ArrayType *Array1, in IsArrayStructurallyEquivalent() argument
356 Array1->getElementType(), in IsArrayStructurallyEquivalent()
359 if (Array1->getSizeModifier() != Array2->getSizeModifier()) in IsArrayStructurallyEquivalent()
361 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers()) in IsArrayStructurallyEquivalent()
464 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1); in IsStructurallyEquivalent() local
466 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize())) in IsStructurallyEquivalent()
469 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) in IsStructurallyEquivalent()
482 const VariableArrayType *Array1 = cast<VariableArrayType>(T1); in IsStructurallyEquivalent() local
485 Array1->getSizeExpr(), Array2->getSizeExpr())) in IsStructurallyEquivalent()
488 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) in IsStructurallyEquivalent()
[all …]
/external/v8/test/cctest/
Dtest-types.cc227 TypeHandle Array1(TypeHandle element) { in Array1() function in Types
626 TypeHandle array = T.Array1(type); in Array()
633 TypeHandle array = T.Array1(type); in Array()
642 TypeHandle array1 = T.Array1(type1); in Array()
643 TypeHandle array2 = T.Array1(type2); in Array()
990 TypeHandle type1 = T.Array1(element1); in Is()
991 TypeHandle type2 = T.Array1(element2); in Is()