Searched defs:log2_table (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_math.c47 float log2_table[LOG2_TABLE_SIZE]; variable
55 log2_table[i] = (float) log2(1.0 + i * (1.0 / LOG2_TABLE_SCALE));
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.c47 float log2_table[LOG2_TABLE_SIZE]; variable
55 log2_table[i] = (float) log2(1.0 + i * (1.0 / LOG2_TABLE_SCALE));
/external/chromium_org/third_party/jemalloc/chromium/
H A Djemalloc.c3185 * log2_table allows fast division of a power of two in the
3188 * (x / divisor) becomes (x >> log2_table[divisor - 1]).
3190 static const unsigned char log2_table[] = { local
3202 regind = (diff >> log2_table[size - 1]);
3204 regind = diff >> (8 + log2_table[(size >> 8) - 1]);
/external/chromium_org/third_party/jemalloc/vendor/
H A Djemalloc.c3174 * 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[] = { local
3191 regind = (diff >> log2_table[size - 1]);
3193 regind = diff >> (8 + log2_table[(size >> 8) - 1]);

Completed in 207 milliseconds