Searched refs:ONE_OVER1 (Results 1 – 4 of 4) sorted by relevance
81 const int32_t shifted_scale = ONE_OVER1((sum << headroom) - (1 << 31)); in arm_softmax_u8()
93 const int32_t shifted_scale = ONE_OVER1((sum > 0 ? sum << headroom : 0) - (1 << 31)); in arm_nn_softmax_common_s8()
152 const int32_t shifted_scale = ONE_OVER1((sum > 0 ? sum << headroom : 0) - (1 << 31)); in arm_softmax_s8()
1282 #define ONE_OVER1(x) arm_nn_one_over_one_plus_x_for_x_in_0_1((x)) macro