Home | History | Annotate | Download | only in src

Lines Matching defs:bitIndex

1711 static ANTLR3_UINT8 bitIndex[256] = 
2028 depth = 56 + bitIndex[((xorKey & 0xFF00000000000000)>>56)];
2032 depth = 48 + bitIndex[((xorKey & 0x00FF000000000000)>>48)];
2039 depth = 40 + bitIndex[((xorKey & 0x0000FF0000000000)>>40)];
2043 depth = 32 + bitIndex[((xorKey & 0x000000FF00000000)>>32)];
2054 depth = 24 + bitIndex[((xorKey & 0x00000000FF000000)>>24)];
2058 depth = 16 + bitIndex[((xorKey & 0x0000000000FF0000)>>16)];
2065 depth = 8 + bitIndex[((xorKey & 0x0000000000000FF00)>>8)];
2069 depth = bitIndex[xorKey & 0x00000000000000FF];