Searched defs:Array2 (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/CodeGen/
H A Ddebug-info-iv.c5 static void test_indvars(int *Array1, int Array2[100][200]) { argument
7 Array1[1] = Array2[3][6] = 12345;
17 Array2[i][j/3] = Array2[i][i];
/external/clang/lib/AST/
H A DASTImporter.cpp338 const ArrayType *Array2) {
341 Array2->getElementType()))
343 if (Array1->getSizeModifier() != Array2->getSizeModifier())
345 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
441 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2); local
442 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
445 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
459 const VariableArrayType *Array2 = cast<VariableArrayType>(T2); local
461 Array1->getSizeExpr(), Array2->getSizeExpr()))
464 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
336 IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context, const ArrayType *Array1, const ArrayType *Array2) argument
472 const DependentSizedArrayType *Array2 = cast<DependentSizedArrayType>(T2); local
[all...]

Completed in 60 milliseconds