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

  /external/llvm/include/llvm/CodeGen/
Analysis.h 33 /// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
37 unsigned ComputeLinearIndex(Type *Ty,
42 inline unsigned ComputeLinearIndex(Type *Ty,
45 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
  /external/llvm/lib/CodeGen/
Analysis.cpp 30 /// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
34 unsigned llvm::ComputeLinearIndex(Type *Ty,
49 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
50 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex);
59 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
60 CurIndex = ComputeLinearIndex(EltTy, nullptr, nullptr, CurIndex);

Completed in 291 milliseconds