Home
last modified time | relevance | path

Searched refs:TableIdx (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Support/
DJamCRC.cpp94 int TableIdx = (CRC ^ Byte) & 0xff; in update() local
95 CRC = CRCTable[TableIdx] ^ (CRC >> 8); in update()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DJamCRC.cpp94 int TableIdx = (CRC ^ Byte) & 0xff; in update() local
95 CRC = CRCTable[TableIdx] ^ (CRC >> 8); in update()
/external/clang/lib/Lex/
DPTHLexer.cpp194 uint32_t TableIdx; in SkipBlock() local
201 TableIdx = endian::readNext<uint32_t, little, aligned>(CurPPCondPtr); in SkipBlock()
210 if (HashEntryI < LastHashTokPtr && TableIdx) { in SkipBlock()
215 PPCond + TableIdx*(sizeof(uint32_t)*2); in SkipBlock()
224 TableIdx = endian::readNext<uint32_t, little, aligned>(NextPPCondPtr); in SkipBlock()
231 assert(TableIdx && "No jumping from #endifs."); in SkipBlock()
234 const unsigned char* NextPPCondPtr = PPCond + TableIdx*(sizeof(uint32_t)*2); in SkipBlock()