Home | History | Annotate | Download | only in vendor

Lines Matching refs:log2_table

3174 		 * log2_table allows fast division of a power of two in the
3177 * (x / divisor) becomes (x >> log2_table[divisor - 1]).
3179 static const unsigned char log2_table[] = {
3191 regind = (diff >> log2_table[size - 1]);
3193 regind = diff >> (8 + log2_table[(size >> 8) - 1]);