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/clang/lib/Sema/
IdentifierResolver.cpp 45 unsigned int CurIndex;
48 IdDeclInfoMap() : CurPool(0), CurIndex(POOL_SIZE) {}
395 if (CurIndex == POOL_SIZE) {
397 CurIndex = 0;
399 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
403 ++CurIndex;
  /external/llvm/lib/CodeGen/
Analysis.cpp 36 unsigned CurIndex) {
39 return CurIndex;
48 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
49 CurIndex = ComputeLinearIndex(*EI, 0, 0, CurIndex);
51 return CurIndex;
58 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
59 CurIndex = ComputeLinearIndex(EltTy, 0, 0, CurIndex);
61 return CurIndex;
    [all...]

Completed in 146 milliseconds