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

  /external/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/bindings/ocaml/llvm/
llvm_ocaml.c 374 CAMLprim value llvm_vector_size(LLVMTypeRef VectorTy) {
375 return Val_int(LLVMGetVectorSize(VectorTy));
    [all...]
  /external/llvm/include/llvm-c/
Core.h 431 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp 373 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
374 return unwrap<VectorType>(VectorTy)->getNumElements();
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 265 milliseconds