Home | History | Annotate | Download | only in src

Lines Matching defs:back

180 	int front, back;
187 /* first move the exact pathnames to the back */
189 back = data->nspec - 1;
194 memcpy(&spec_copy[back--], &data->spec_arr[i], len);
200 * array switching the front and back element.
202 back = data->nspec - 1;
203 while (front < back) {
206 /* move the back to the front */
207 memcpy(&spec_copy[front], &spec_copy[back], len);
208 /* put the old front in the back */
209 memcpy(&spec_copy[back], &spec, len);
211 back--;