Symbol: lines
bin/ksh/history.c
1005
int lines = 0;
bin/ksh/history.c
1017
if (++lines == no) {
bin/ksh/history.c
837
int lines;
bin/ksh/history.c
886
lines = hist_count_lines(base+2, hsize-2);
bin/ksh/history.c
887
if (lines > histsize) {
bin/ksh/history.c
916
int lines = 0;
bin/ksh/history.c
935
lines++, state = shdr;
bin/ksh/history.c
939
return lines;
bin/sh/parser.c
875
int lines = plinno;
bin/sh/parser.c
946
plinno - lines, sq ? "quoted " : "", eofmark,
bin/sh/parser.c
950
return (plinno - lines);
bin/sh/show.c
193
replace(lines[i].iov_base, NULL);
bin/sh/show.c
194
tracedata.lines[i].iov_len = 0;
bin/sh/show.c
826
fp->lines[fp->nxtiov].iov_base = p;
bin/sh/show.c
827
fp->lines[fp->nxtiov].iov_len = strlen(p);
bin/sh/show.c
830
} else if (fp->blen && fp->blen >= fp->lines[fp->nxtiov].iov_len) {
bin/sh/show.c
836
if (fp->lines[fp->nxtiov].iov_len == 0) {
bin/sh/show.c
844
fp->lines[fp->nxtiov].iov_base = p;
bin/sh/show.c
845
fp->lines[fp->nxtiov].iov_len = 2 * TR_STD_WIDTH;
bin/sh/show.c
849
p = (char *)fp->lines[fp->nxtiov].iov_base + fp->blen++;
bin/sh/show.c
859
fp->lines[fp->nxtiov++].iov_len = fp->blen;
bin/sh/show.c
86
struct iovec lines[TR_IOVECS]; /* filled, flling, pending buffers */
bin/sh/show.c
879
fp->lines[niov].iov_len = fp->blen;
bin/sh/show.c
888
written = writev(fp->tfd, fp->lines, niov);
bin/sh/show.c
890
free(fp->lines[i].iov_base);
bin/sh/show.c
891
fp->lines[i].iov_base = NULL;
bin/sh/show.c
892
fp->lines[i].iov_len = 0;
bin/sh/show.c
896
free(fp->lines[niov].iov_base);
bin/sh/show.c
897
fp->lines[niov].iov_base = NULL;
bin/sh/show.c
898
fp->lines[niov].iov_len = 0;
bin/sh/show.c
906
fp->lines[0].iov_base = fp->lines[niov].iov_base;
bin/sh/show.c
907
fp->lines[0].iov_len = fp->lines[niov].iov_len;
bin/sh/show.c
908
fp->lines[niov].iov_base = NULL;
bin/sh/show.c
909
fp->lines[niov].iov_len = 0;
games/cgram/cgram.c
172
static struct stringarray lines;
games/cgram/cgram.c
185
return (int)lines.v[cursor_y].len;
games/cgram/cgram.c
198
return lines.v[cursor_y].s[cursor_x - 1];
games/cgram/cgram.c
208
return lines.v[cursor_y].s[cursor_x];
games/cgram/cgram.c
221
stringarray_add(&lines, &line);
games/cgram/cgram.c
235
stringarray_dup(&sollines, &lines);
games/cgram/cgram.c
237
extent_y = (int)lines.num;
games/cgram/cgram.c
239
extent_x = imax(extent_x, (int)lines.v[i].len);
games/cgram/cgram.c
285
for (char *p = lines.v[y].s; *p != '\0'; p++) {
games/cgram/cgram.c
302
for (int y = 0; y < (int)lines.num; y++) {
games/cgram/cgram.c
303
for (char *p = lines.v[y].s; *p != '\0'; p++) {
games/cgram/cgram.c
319
for (size_t i = 0; i < lines.num; i++)
games/cgram/cgram.c
320
if (strcmp(lines.v[i].s, sollines.v[i].s) != 0)
games/cgram/cgram.c
336
int len = (int)lines.v[offset_y + y].len;
games/cgram/cgram.c
338
const char *line = lines.v[offset_y + y].s;
games/cgram/cgram.c
553
stringarray_init(&lines);
games/cgram/cgram.c
591
stringarray_done(&lines);
games/ching/printching/printching.c
146
if (table[i].lines == lower)
games/ching/printching/printching.c
148
if (table[i].lines == upper)
games/ching/printching/printching.c
68
int lines; /* encoded value of lines */
games/hack/hack.terminfo.c
88
LI = lines;
games/rain/rain.c
109
ypos[j] = random() % lines + 2;
games/rain/rain.c
121
y = random() % lines + 2;
games/rain/rain.c
157
lines = LINES - 4;
games/rain/rain.c
159
if (lines == 0) lines++;
games/rain/rain.c
63
static long lines;
games/tetris/screen.c
191
Rows = lines;
lib/libcurses/PSD.doc/appen.C
71
The next example follows the lines of the previous one but extends then to
lib/libedit/filecomplete.c
546
size_t line, lines, col, cols, thisguy;
lib/libedit/filecomplete.c
564
lines = (num + cols - 1) / cols;
lib/libedit/filecomplete.c
572
for (line = 0; line < lines; line++) {
lib/libedit/filecomplete.c
574
thisguy = line + col * lines;
libexec/ftpd/ftpcmd.y
1770
int columns, lines;
libexec/ftpd/ftpcmd.y
1778
lines = (NCMDS + columns - 1) / columns;
libexec/ftpd/ftpcmd.y
1779
for (i = 0; i < lines; i++) {
libexec/ftpd/ftpcmd.y
1782
c = ctab + j * lines + i;
libexec/ftpd/ftpcmd.y
1793
if (c + lines >= &ctab[NCMDS])
sbin/disklabel/interact.c
674
size_t i, entry, lines;
sbin/disklabel/interact.c
703
lines = (numentries + columns - 1) / columns;
sbin/disklabel/interact.c
705
for (i = 0; i < lines; i++) {
sbin/disklabel/interact.c
711
entry += lines;
sbin/restore/interactive.c
658
int i, j, precision, columns, lines;
sbin/restore/interactive.c
689
lines = (nentry + columns - 1) / columns;
sbin/restore/interactive.c
690
for (i = 0; i < lines; i++) {
sbin/restore/interactive.c
692
fp = &list[j * lines + i];
sbin/restore/interactive.c
707
if (fp + lines >= endlist) {
sys/arch/amiga/dev/ite_rh.c
147
screen_up(struct ite_softc *ip, int top, int bottom, int lines)
sys/arch/amiga/dev/ite_rh.c
154
if (top + lines >= bottom) {
sys/arch/amiga/dev/ite_rh.c
159
RZ3AlphaCopy(ip->grf, 0, top+lines, 0, top, ip->cols, bottom-top-lines+1);
sys/arch/amiga/dev/ite_rh.c
160
RZ3AlphaErase(ip->grf, 0, bottom - lines + 1, ip->cols, lines);
sys/arch/amiga/dev/ite_rh.c
165
screen_down (struct ite_softc *ip, int top, int bottom, int lines)
sys/arch/amiga/dev/ite_rh.c
172
if (top + lines >= bottom) {
sys/arch/amiga/dev/ite_rh.c
177
RZ3AlphaCopy(ip->grf, 0, top, 0, top+lines, ip->cols, bottom-top-lines+1);
sys/arch/amiga/dev/ite_rh.c
178
RZ3AlphaErase(ip->grf, 0, top, ip->cols, lines);
sys/arch/amiga/dev/ite_rt.c
146
screen_up(struct ite_softc *ip, int top, int bottom, int lines)
sys/arch/amiga/dev/ite_rt.c
156
if (top + lines >= bottom)
sys/arch/amiga/dev/ite_rt.c
192
long fromloc = (top+lines) * (md->TX / 16);
sys/arch/amiga/dev/ite_rt.c
199
short x = (1 + bottom - (top + lines)) * (md->TX / 16) - 1;
sys/arch/amiga/dev/ite_rt.c
241
f += (1 + bottom - lines) * md->TX * 2;
sys/arch/amiga/dev/ite_rt.c
253
short x = (lines * (md->TX/16)) - 1;
sys/arch/amiga/dev/ite_rt.c
256
p += (1 + bottom - lines) * (md->TX/4);
sys/arch/amiga/dev/ite_rt.c
274
screen_down(struct ite_softc *ip, int top, int bottom, int lines)
sys/arch/amiga/dev/ite_rt.c
284
if (top + lines >= bottom)
sys/arch/amiga/dev/ite_rt.c
304
long toloc = (top + lines) * (md->TX / 16);
sys/arch/amiga/dev/ite_rt.c
317
short x = (1 + bottom - (top + lines)) * (md->TX / 16) - 1;
sys/arch/amiga/dev/ite_rt.c
318
p += (1 + bottom - (top + lines)) * md->TX;
sys/arch/amiga/dev/ite_rt.c
370
short x = (lines * (md->TX/16)) - 1;
sys/arch/amiga/dev/ite_ul.c
300
static void screen_up(struct ite_softc *ip, int top, int bottom, int lines)
sys/arch/amiga/dev/ite_ul.c
309
printf("screen_up %d %d %d ->",top,bottom,lines);
sys/arch/amiga/dev/ite_ul.c
316
if (top + lines >= bottom)
sys/arch/amiga/dev/ite_ul.c
328
cmd[6] = (top-lines) * ip->ftheight; /* dst y */
sys/arch/amiga/dev/ite_ul.c
331
ulowell_clear(ip, bottom-lines+1, 0, lines-1, ip->cols);
sys/arch/amiga/dev/ite_ul.c
334
static void screen_down(struct ite_softc *ip, int top, int bottom, int lines)
sys/arch/amiga/dev/ite_ul.c
343
printf("screen_down %d %d %d ->",top,bottom,lines);
sys/arch/amiga/dev/ite_ul.c
351
if (top + lines >= bottom)
sys/arch/amiga/dev/ite_ul.c
361
cmd[4] = (bottom - top - lines) * ip->ftheight; /* h */
sys/arch/amiga/dev/ite_ul.c
363
cmd[6] = (top + lines) * ip->ftheight; /* dst y */
sys/arch/amiga/dev/ite_ul.c
366
ulowell_clear(ip, top, 0, lines, ip->cols);
sys/arch/arm/xscale/pxa2x0_lcd.c
106
int lines;
sys/arch/arm/xscale/pxa2x0_lcd.c
131
lines = info->panel_height/2 + info->extra_lines;
sys/arch/arm/xscale/pxa2x0_lcd.c
133
lines = info->panel_height + info->extra_lines;
sys/arch/arm/xscale/pxa2x0_lcd.c
136
(lines-1)
sys/arch/evbppc/nintendo/dev/wiifb.c
101
.lines = 525,
sys/arch/evbppc/nintendo/dev/wiifb.c
107
.lines = 525,
sys/arch/evbppc/nintendo/dev/wiifb.c
113
.lines = 625,
sys/arch/evbppc/nintendo/dev/wiifb.c
72
u_int lines;
sys/arch/ia64/stand/common/bootstrap.h
347
extern int pager_output(const char *lines);
sys/arch/m68k/060sp/dist/fplsp.s
8331
# if these 2 lines weren't here, the correct answer would be returned
sys/arch/m68k/060sp/dist/fpsp.s
8437
# if these 2 lines weren't here, the correct answer would be returned
sys/arch/prep/prep/platform.c
242
int lines[MAX_PCI_INTRS] = { 0, 0, 0, 0 };
sys/arch/prep/prep/platform.c
254
lines[j] = 1;
sys/arch/prep/prep/platform.c
262
if (line == 0xffff || lines[j] == 0)
sys/arch/sgimips/gio/grtwo.c
312
int lines = 4864 / length;
sys/arch/sgimips/gio/grtwo.c
317
if ((y2 <= y1) || (height < lines)) {
sys/arch/sgimips/gio/grtwo.c
320
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, lines);
sys/arch/sgimips/gio/grtwo.c
328
from_y = y1 + height - lines;
sys/arch/sgimips/gio/grtwo.c
329
to_y = y2 + height - lines;
sys/arch/sgimips/gio/grtwo.c
330
temp_height = MIN(height, lines);
sys/arch/sgimips/gio/grtwo.c
335
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, lines);
sys/arch/sgimips/gio/grtwo.c
343
height = MIN(height, lines);
sys/arch/sgimips/gio/newport.c
627
uint16_t vep,lines;
sys/arch/sgimips/gio/newport.c
642
lines = vc2_read_ram(dc, vep++);
sys/arch/sgimips/gio/newport.c
644
if (lines == 0)
sys/arch/sgimips/gio/newport.c
663
dc->dc_yres += lines;
sys/ddb/db_command.c
765
size_t i, j, w, columns, lines, numcmds, width=0;
sys/ddb/db_command.c
788
lines = (numcmds + columns - 1) / columns;
sys/ddb/db_command.c
790
for (i = 0; i < lines; i++) {
sys/ddb/db_command.c
792
p = table[j * lines + i].name;
sys/ddb/db_command.c
795
if (j * lines + i + lines >= numcmds) {
sys/dev/ic/hd44780_subr.c
512
hd44780_info()->lines
sys/dev/ic/hd44780_subr.c
515
hd44780_info()->lines *= 2;
sys/dev/ic/hd44780var.h
72
uint8_t lines;
sys/dev/ic/vga.c
1457
vga_scroll(void *v, void *cookie, int lines)
sys/dev/ic/vga.c
1463
if (lines == 0) {
sys/dev/ic/vga.c
1483
p = (scr->pcs.visibleoffset - ul + we) % we + lines *
sys/dev/pci/coram.c
1000
printf("%s %d lines\n", __func__, lines);
sys/dev/pci/coram.c
1004
for (i = 0; i < lines; i++) {
sys/dev/pci/coram.c
1027
csc->csc_cmds + CMDS_O_CDTS, (lines * 16) >> 3); /* XXX magic */
sys/dev/pci/coram.c
1043
csc->csc_cnt2, (lines * 16) >> 3);
sys/dev/pci/coram.c
933
coram_risc_buffer(struct coram_softc *sc, uint32_t bpl, uint32_t lines)
sys/dev/pci/coram.c
938
size = 1 + (bpl * lines) / PAGE_SIZE + lines;
sys/dev/pci/coram.c
992
unsigned int i, lines;
sys/dev/pci/coram.c
998
lines = csc->csc_fifosz / bpl;
sys/dev/pci/cxdtv.c
689
cxdtv_risc_buffer(struct cxdtv_softc *sc, uint32_t bpl, uint32_t lines)
sys/dev/pci/cxdtv.c
696
size = 1 + (bpl * lines) / PAGE_SIZE + lines;
sys/dev/pci/cxdtv.c
755
unsigned int i, lines;
sys/dev/pci/cxdtv.c
764
lines = csc->csc_fifosz / bpl;
sys/dev/pci/cxdtv.c
765
device_printf(sc->sc_dev, "%s %d lines\n", __func__, lines);
sys/dev/pci/cxdtv.c
768
for (i = 0; i < lines; i++) {
sys/dev/pci/cxdtv.c
789
csc->csc_cmds + CX_CMDS_O_CDTS, (lines * 16) >> 3); /* XXX magic */
sys/dev/pci/cxdtv.c
806
csc->csc_cnt2, (lines * 16) >> 3);
sys/dev/pci/tga.c
1280
int32_t color, lines, pixels;
sys/dev/pci/tga.c
1285
lines = num * ri->ri_font->fontheight;
sys/dev/pci/tga.c
1316
while (lines--) {
sys/dev/pci/tga.c
1330
int32_t color, lines, pixels;
sys/dev/pci/tga.c
1335
lines = ri->ri_font->fontheight;
sys/dev/pci/tga.c
1366
while (lines--) {
sys/dev/scsipi/ss_mustek.c
518
int error, lines, bytes_per_line;
sys/dev/scsipi/ss_mustek.c
540
lines = _3ltol(data.lines);
sys/dev/scsipi/ss_mustek.c
541
if (lines != ss->sio.scan_lines) {
sys/dev/scsipi/ss_mustek.c
543
lines, ss->sio.scan_lines);
sys/dev/scsipi/ss_mustek.c
546
if (bytes_per_line * lines != ss->sio.scan_window_size) {
sys/dev/scsipi/ss_mustek.c
548
bytes_per_line * lines, ss->sio.scan_window_size);
sys/dev/scsipi/ss_mustek.h
122
u_int8_t lines[3]; /* LSB */
sys/dev/wscons/wsdisplay.c
531
int lines;
sys/dev/wscons/wsdisplay.c
539
lines = 0;
sys/dev/wscons/wsdisplay.c
541
lines = (op & WSDISPLAY_SCROLL_LOW) ?
sys/dev/wscons/wsdisplay.c
545
lines = -(lines);
sys/dev/wscons/wsdisplay.c
550
sc->sc_focus->scr_dconf->emulcookie, lines);
sys/dev/wscons/wsdisplay_glyphcache.c
103
gc->gc_lines = lines;
sys/dev/wscons/wsdisplay_glyphcache.c
60
glyphcache_init(glyphcache *gc, int first, int lines, int width,
sys/dev/wscons/wsdisplay_glyphcache.c
63
return glyphcache_init_align(gc, first, lines, width, cellwidth, cellheight,
sys/dev/wscons/wsdisplay_glyphcache.c
68
glyphcache_init_align(glyphcache *gc, int first, int lines, int width,
sys/dev/wscons/wsdisplay_glyphcache.c
73
if (lines < 0) lines = 0;
sys/dev/wscons/wsdisplay_glyphcache.c
79
gc->gc_lines = lines;
sys/dev/wscons/wsdisplay_glyphcache.c
92
glyphcache_init_x(glyphcache *gc, int x, int y, int lines, int width,
sys/dev/wscons/wsdisplay_glyphcache.c
97
if (lines < 0) lines = 0;
tests/lib/libcurses/slave/curses_commands.c
1353
ARG_INT(lines);
tests/lib/libcurses/slave/curses_commands.c
1359
report_ptr(derwin(win, lines, cols, y, x));
tests/lib/libcurses/slave/curses_commands.c
2234
ARG_INT(lines);
tests/lib/libcurses/slave/curses_commands.c
2240
report_ptr(newwin(lines, cols, begin_y, begin_x));
tests/lib/libcurses/slave/curses_commands.c
2617
ARG_INT(lines);
tests/lib/libcurses/slave/curses_commands.c
2623
report_ptr(subpad(pad, lines, cols, begin_y, begin_x));
tests/lib/libcurses/slave/curses_commands.c
2632
ARG_INT(lines);
tests/lib/libcurses/slave/curses_commands.c
2638
report_ptr(subwin(win, lines, cols, begin_y, begin_x));
tests/lib/libcurses/slave/curses_commands.c
3313
ARG_INT(lines);
tests/lib/libcurses/slave/curses_commands.c
3317
report_return(wresize(win, lines, cols));
tests/usr.bin/indent/edge_cases.c
125
my($class, $fname, $lines, $text, $physlines) = @_;
tests/usr.bin/indent/edge_cases.c
126
my($self) = ([$fname, $lines, $text, $physlines, false, [], [], {
tests/usr.bin/indent/edge_cases.c
90
my ($class, $fname, $lines, $text, $physlines) = @_;
tests/usr.bin/indent/edge_cases.c
91
my ($self) = ([$fname, $lines, $text, $physlines, false, [], [], {}]);
usr.bin/col/col.c
114
static LINE *lines;
usr.bin/col/col.c
183
lines = l = alloc_line();
usr.bin/col/col.c
278
l = lines = lnew;
usr.bin/col/col.c
346
l = lines;
usr.bin/col/col.c
382
l = lines;
usr.bin/col/col.c
383
lines = l->l_next;
usr.bin/col/col.c
393
if (lines)
usr.bin/col/col.c
394
lines->l_prev = NULL;
usr.bin/ftp/util.c
911
size_t columns, lines;
usr.bin/ftp/util.c
927
lines = (sl->sl_cur + columns - 1) / columns;
usr.bin/ftp/util.c
928
for (i = 0; i < lines; i++) {
usr.bin/ftp/util.c
930
p = sl->sl_str[j * lines + i];
usr.bin/ftp/util.c
933
if (j * lines + i + lines >= sl->sl_cur) {
usr.bin/mail/cmd1.c
503
size_t lines;
usr.bin/mail/cmd1.c
513
for (lines = 0; lines < c && lines <= args->topl; lines++) {
usr.bin/mail/complete.c
110
lines = (sl->sl_cur + columns - 1) / columns;
usr.bin/mail/complete.c
112
for (i = 0; i < lines; i++) {
usr.bin/mail/complete.c
114
p = sl->sl_str[j * lines + i];
usr.bin/mail/complete.c
117
if (j * lines + i + lines >= sl->sl_cur) {
usr.bin/mail/complete.c
94
size_t i, j, columns, lines;
usr.bin/mail/thread.c
1423
if (lp->key.lines > rp->key.lines)
usr.bin/mail/thread.c
1426
if (lp->key.lines < rp->key.lines)
usr.bin/mail/thread.c
1520
marray[i].key.lines = use_hlines ? mp->m_lines - mp->m_blines :
usr.bin/mail/thread.c
781
long lines; /* a long sort key (typically a message line count) */
usr.bin/netstat/mbuf.c
226
for (mo = (void *) data, lines = 0; len >= sizeof(*mo);
usr.bin/netstat/mbuf.c
244
if ((lines % 24) == 0 || lines > 24) {
usr.bin/netstat/mbuf.c
247
lines = 1;
usr.bin/netstat/mbuf.c
257
lines++;
usr.bin/netstat/mbuf.c
269
lines += 2;
usr.bin/netstat/mbuf.c
94
int i, lines;
usr.bin/pr/pr.c
1731
((lines=atoi(eoptarg)) < 1)) {
usr.bin/pr/pr.c
1865
if (!lines)
usr.bin/pr/pr.c
1866
lines = LINES;
usr.bin/pr/pr.c
1871
if (lines <= HEADLEN + TAILLEN)
usr.bin/pr/pr.c
1874
lines -= HEADLEN + TAILLEN;
usr.bin/pr/pr.c
1880
if (lines == 1)
usr.bin/pr/pr.c
1883
if (lines & 1)
usr.bin/pr/pr.c
1885
lines /= 2;
usr.bin/pr/pr.c
225
if (inskip(inf, pgnm, lines))
usr.bin/pr/pr.c
245
while (linecnt < lines) {
usr.bin/pr/pr.c
291
if (linecnt && prtail(lines-linecnt-lrgln, lrgln))
usr.bin/pr/pr.c
358
if ((buf = malloc((unsigned)lines*mxlen*sizeof(char))) == NULL)
usr.bin/pr/pr.c
373
mvc = lines * clcnt;
usr.bin/pr/pr.c
380
if ((lstdat = malloc((unsigned)lines*sizeof(char *))) == NULL)
usr.bin/pr/pr.c
386
if ((indy = malloc((unsigned)lines*sizeof(int))) == NULL)
usr.bin/pr/pr.c
388
if ((lindy = malloc((unsigned)lines*sizeof(int))) == NULL)
usr.bin/pr/pr.c
399
for (j = 0; j < lines; ++j) {
usr.bin/pr/pr.c
419
if (inskip(inf, pgnm, lines))
usr.bin/pr/pr.c
494
if (++j >= lines)
usr.bin/pr/pr.c
576
if (prtail((lines - pln), 0))
usr.bin/pr/pr.c
588
pln = lines;
usr.bin/pr/pr.c
617
if (pln && prtail((lines - pln), 0))
usr.bin/pr/pr.c
692
if (inskip(inf, pgnm, lines))
usr.bin/pr/pr.c
706
for (i = 0; i < lines; ++i) {
usr.bin/pr/pr.c
771
if (i && prtail(lines-i, 0))
usr.bin/pr/pr.c
851
if (pgnm && (inskip(fbuf[j], pgnm, lines)))
usr.bin/pr/pr.c
903
for (i = 0; i < lines; ++i) {
usr.bin/pr/pr.c
93
static int lines; /* number of lines per page */
usr.bin/pr/pr.c
994
if (i && prtail(lines-i, 0))
usr.bin/shuffle/shuffle.c
110
char **lines = emalloc(sizeof(char *) * maxlines);
usr.bin/shuffle/shuffle.c
121
lines[nlines] = emalloc(size + 1);
usr.bin/shuffle/shuffle.c
122
(void)memcpy(lines[nlines], line, size);
usr.bin/shuffle/shuffle.c
123
lines[nlines++][size] = '\0';
usr.bin/shuffle/shuffle.c
126
lines = erealloc(lines, (sizeof(char *) * maxlines));
usr.bin/shuffle/shuffle.c
129
lines[nlines] = NULL;
usr.bin/shuffle/shuffle.c
131
*linesp = lines;
usr.bin/shuffle/shuffle.c
164
char **lines = NULL;
usr.bin/shuffle/shuffle.c
196
get_lines(fname, &lines, &nlines);
usr.bin/shuffle/shuffle.c
198
lines = argv;
usr.bin/shuffle/shuffle.c
215
printf("%s", lines[shuffle[i]]);
usr.bin/sortinfo/sortinfo.c
108
printf("%s", s->lines[i]);
usr.bin/sortinfo/sortinfo.c
160
qsort(s->lines, s->nlines, sizeof(*s->lines), strptrcmp);
usr.bin/sortinfo/sortinfo.c
52
char **lines;
usr.bin/sortinfo/sortinfo.c
70
slist[nsections].lines = ecalloc(slist[nsections].maxlines,
usr.bin/sortinfo/sortinfo.c
71
sizeof(*slist[nsections].lines));
usr.bin/sortinfo/sortinfo.c
80
s->lines = erealloc(s->lines, s->maxlines * sizeof(*s->lines));
usr.bin/sortinfo/sortinfo.c
82
s->lines[s->nlines++] = line;
usr.bin/tail/read.c
140
} *lines;
usr.bin/tail/read.c
147
if ((lines = malloc(off * sizeof(*lines))) == NULL)
usr.bin/tail/read.c
150
memset(lines, 0, sizeof(*lines) * off);
usr.bin/tail/read.c
165
if (lines[recno].blen < cnt) {
usr.bin/tail/read.c
166
if ((n = realloc(lines[recno].l,
usr.bin/tail/read.c
169
lines[recno].l = n;
usr.bin/tail/read.c
170
lines[recno].blen = cnt + 256;
usr.bin/tail/read.c
172
memmove(lines[recno].l, sp, lines[recno].len = cnt);
usr.bin/tail/read.c
182
free(lines);
usr.bin/tail/read.c
187
lines[recno].l = sp;
usr.bin/tail/read.c
188
lines[recno].len = cnt;
usr.bin/tail/read.c
197
WR(lines[cnt].l, lines[cnt].len);
usr.bin/tail/read.c
200
WR(lines[cnt].l, lines[cnt].len);
usr.bin/tail/read.c
204
WR(lines[cnt].l, lines[cnt].len);
usr.bin/tail/read.c
206
WR(lines[cnt].l, lines[cnt].len);
usr.bin/tail/read.c
208
free(lines);
usr.bin/tset/tset.c
157
nlines = lines;
usr.bin/wc/wc.c
330
print_counts(wc_count_t lines, wc_count_t words, wc_count_t chars,
usr.bin/wc/wc.c
335
(void)printf(WCFMT, (WCCAST)lines);
usr.sbin/iostat/iostat.c
207
int ch, hdrcnt, hdroffset, ndrives, lines;
usr.sbin/iostat/iostat.c
362
lines = ndrives;
usr.sbin/iostat/iostat.c
365
lines = 1;
usr.sbin/iostat/iostat.c
368
lines = 1;
usr.sbin/iostat/iostat.c
372
if (do_header || (winlines != 0 && (hdrcnt -= lines) <= 0)) {
usr.sbin/lpr/lpc/lpc.c
270
size_t columns, width = 0, lines;
usr.sbin/lpr/lpc/lpc.c
283
lines = (NCMDS + columns - 1) / columns;
usr.sbin/lpr/lpc/lpc.c
284
for (i = 0; i < lines; i++) {
usr.sbin/lpr/lpc/lpc.c
286
c = cmdtab + j * lines + i;
usr.sbin/lpr/lpc/lpc.c
288
if (c + lines >= &cmdtab[NCMDS - 1]) {
usr.sbin/npf/npfctl/npf_parse.y
235
: lines
usr.sbin/npf/npfctl/npf_parse.y
240
lines
usr.sbin/npf/npfctl/npf_parse.y
241
: lines sepline line
usr.sbin/sysinst/part_edit.c
104
int l, l1, lines;
usr.sbin/sysinst/part_edit.c
109
lines = 0;
usr.sbin/sysinst/part_edit.c
110
l = maxline(errmsg, &lines);
usr.sbin/sysinst/part_edit.c
111
l1 = maxline(cont, &lines);
usr.sbin/sysinst/part_edit.c
115
msg_fmt_prompt_win("%s.\n%s", -1, 18, l + 5, 2+lines,
usr.sbin/timed/timedc/timedc.c
216
int columns, width = 0, lines;
usr.sbin/timed/timedc/timedc.c
230
lines = (NCMDS + columns - 1) / columns;
usr.sbin/timed/timedc/timedc.c
231
for (i = 0; i < lines; i++) {
usr.sbin/timed/timedc/timedc.c
233
c = cmdtab + j * lines + i;
usr.sbin/timed/timedc/timedc.c
235
if (c + lines >= &cmdtab[NCMDS]) {