Lines Matching refs:input_offset

80     const int32_t input_offset = dw_conv_params->input_offset;  in arm_depthwise_conv_3x3_s8()  local
120 const uint32_t lhs_offset_s16x2 = PKHBT(input_offset, input_offset, 16); in arm_depthwise_conv_3x3_s8()
187 out_buff0 += ((int8_t)in_val + input_offset) * (int8_t)ker_val; in arm_depthwise_conv_3x3_s8()
188 … out_buff1 += ((int8_t)(in_val >> 8) + input_offset) * (int8_t)(ker_val >> 8); in arm_depthwise_conv_3x3_s8()
189 … out_buff2 += ((int8_t)(in_val >> 16) + input_offset) * (int8_t)(ker_val >> 16); in arm_depthwise_conv_3x3_s8()
190 … out_buff3 += ((int8_t)(in_val >> 24) + input_offset) * (int8_t)(ker_val >> 24); in arm_depthwise_conv_3x3_s8()
196 out_buff0 += ((int8_t)in_val + input_offset) * (int8_t)ker_val; in arm_depthwise_conv_3x3_s8()
197 out_buff1 += ((int8_t)(in_val >> 8) + input_offset) * (int8_t)(ker_val >> 8); in arm_depthwise_conv_3x3_s8()
198 out_buff2 += ((int8_t)(in_val >> 16) + input_offset) * (int8_t)(ker_val >> 16); in arm_depthwise_conv_3x3_s8()
199 out_buff3 += ((int8_t)(in_val >> 24) + input_offset) * (int8_t)(ker_val >> 24); in arm_depthwise_conv_3x3_s8()
206 out_buff0 += ((int8_t)in_val + input_offset) * (int8_t)ker_val; in arm_depthwise_conv_3x3_s8()
207 … out_buff1 += ((int8_t)(in_val >> 8) + input_offset) * (int8_t)(ker_val >> 8); in arm_depthwise_conv_3x3_s8()
208 … out_buff2 += ((int8_t)(in_val >> 16) + input_offset) * (int8_t)(ker_val >> 16); in arm_depthwise_conv_3x3_s8()
209 … out_buff3 += ((int8_t)(in_val >> 24) + input_offset) * (int8_t)(ker_val >> 24); in arm_depthwise_conv_3x3_s8()
254 out_buff += (*(input_ptr) + input_offset) * *(kernel_ptr); in arm_depthwise_conv_3x3_s8()
257 out_buff += (*(input_ptr + input_ch) + input_offset) * *(kernel_ptr + input_ch); in arm_depthwise_conv_3x3_s8()
261 … out_buff += (*(input_ptr + (input_ch << 1)) + input_offset) * *(kernel_ptr + (input_ch << 1)); in arm_depthwise_conv_3x3_s8()