Searched refs:thisline (Results 1 - 4 of 4) sorted by relevance

/haiku-fatelf/src/bin/coreutils/src/
H A Dcomm.c246 /* thisline[i] points to the linebuffer holding the next available line local
248 struct linebuffer *thisline[2];
278 thisline[i] = readlinebuffer (all_line[i][alt[i][0]], streams[i]);
283 while (thisline[0] || thisline[1])
290 if (!thisline[0])
292 else if (!thisline[1])
297 order = xmemcoll (thisline[0]->buffer, thisline[0]->length - 1,
298 thisline[
[all...]
H A Duniq.c283 struct linebuffer *thisline, *prevline;
290 thisline = &lb1;
293 initbuffer (thisline);
312 if (readlinebuffer_delim (thisline, stdin, delimiter) == 0)
314 thisfield = find_field (thisline);
315 thislen = thisline->length - 1 - (thisfield - thisline->buffer);
319 fwrite (thisline->buffer, sizeof (char),
320 thisline->length, stdout);
322 SWAP_LINES (prevline, thisline);
282 struct linebuffer *thisline, *prevline; local
[all...]
/haiku-fatelf/src/bin/gawk/
H A Dawkgram.y77 static char *thisline = NULL;
1136 if (thisline == NULL) {
1146 thisline = cp;
1153 thisline = end_of_file_line;
1154 bp = thisline + strlen(thisline);
1165 msg("%.*s", (int) (bp - thisline), thisline);
1178 count = (bp - thisline) + strlen(mesg) + 2 + 1;
1184 scan = thisline;
[all...]
H A Dawkgram.c203 static char *thisline = NULL; variable
2975 if (thisline == NULL) {
2985 thisline = cp;
2992 thisline = end_of_file_line;
2993 bp = thisline + strlen(thisline);
3004 msg("%.*s", (int) (bp - thisline), thisline);
3017 count = (bp - thisline) + strlen(mesg) + 2 + 1;
3023 scan = thisline;
[all...]

Completed in 63 milliseconds