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

  /external/llvm/include/llvm/CodeGen/
Analysis.h 40 unsigned CurIndex = 0);
44 unsigned CurIndex = 0) {
45 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
  /external/llvm/lib/CodeGen/
Analysis.cpp 38 unsigned CurIndex) {
41 return CurIndex;
50 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
51 CurIndex = ComputeLinearIndex(*EI, 0, 0, CurIndex);
53 return CurIndex;
60 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
61 CurIndex = ComputeLinearIndex(EltTy, 0, 0, CurIndex);
63 return CurIndex;
    [all...]
  /external/clang/lib/Sema/
IdentifierResolver.cpp 46 unsigned int CurIndex;
49 IdDeclInfoMap() : CurPool(0), CurIndex(POOL_SIZE) {}
421 if (CurIndex == POOL_SIZE) {
423 CurIndex = 0;
425 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
429 ++CurIndex;

Completed in 222 milliseconds