Searched refs:math_clz_nonzero_u32 (Results 1 – 10 of 10) sorted by relevance
26 const uint32_t vn = (math_clz_nonzero_u32(vx) | 1) ^ 31; in xnn_math_u32_sqrt__scalar_tflm()
27 const uint32_t vs = 16 - (math_clz_nonzero_u32(vx - 1) >> 1); in xnn_math_u32_sqrt__scalar_clz_newton()
30 const uint32_t vn = math_clz_nonzero_u32(vx); in xnn_math_u32_sqrt__scalar_hashemian()
25 const uint32_t log2x = math_clz_nonzero_u32(x) ^ 31; in xnn_u32_log32()
22 const uint32_t log2x = math_clz_nonzero_u32(x) ^ 31;
102 const uint32_t log2x = math_clz_nonzero_u32(scaled) ^ 31; // log2 of scaled in Test()
276 XNN_INLINE static uint32_t math_clz_nonzero_u32(uint32_t x) { in math_clz_nonzero_u32() function