Lines Matching refs:bitIndex
84 static ANTLR_UINT8 bitIndex[256] = local
107 return bitIndex;
347 const ANTLR_UINT8* bitIndex = this->get_bitIndex(); local
355 depth = 56 + bitIndex[((xorKey & 0xFF00000000000000)>>56)];
359 depth = 48 + bitIndex[((xorKey & 0x00FF000000000000)>>48)];
366 depth = 40 + bitIndex[((xorKey & 0x0000FF0000000000)>>40)];
370 depth = 32 + bitIndex[((xorKey & 0x000000FF00000000)>>32)];
381 depth = 24 + bitIndex[((xorKey & 0x00000000FF000000)>>24)];
385 depth = 16 + bitIndex[((xorKey & 0x0000000000FF0000)>>16)];
392 depth = 8 + bitIndex[((xorKey & 0x0000000000000FF00)>>8)];
396 depth = bitIndex[xorKey & 0x00000000000000FF];