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 351 const ArrayType *Array1,
354 Array1->getElementType(),
357 if (Array1->getSizeModifier() != Array2->getSizeModifier())
359 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
461 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1);
463 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
466 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
479 const VariableArrayType *Array1 = cast<VariableArrayType>(T1);
482 Array1->getSizeExpr(), Array2->getSizeExpr()))
485 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)
    [all...]

Completed in 153 milliseconds