Searched refs:xorKey (Results 1 - 1 of 1) sorted by path

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c1921 ANTLR3_INTKEY xorKey; local
2017 xorKey = (key ^ nextNode->key); /* Gives 1 bits only where they differ then we find the left most 1 bit*/
2022 if (xorKey & 0xFFFFFFFF00000000)
2024 if (xorKey & 0xFFFF000000000000)
2026 if (xorKey & 0xFF00000000000000)
2028 depth = 56 + bitIndex[((xorKey & 0xFF00000000000000)>>56)];
2032 depth = 48 + bitIndex[((xorKey & 0x00FF000000000000)>>48)];
2037 if (xorKey & 0x0000FF0000000000)
2039 depth = 40 + bitIndex[((xorKey & 0x0000FF0000000000)>>40)];
2043 depth = 32 + bitIndex[((xorKey
[all...]

Completed in 258 milliseconds