Lines Matching refs:g_FastPos
19 static Byte[] g_FastPos = new Byte[1 << 11];
25 g_FastPos[0] = 0;
26 g_FastPos[1] = 1;
31 g_FastPos[c] = slotFast;
38 return g_FastPos[pos];
40 return (UInt32)(g_FastPos[pos >> 10] + 20);
41 return (UInt32)(g_FastPos[pos >> 20] + 40);
47 return (UInt32)(g_FastPos[pos >> 6] + 12);
49 return (UInt32)(g_FastPos[pos >> 16] + 32);
50 return (UInt32)(g_FastPos[pos >> 26] + 52);