Searched refs:IX (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DEnumeratedArray.h27 for (IndexType IX = 0; IX < Size; ++IX) {
28 Underlying[IX] = V;
32 auto IX = static_cast<const IndexType>(Index); local
33 assert(IX >= 0 && IX < Size && "Index is out of bounds.");
34 return Underlying[IX];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp509 BBInfo(unsigned IX) : Group(this), Index(IX) {} argument
956 UseBBInfo(unsigned IX) : BBInfo(IX), CountValid(false) {} argument
958 UseBBInfo(unsigned IX, uint64_t C) argument
959 : BBInfo(IX), CountValue(C), CountValid(true) {}
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp3871 #define SKIP_BITFIELDS(IX, ENDIX, VEC) { \
3872 while ((IX < ENDIX) && VEC[IX]->isBitField()) \
3873 ++IX; \
3874 if (IX < ENDIX) \
3875 --IX; \

Completed in 76 milliseconds