OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pow2_table
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.c
34
float
pow2_table
[POW2_TABLE_SIZE];
variable
42
pow2_table
[i] = (float) pow(2.0, (i - POW2_TABLE_OFFSET) / POW2_TABLE_SCALE);
u_math.h
147
extern float
pow2_table
[POW2_TABLE_SIZE];
203
mpart =
pow2_table
[POW2_TABLE_OFFSET + (int)(fpart * POW2_TABLE_SCALE)];
/external/mesa3d/src/gallium/auxiliary/util/
u_math.c
34
float
pow2_table
[POW2_TABLE_SIZE];
variable
42
pow2_table
[i] = (float) pow(2.0, (i - POW2_TABLE_OFFSET) / POW2_TABLE_SCALE);
u_math.h
168
extern float
pow2_table
[POW2_TABLE_SIZE];
224
mpart =
pow2_table
[POW2_TABLE_OFFSET + (int)(fpart * POW2_TABLE_SCALE)];
Completed in 303 milliseconds