Home
last modified time | relevance | path

Searched refs:LOG2_TABLE_SIZE (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/util/
Du_math.c58 float log2_table[LOG2_TABLE_SIZE];
65 for (i = 0; i < LOG2_TABLE_SIZE; i++) in init_log2_table()
Du_math.h152 #define LOG2_TABLE_SIZE (LOG2_TABLE_SCALE + 1) macro
153 extern float log2_table[LOG2_TABLE_SIZE];
/external/virglrenderer/src/gallium/auxiliary/util/
Du_math.c56 float log2_table[LOG2_TABLE_SIZE];
63 for (i = 0; i < LOG2_TABLE_SIZE; i++)
Du_math.h300 #define LOG2_TABLE_SIZE (LOG2_TABLE_SCALE + 1)
301 extern float log2_table[LOG2_TABLE_SIZE];
/external/libvpx/libvpx/vp9/encoder/
Dvp9_non_greedy_mv.c15 #define LOG2_TABLE_SIZE 1024 macro
16 static const int log2_table[LOG2_TABLE_SIZE] = {
321 if (v < LOG2_TABLE_SIZE) { in log2_approximation()
327 assert(LOG2_TABLE_SIZE == 1 << 10); in log2_approximation()
329 return slope * (v - LOG2_TABLE_SIZE) + (10 << LOG2_PRECISION); in log2_approximation()