Lines Matching defs:front
204 int front, back;
212 front = 0;
216 memcpy(&spec_copy[front++], &data->spec_arr[i], len);
223 * order. Since 'front' is now the first of the 'exact' we can run
224 * that part of the array switching the front and back element.
227 while (front < back) {
228 /* save the front */
229 memcpy(&spec, &spec_copy[front], len);
230 /* move the back to the front */
231 memcpy(&spec_copy[front], &spec_copy[back], len);
232 /* put the old front in the back */
234 front++;