Lines Matching refs:end
123 static void fillarray(char *dst, int start, int end, int skip)
127 if (end < 0) {
137 } while (start++ != end);
151 int start, end, skip = 0;
177 // Get end position.
178 if (!ctoken) end = -1; // e.g. N1,N2,N3
181 if ((end = getval(ctoken, min, (min ? max : max-1))) < 0) goto ERROR;
182 end = min ? (end-1) : end;
183 } else if ((end = getindex(ctoken, max)) < 0) goto ERROR;
184 if (end == start) end = -1;
186 fillarray(dst, start, end, skip);