Lines Matching refs:vec
63 /* This function searches from vec[] (of length vec_length) integer values of n. The indices to
69 static int find_equal_int16(int16_t idx[], int16_t vec[], int n, int vec_length,
76 if (vec[i] == n) {
89 static int32_t find_max_abs_int32(int32_t vec[], int vec_length)
92 int64_t amax = (vec[0] > 0) ? vec[0] : -vec[0];
95 amax = (vec[i] > amax) ? vec[i] : amax;
96 amax = (-vec[i] > amax) ? -vec[i] : amax;