Home
last modified time | relevance | path

Searched refs:lhs_low (Results 1 – 2 of 2) sorted by relevance

/cmsis-nn-latest/Source/NNSupportFunctions/
Darm_nn_mat_mult_nt_t_s4.c404 int32_t lhs_low, rhs_low0, rhs_high0, lhs_high, rhs_low1, rhs_high1; in arm_nn_mat_mult_nt_t_s4()
413 lhs_low = SXTAB16(ui32_lhs_offset_i16x2, lhs_high); in arm_nn_mat_mult_nt_t_s4()
417 res00 = SMLAD(rhs_low0, lhs_low, res00); in arm_nn_mat_mult_nt_t_s4()
419 res01 = SMLAD(rhs_low1, lhs_low, res01); in arm_nn_mat_mult_nt_t_s4()
424 lhs_low = SXTAB16(ui32_lhs_offset_i16x2, lhs_high); in arm_nn_mat_mult_nt_t_s4()
427 res10 = SMLAD(rhs_low0, lhs_low, res10); in arm_nn_mat_mult_nt_t_s4()
428 res11 = SMLAD(rhs_low1, lhs_low, res11); in arm_nn_mat_mult_nt_t_s4()
437 lhs_low = SXTAB16(ui32_lhs_offset_i16x2, lhs_high); in arm_nn_mat_mult_nt_t_s4()
441 res00 = SMLAD(rhs_low0, lhs_low, res00); in arm_nn_mat_mult_nt_t_s4()
443 res01 = SMLAD(rhs_low1, lhs_low, res01); in arm_nn_mat_mult_nt_t_s4()
[all …]
Darm_nn_vec_mat_mult_t_s4.c319 int32_t lhs_high, rhs_high0, rhs_low0, lhs_low, rhs_high1, rhs_low1; in arm_nn_vec_mat_mult_t_s4() local
326 lhs_low = SXTAB16(lhs_offset_s16x2, lhs_high); in arm_nn_vec_mat_mult_t_s4()
329 res0 = SMLAD(lhs_low, rhs_low0, res0); in arm_nn_vec_mat_mult_t_s4()
331 res1 = SMLAD(lhs_low, rhs_low1, res1); in arm_nn_vec_mat_mult_t_s4()
364 const int32_t lhs_low = (int8_t)lhs_ptr[0] + lhs_offset; in arm_nn_vec_mat_mult_t_s4() local
369 res0 += lhs_low * rhs_low0; in arm_nn_vec_mat_mult_t_s4()
371 res1 += lhs_low * rhs_low1; in arm_nn_vec_mat_mult_t_s4()
413 int32_t lhs_high, rhs_high0, rhs_low0, lhs_low, rhs_high1, rhs_low1; in arm_nn_vec_mat_mult_t_s4() local
420 lhs_low = SXTAB16(lhs_offset_s16x2, lhs_high); in arm_nn_vec_mat_mult_t_s4()
423 res0 = SMLAD(lhs_low, rhs_low0, res0); in arm_nn_vec_mat_mult_t_s4()
[all …]