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

  /external/clang/test/CodeGen/
debug-info-iv.c 5 static void test_indvars(int *Array1, int Array2[100][200]) {
7 Array1[1] = Array2[3][6] = 12345;
17 Array2[i][j/3] = Array2[i][i];
  /external/clang/lib/AST/
ASTImporter.cpp 345 const ArrayType *Array2) {
348 Array2->getElementType()))
350 if (Array1->getSizeModifier() != Array2->getSizeModifier())
352 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
448 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2);
449 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
452 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
466 const VariableArrayType *Array2 = cast<VariableArrayType>(T2);
468 Array1->getSizeExpr(), Array2->getSizeExpr()))
471 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
    [all...]

Completed in 57 milliseconds