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 29 /// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
33 unsigned llvm::ComputeLinearIndex(Type *Ty,
48 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
49 CurIndex = ComputeLinearIndex(*EI, 0, 0, CurIndex);
58 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
59 CurIndex = ComputeLinearIndex(EltTy, 0, 0, CurIndex);

Completed in 35 milliseconds