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

  /external/llvm/lib/Transforms/ObjCARC/
BlotMapVector.h 22 typedef std::vector<std::pair<KeyT, ValueT>> VectorTy;
24 VectorTy Vector;
27 typedef typename VectorTy::iterator iterator;
28 typedef typename VectorTy::const_iterator const_iterator;
42 for (typename VectorTy::const_iterator I = Vector.begin(), E = Vector.end();
  /frameworks/compile/slang/
slang_rs_check_ast.cpp 60 const clang::VectorType *VectorTy;
64 VectorTy = clang::dyn_cast_or_null<clang::VectorType>(Ty);
66 if (VectorTy) {
68 VectorTy->getElementType()->getUnqualifiedDesugaredType());
79 if (VectorTy) {
80 switch (VectorTy->getNumElements()) {
133 if (VectorTy) {
134 DiagBuilder << VectorTy->getNumElements();
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 436 VectorType *VectorTy = arrayTypeToVecType(AllocaTy);
439 << *AllocaTy << " -> " << *VectorTy << '\n');
448 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
458 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 256 /// VectorTy - This tracks the type that we should promote the vector to if
259 VectorType *VectorTy;
269 VectorTy(0), HadNonMemTransferAccess(false) { }
301 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
312 assert(VectorTy && "Missing type for vector scalar.");
314 << *VectorTy << '\n');
315 NewTy = VectorTy; // Use the vector type.
332 /// (VectorTy) so far at the offset specified by Offset (which is specified in
342 /// and stores would mutate the memory. We mark this by setting VectorTy
371 (!VectorTy || EltSize == VectorTy->getElementType(
    [all...]
ObjCARC.cpp 64 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
65 VectorTy Vector;
68 typedef typename VectorTy::iterator iterator;
69 typedef typename VectorTy::const_iterator const_iterator;
83 for (typename VectorTy::const_iterator I = Vector.begin(),
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 950 milliseconds