Searched refs:lhs_high (Results 1 – 2 of 2) sorted by relevance
/cmsis-nn-latest/Source/NNSupportFunctions/ |
D | arm_nn_mat_mult_nt_t_s4.c | 404 int32_t lhs_low, rhs_low0, rhs_high0, lhs_high, rhs_low1, rhs_high1; in arm_nn_mat_mult_nt_t_s4() 412 lhs_high = arm_nn_read_s8x4_ia((const int8_t **)&lhs_ptr); 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() 414 lhs_high = SXTAB16_RORn(ui32_lhs_offset_i16x2, lhs_high, 8); in arm_nn_mat_mult_nt_t_s4() 418 res00 = SMLAD(rhs_high0, lhs_high, res00); in arm_nn_mat_mult_nt_t_s4() 420 res01 = SMLAD(rhs_high1, lhs_high, res01); in arm_nn_mat_mult_nt_t_s4() 423 lhs_high = arm_nn_read_s8x4((const int8_t *)&lhs_ptr[lhs_cols_off1]); 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() 425 lhs_high = SXTAB16_RORn(ui32_lhs_offset_i16x2, lhs_high, 8); in arm_nn_mat_mult_nt_t_s4() 429 res10 = SMLAD(rhs_high0, lhs_high, res10); in arm_nn_mat_mult_nt_t_s4() [all …]
|
D | arm_nn_vec_mat_mult_t_s4.c | 186 const int32_t lhs_high = (int8_t)lhs_ptr[0] + lhs_offset; in arm_nn_vec_mat_mult_t_s4() local 188 spillover0 = lhs_high * rhs_high0; in arm_nn_vec_mat_mult_t_s4() 189 spillover1 = lhs_high * rhs_high1; in arm_nn_vec_mat_mult_t_s4() 319 int32_t lhs_high, rhs_high0, rhs_low0, lhs_low, rhs_high1, rhs_low1; in arm_nn_vec_mat_mult_t_s4() local 325 lhs_high = arm_nn_read_s8x4_ia((const int8_t **)&lhs_ptr); in arm_nn_vec_mat_mult_t_s4() 326 lhs_low = SXTAB16(lhs_offset_s16x2, lhs_high); in arm_nn_vec_mat_mult_t_s4() 327 lhs_high = SXTAB16_RORn(lhs_offset_s16x2, lhs_high, 8); in arm_nn_vec_mat_mult_t_s4() 330 res0 = SMLAD(lhs_high, rhs_high0, res0); in arm_nn_vec_mat_mult_t_s4() 332 res1 = SMLAD(lhs_high, rhs_high1, res1); in arm_nn_vec_mat_mult_t_s4() 366 const int32_t lhs_high = (int8_t)lhs_ptr[0] + lhs_offset; in arm_nn_vec_mat_mult_t_s4() local [all …]
|