Home | History | Annotate | Download | only in src

Lines Matching full:front

180 	int front, back;
188 front = 0;
192 memcpy(&spec_copy[front++], &data->spec_arr[i], len);
199 * since 'front' is now the first of the 'exact' we can run that part of the
200 * array switching the front and back element.
203 while (front < back) {
204 /* save the front */
205 memcpy(&spec, &spec_copy[front], len);
206 /* move the back to the front */
207 memcpy(&spec_copy[front], &spec_copy[back], len);
208 /* put the old front in the back */
210 front++;