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

  /external/llvm/unittests/ADT/
ArrayRefTest.cpp 41 ArrayRef<uint16_t> Array2 = makeArrayRef(Words2, 5);
43 ArrayRef<uint16_t> Array2c = Array2.copy(Alloc);;
46 EXPECT_TRUE(Array2.equals(Array2c));
47 EXPECT_NE(Array2.data(), Array2c.data());
  /frameworks/rs/api/
rs_for_each.spec 74 field: uint32_t array2Start, "Starting index in the Array2 dimension."
75 field: uint32_t array2End, "Ending index (exclusive) in the Array2 dimension."
206 summary: Index in the Array2 dimension for the specified context
208 Returns the index in the Array2 dimension of the cell being processed,
212 Returns 0 if the Array2 dimension is not present.
261 summary: Size of the Array2 dimension for the specified context
263 Returns the size of the Array2 dimension for the specified context.
266 Returns 0 if the Array2 dimension is not present.
  /external/clang/lib/AST/
ASTImporter.cpp 354 const ArrayType *Array2) {
357 Array2->getElementType()))
359 if (Array1->getSizeModifier() != Array2->getSizeModifier())
361 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
465 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2);
466 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
469 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
483 const VariableArrayType *Array2 = cast<VariableArrayType>(T2);
485 Array1->getSizeExpr(), Array2->getSizeExpr()))
488 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
    [all...]

Completed in 437 milliseconds