HomeSort by relevance Sort by last modified time
    Searched refs:Array1 (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;
10 Array1[i] = i; /* Step by non unit amount */
13 Array1[i] = i+4; /* Step with an offset */
  /external/clang/lib/AST/
ASTImporter.cpp 344 const ArrayType *Array1,
347 Array1->getElementType(),
350 if (Array1->getSizeModifier() != Array2->getSizeModifier())
352 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
447 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1);
449 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
452 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
465 const VariableArrayType *Array1 = cast<VariableArrayType>(T1);
468 Array1->getSizeExpr(), Array2->getSizeExpr()))
471 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)
    [all...]

Completed in 105 milliseconds