Home | History | Annotate | Download | only in tests

Lines Matching defs:count

21 	unsigned int count;
36 count = 20;
37 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
40 EXPECT_EQ(20, count);
42 in_offset += count;
44 count = 20;
45 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
48 EXPECT_EQ(15, count);
61 unsigned int count;
76 count = 5;
77 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
80 EXPECT_EQ(5, count);
82 in_offset += count;
84 count = 6;
87 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
90 EXPECT_EQ(6, count);
92 in_offset += count;
94 count = 89;
95 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
98 EXPECT_EQ(89, count);
111 unsigned int count;
126 count = 6;
127 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
130 EXPECT_EQ(6, count);
132 in_offset += count;
134 count = 4;
137 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
140 EXPECT_EQ(4, count);
142 in_offset += count;
144 count = 90;
145 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
159 unsigned int count;
168 count = 0;
169 rc = linear_resampler_resample(lr, in_buf, &count,
172 EXPECT_EQ(0, count);
177 unsigned int count;
186 count = BUF_SIZE;
187 rc = linear_resampler_resample(lr, in_buf, &count,
190 EXPECT_EQ(0, count);
196 unsigned int count, unsigned int dst_stride,
201 for (i = 0; i < count; i++) {