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

  /frameworks/compile/slang/
slang_rs_check_ast.cpp 58 const clang::VectorType *VectorTy;
62 VectorTy = clang::dyn_cast_or_null<clang::VectorType>(Ty);
64 if (VectorTy) {
66 VectorTy->getElementType()->getUnqualifiedDesugaredType());
77 if (VectorTy) {
78 switch (VectorTy->getNumElements()) {
132 if (VectorTy) {
133 DiagBuilder << VectorTy->getNumElements();
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 288 /// VectorTy - This tracks the type that we should promote the vector to if
291 VectorType *VectorTy;
307 ScalarKind(Unknown), VectorTy(0), HadNonMemTransferAccess(false),
343 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
354 assert(VectorTy && "Missing type for vector scalar.");
356 << *VectorTy << '\n');
357 NewTy = VectorTy; // Use the vector type.
385 /// (VectorTy) so far at the offset specified by Offset (which is specified in
395 /// and stores would mutate the memory. We mark this by setting VectorTy
424 (!VectorTy || EltSize == VectorTy->getElementType(
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 59 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
61 VectorTy Vector;
64 typedef typename VectorTy::iterator iterator;
65 typedef typename VectorTy::const_iterator const_iterator;
79 for (typename VectorTy::const_iterator I = Vector.begin(),
    [all...]

Completed in 217 milliseconds