Searched refs:index_word (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/util/ |
D | softfloat.c | 52 #define index_word(total, n) ((total) - 1 - (n)) macro 61 #define index_word(total, n) (n) macro 809 m_out[index_word(4, 1)] = z0 >> 32; in _mesa_softfloat_mul_f64_to_f128_m() 810 m_out[index_word(4, 0)] = z0; in _mesa_softfloat_mul_f64_to_f128_m() 812 m_out[index_word(4, 3)] = z64 >> 32; in _mesa_softfloat_mul_f64_to_f128_m() 813 m_out[index_word(4, 2)] = z64; in _mesa_softfloat_mul_f64_to_f128_m() 908 m = (uint64_t) m_128[index_word(4, 3)] << 32 | m_128[index_word(4, 2)]; in _mesa_double_mul_rtz() 909 if (m_128[index_word(4, 1)] || m_128[index_word(4, 0)]) in _mesa_double_mul_rtz() 1051 m = (uint64_t) m_128[index_word(4, 3)] << 32 | m_128[index_word(4, 2)]; in _mesa_double_fma_rtz() 1065 if (m_128[index_word(4, 1)] || m_128[index_word(4, 0)]) in _mesa_double_fma_rtz() [all …]
|