/src/games/banner/ |
banner.c | 59 #define NCHARS 128 63 static const int asc_ptr[NCHARS] = { 1025 static int debug, linen, max, nchars, pc, term, trace; variable in typeref:typename:int 1080 nchars = strlen(message); 1085 nchars = strlen(message); 1086 message[nchars--] = '\0'; /* get rid of newline */ 1114 for (i = 0; i < nchars; i++) 1115 if ((u_char) message[i] >= NCHARS || 1128 for (i = 0; i < nchars; i++) {
|
/src/usr.bin/aiomixer/ |
draw.c | 253 int j, nchars; local in function:draw_levels 269 nchars = (levels->level[i] * 271 for (j = 0; j < nchars; ++j) 277 nchars = getmaxx(control->widgetpad) - 11 - nchars; 278 for (j = 0; j < nchars; ++j)
|
/src/usr.bin/uniq/ |
uniq.c | 204 int infield, nchars, nfields; local in function:skip 215 for (nchars = numchars; nchars-- && *str; ++str, --ls)
|
/src/usr.bin/login/ |
common.c | 135 int fd, nchars; local in function:motd 143 while ((nchars = read(fd, tbuf, sizeof(tbuf))) > 0) 144 (void)write(fileno(stdout), tbuf, nchars);
|
login.c | 770 int fd, nchars; local in function:checknologin 774 while ((nchars = read(fd, tbuf, sizeof(tbuf))) > 0) 775 (void)write(fileno(stdout), tbuf, nchars);
|
/src/lib/libedit/ |
common.c | 750 int nchars = c_hpos(el); local in function:ed_prev_line 775 nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n'; 793 int nchars = c_hpos(el); local in function:ed_next_line 809 nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n';
|
/src/lib/libc/stdio/ |
vfscanf.c | 476 int nchars; local in function:__svfscanf_unlocked_l 483 nchars = 0; 515 nchars++; 530 n = nchars;
|
vfwprintf.c | 426 size_t insize, nchars, nconv; local in function:__mbsconv 441 insize = nchars = nconv = 0; 443 while (nchars != (size_t)prec) { 449 nchars++;
|
/src/usr.bin/col/ |
col.c | 434 int i, j, nchars, last_col, save, this_col, tot; local in function:flush_line 437 nchars = l->l_line_len; 460 for (i = nchars, c = l->l_line; --i >= 0; c++) 473 for (i = nchars, c = l->l_line; --i >= 0; c++) 478 while (nchars > 0) { 483 } while (--nchars > 0 && this_col == endc->c_column); 488 if (nchars > 0 &&
|
/src/sys/arch/vax/vsa/ |
gpx.c | 988 u_int remaining, nchars, row; local in function:gpx_upload_font 1018 row++, remaining -= nchars) { 1019 nchars = MIN(ss->ss_gpr, remaining); 1024 ss->ss_adder->fast_dest_dx = nchars * 16; 1036 for (j = nchars; j != 0; j--) { 1046 if (j != 1 || (nchars & 1) == 0 || 1047 remaining != nchars) { 1061 fontbits += (nchars - 1) * font->stride * font->fontheight;
|