Lines Matching refs:int32x4_t
39 const int32x4_t vimagic = vdupq_n_s32(INT32_C(0x4B400000) - (int32_t)(uint32_t) zero_point); in xnn_requantize_fp32__neon()
42 const int32x4_t x = vld1q_s32(input); in xnn_requantize_fp32__neon()
43 const int32x4_t y = vld1q_s32(input + 4); in xnn_requantize_fp32__neon()
44 const int32x4_t z = vld1q_s32(input + 8); in xnn_requantize_fp32__neon()
45 const int32x4_t w = vld1q_s32(input + 12); in xnn_requantize_fp32__neon()
63 const int32x4_t x_rounded = vcvtnq_s32_f32(x_scaled); in xnn_requantize_fp32__neon()
64 const int32x4_t y_rounded = vcvtnq_s32_f32(y_scaled); in xnn_requantize_fp32__neon()
65 const int32x4_t z_rounded = vcvtnq_s32_f32(z_scaled); in xnn_requantize_fp32__neon()
66 const int32x4_t w_rounded = vcvtnq_s32_f32(w_scaled); in xnn_requantize_fp32__neon()
95 …const int32x4_t x_biased = vsubq_s32(vreinterpretq_s32_f32(vaddq_f32(x_clamped, vfmagic)), vimagic… in xnn_requantize_fp32__neon()
96 …const int32x4_t y_biased = vsubq_s32(vreinterpretq_s32_f32(vaddq_f32(y_clamped, vfmagic)), vimagic… in xnn_requantize_fp32__neon()
97 …const int32x4_t z_biased = vsubq_s32(vreinterpretq_s32_f32(vaddq_f32(z_clamped, vfmagic)), vimagic… in xnn_requantize_fp32__neon()
98 …const int32x4_t w_biased = vsubq_s32(vreinterpretq_s32_f32(vaddq_f32(w_clamped, vfmagic)), vimagic… in xnn_requantize_fp32__neon()