Home
last modified time | relevance | path

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

/GUIX-v6.2.1/common/src/
Dgx_utility_math_sqrt.c96 UINT square_root; in _gx_utility_math_sqrt() local
100 square_root = 0xB504; in _gx_utility_math_sqrt()
106 square_root = (UINT)sqrt_table[value >> 24] << 8; in _gx_utility_math_sqrt()
110 square_root = (UINT)sqrt_table[value >> 22] << 7; in _gx_utility_math_sqrt()
114 square_root = (UINT)sqrt_table[value >> 20] << 6; in _gx_utility_math_sqrt()
118 square_root = (UINT)sqrt_table[value >> 18] << 5; in _gx_utility_math_sqrt()
121 square_root = (square_root + 1 + (value / square_root)) >> 1; in _gx_utility_math_sqrt()
122 square_root = (square_root + 1 + (value / square_root)) >> 1; in _gx_utility_math_sqrt()
128 square_root = (UINT)sqrt_table[value >> 16] << 4; in _gx_utility_math_sqrt()
132 square_root = (UINT)sqrt_table[value >> 14] << 3; in _gx_utility_math_sqrt()
[all …]