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

  /external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 65 } ITState;
66 bool inITBlock() { return ITState.CurPosition != ~0U;}
71 unsigned TZ = CountTrailingZeros_32(ITState.Mask);
72 if (++ITState.CurPosition == 5 - TZ)
73 ITState.CurPosition = ~0U; // Done with the IT block after this.
224 ITState.CurPosition = ~0U;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 166 } ITState;
167 bool inITBlock() { return ITState.CurPosition != ~0U; }
169 return ITState.CurPosition == 4 - countTrailingZeros(ITState.Mask);
175 unsigned TZ = countTrailingZeros(ITState.Mask);
176 if (++ITState.CurPosition == 5 - TZ)
177 ITState.CurPosition = ~0U; // Done with the IT block after this.
383 ITState.CurPosition = ~0U;
    [all...]

Completed in 124 milliseconds