Lines Matching defs:count
64 static av_always_inline void float_copy(float *dst, const float *src, int count)
66 // Copy 'count' floats from src to dst
67 const float *loop_end = src + count;
70 // count must be a multiple of 8
71 av_assert2(count % 8 == 0);
287 static av_always_inline void fmul_and_reverse(float *dst, const float *src0, const float *src1, int count)
289 /* Multiply 'count' floats in src0 by src1 and store the results in dst in reverse */
292 // count must be a multiple of 4
293 av_assert2(count % 4 == 0);
296 src0 += count - 1;
297 src1 += count - 1;
299 for (; count > 0; count -= 4){