Lines Matching refs:back
13 * expression back-end when we started supporting PCRE2. regex.h defines a
204 int front, back;
211 /* first move the exact pathnames to the back */
213 back = data->nspec - 1;
218 memcpy(&spec_copy[back--], &data->spec_arr[i], len);
224 * that part of the array switching the front and back element.
226 back = data->nspec - 1;
227 while (front < back) {
230 /* move the back to the front */
231 memcpy(&spec_copy[front], &spec_copy[back], len);
232 /* put the old front in the back */
233 memcpy(&spec_copy[back], &spec, len);
235 back--;