Lines Matching refs:result
227 int32_t result; in arm_depthwise_conv_fast_s16() local
372 result = arm_nn_requantize_s64(acc_1, output_mult_1, *output_shift++); in arm_depthwise_conv_fast_s16()
373 result = MAX(result, output_activation_min); in arm_depthwise_conv_fast_s16()
374 result = MIN(result, output_activation_max); in arm_depthwise_conv_fast_s16()
375 *output++ = (int16_t)result; in arm_depthwise_conv_fast_s16()
377 result = arm_nn_requantize_s64(acc_2, output_mult_2, *output_shift++); in arm_depthwise_conv_fast_s16()
378 result = MAX(result, output_activation_min); in arm_depthwise_conv_fast_s16()
379 result = MIN(result, output_activation_max); in arm_depthwise_conv_fast_s16()
380 *output++ = (int16_t)result; in arm_depthwise_conv_fast_s16()
382 result = arm_nn_requantize_s64(acc_3, output_mult_3, *output_shift++); in arm_depthwise_conv_fast_s16()
383 result = MAX(result, output_activation_min); in arm_depthwise_conv_fast_s16()
384 result = MIN(result, output_activation_max); in arm_depthwise_conv_fast_s16()
385 *output++ = (int16_t)result; in arm_depthwise_conv_fast_s16()
387 result = arm_nn_requantize_s64(acc_4, output_mult_4, *output_shift++); in arm_depthwise_conv_fast_s16()
388 result = MAX(result, output_activation_min); in arm_depthwise_conv_fast_s16()
389 result = MIN(result, output_activation_max); in arm_depthwise_conv_fast_s16()
390 *output++ = (int16_t)result; in arm_depthwise_conv_fast_s16()
413 … result = arm_nn_requantize_s64(acc, REDUCE_MULTIPLIER(*output_mult), *output_shift++); in arm_depthwise_conv_fast_s16()
415 result = MAX(result, output_activation_min); in arm_depthwise_conv_fast_s16()
416 result = MIN(result, output_activation_max); in arm_depthwise_conv_fast_s16()
417 *output++ = (int16_t)result; in arm_depthwise_conv_fast_s16()