Lines Matching refs:j
80 int i,j,k,n,cols; in arm_mat_solve_upper_triangular_f16() local
99 for(j=0; j+7 < cols; j +=8) in arm_mat_solve_upper_triangular_f16()
101 vecA = vld1q_f16(&pA[i * cols + j]); in arm_mat_solve_upper_triangular_f16()
105 vecX = vld1q_f16(&pX[cols*k+j]); in arm_mat_solve_upper_triangular_f16()
118 vst1q(&pX[i*cols+j],vecA); in arm_mat_solve_upper_triangular_f16()
121 for(; j < cols; j ++) in arm_mat_solve_upper_triangular_f16()
123 a_col = &pA[j]; in arm_mat_solve_upper_triangular_f16()
131 tmp -= (_Float16)ut_row[k] * (_Float16)pX[cols*k+j]; in arm_mat_solve_upper_triangular_f16()
139 pX[i*cols+j] = tmp; in arm_mat_solve_upper_triangular_f16()
176 int i,j,k,n,cols; in arm_mat_solve_upper_triangular_f16() local
188 for(j=0; j < cols; j ++) in arm_mat_solve_upper_triangular_f16()
190 a_col = &pA[j]; in arm_mat_solve_upper_triangular_f16()
200 tmp -= (_Float16)ut_row[k] * (_Float16)pX[cols*k+j]; in arm_mat_solve_upper_triangular_f16()
208 pX[i*cols+j] = tmp; in arm_mat_solve_upper_triangular_f16()