Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCMac.cpp5198 const unsigned char MaxNibble = 0xF; in buildBitmap() local
5224 if (lastSkip < MaxNibble) { in buildBitmap()
5225 unsigned claimed = std::min(MaxNibble - lastSkip, numWords); in buildBitmap()
5232 while (numWords >= MaxNibble) { in buildBitmap()
5233 buffer.push_back(MaxNibble << SkipShift); in buildBitmap()
5234 numWords -= MaxNibble; in buildBitmap()
5249 if (lastScan < MaxNibble) { in buildBitmap()
5250 unsigned claimed = std::min(MaxNibble - lastScan, numWords); in buildBitmap()
5257 while (numWords >= MaxNibble) { in buildBitmap()
5258 buffer.push_back(MaxNibble << ScanShift); in buildBitmap()
[all …]