Searched refs:headroom (Results 1 – 3 of 3) sorted by relevance
150 const int32_t headroom = __CLZ((uint32_t)sum); in arm_softmax_s8() local151 const int32_t bits_over_unit = ACCUM_BITS - headroom + 23; in arm_softmax_s8()152 const int32_t shifted_scale = ONE_OVER1((sum > 0 ? sum << headroom : 0) - (1 << 31)); in arm_softmax_s8()235 const int32_t headroom = __CLZ(sum); in arm_softmax_s8()236 const int32_t bits_over_unit = ACCUM_BITS - headroom + 23; in arm_softmax_s8()237 const int32_t shifted_scale = ONE_OVER1((sum > 0 ? sum << headroom : 0) - (1 << 31)); in arm_softmax_s8()
79 const int32_t headroom = __CLZ((uint32_t)sum); in arm_softmax_u8() local80 const int32_t bits_over_unit = ACCUM_BITS - headroom + 23; in arm_softmax_u8()81 const int32_t shifted_scale = ONE_OVER1((sum << headroom) - (1 << 31)); in arm_softmax_u8()
122 float headroom; member