Home | History | Annotate | Download | only in src

Lines Matching defs:bitIndex

1752 static ANTLR3_UINT8 bitIndex[256] = 
2068 depth = 56 + bitIndex[((xorKey & 0xFF00000000000000)>>56)];
2072 depth = 48 + bitIndex[((xorKey & 0x00FF000000000000)>>48)];
2079 depth = 40 + bitIndex[((xorKey & 0x0000FF0000000000)>>40)];
2083 depth = 32 + bitIndex[((xorKey & 0x000000FF00000000)>>32)];
2094 depth = 24 + bitIndex[((xorKey & 0x00000000FF000000)>>24)];
2098 depth = 16 + bitIndex[((xorKey & 0x0000000000FF0000)>>16)];
2105 depth = 8 + bitIndex[((xorKey & 0x0000000000000FF00)>>8)];
2109 depth = bitIndex[xorKey & 0x00000000000000FF];