HomeSort by: relevance | last modified time | path
    Searched defs:nchars (Results 1 - 25 of 37) sorted by relevancy

1 2

  /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
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
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/external/gpl3/gcc/dist/libstdc++-v3/src/c++23/
print.cc 338 unsigned long nchars = 0; local
339 WriteConsoleW(term, wstr.data(), wstr.size(), &nchars, nullptr);
340 if (nchars != wstr.size())
  /src/usr.bin/uniq/
uniq.c 204 int infield, nchars, nfields; local
215 for (nchars = numchars; nchars-- && *str; ++str, --ls)
  /src/lib/libedit/
common.c 750 int nchars = c_hpos(el); local
775 nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n';
793 int nchars = c_hpos(el); local
809 nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n';
  /src/usr.bin/login/
common.c 135 int fd, nchars; local
143 while ((nchars = read(fd, tbuf, sizeof(tbuf))) > 0)
144 (void)write(fileno(stdout), tbuf, nchars); local
login.c 770 int fd, nchars; local
774 while ((nchars = read(fd, tbuf, sizeof(tbuf))) > 0)
775 (void)write(fileno(stdout), tbuf, nchars); local
  /src/external/gpl2/texinfo/dist/makeinfo/
multi.c 196 int nchars;
215 nchars = strlen (command);
216 params += nchars;
194 int nchars; local
  /src/external/gpl3/gdb/dist/gdb/
mingw-hdep.c 347 DWORD nchars; local
358 nchars = csbi.dwSize.X - start_pos.X;
360 FillConsoleOutputAttribute (hstdout, norm_attr, nchars,
362 FillConsoleOutputCharacter (hstdout, ' ', nchars,
  /src/external/gpl3/gdb.old/dist/gdb/
mingw-hdep.c 347 DWORD nchars; local
358 nchars = csbi.dwSize.X - start_pos.X;
360 FillConsoleOutputAttribute (hstdout, norm_attr, nchars,
362 FillConsoleOutputCharacter (hstdout, ' ', nchars,
  /src/lib/libc/stdio/
vfscanf.c 476 int nchars; local
483 nchars = 0;
515 nchars++;
530 n = nchars;
vfwprintf.c 426 size_t insize, nchars, nconv; local
441 insize = nchars = nconv = 0;
443 while (nchars != (size_t)prec) {
449 nchars++;
  /src/external/bsd/flex/dist/src/
scanopt.c 397 int nwords = 0, nchars = 0, has_short = 0;
412 nchars += indent;
417 nchars+=fprintf(fp,", ");\
418 nchars+=fprintf(fp,"%s",s->options[i].opt_fmt);\
441 PRINT_SPACES (fp, desccol - nchars);
396 int nwords = 0, nchars = 0, has_short = 0; local
  /src/usr.bin/col/
col.c 434 int i, j, nchars, last_col, save, this_col, tot; local
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/external/gpl2/gettext/dist/gettext-tools/libgrep/
dfa.h 254 int nchars; member in struct:mb_char_classes
  /src/external/gpl2/grep/dist/src/
dfa.h 273 int nchars; member in struct:mb_char_classes
  /src/external/gpl3/gdb/dist/gdb/nat/
windows-nat.c 223 int nchars; local
227 nchars = readlink (procexe, path, sizeof(path));
228 if (nchars > 0 && nchars < sizeof (path))
230 path[nchars] = '\0'; /* Got it */
  /src/external/gpl3/gdb.old/dist/gdb/nat/
windows-nat.c 233 int nchars; local
237 nchars = readlink (procexe, path, sizeof(path));
238 if (nchars > 0 && nchars < sizeof (path))
240 path[nchars] = '\0'; /* Got it */
  /src/sys/arch/vax/vsa/
gpx.c 988 u_int remaining, nchars, row; local
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;
  /src/external/gpl3/binutils/dist/gas/
listing.c 866 unsigned int nchars; local
875 nchars = (LISTING_WORD_SIZE * 2 + 1) * listing_lhs_width;
881 for (idx = 0; idx < nchars; idx++)
896 while (src[cur] && idx < nchars)
914 for (; idx < nchars; idx++)
927 nchars = ((LISTING_WORD_SIZE * 2) + 1) * listing_lhs_width_second - 1;
933 while (src[cur] && idx < nchars)
  /src/external/gpl3/binutils.old/dist/gas/
listing.c 866 unsigned int nchars; local
875 nchars = (LISTING_WORD_SIZE * 2 + 1) * listing_lhs_width;
881 for (idx = 0; idx < nchars; idx++)
896 while (src[cur] && idx < nchars)
914 for (; idx < nchars; idx++)
927 nchars = ((LISTING_WORD_SIZE * 2) + 1) * listing_lhs_width_second - 1;
933 while (src[cur] && idx < nchars)
  /src/external/gpl3/gdb/dist/readline/readline/
vi_mode.c 221 int nchars; local
223 nchars = strlen (vi_insert_buffer);
227 /* nchars-1 to compensate for _rl_replace_text using `end+1' in call
229 _rl_replace_text (vi_insert_buffer, rl_point, rl_point+nchars-1);
  /src/external/gpl3/gdb.old/dist/readline/readline/
vi_mode.c 221 int nchars; local
223 nchars = strlen (vi_insert_buffer);
227 /* nchars-1 to compensate for _rl_replace_text using `end+1' in call
229 _rl_replace_text (vi_insert_buffer, rl_point, rl_point+nchars-1);
  /src/external/gpl2/groff/dist/src/utils/hpftodit/
hpftodit.cpp 232 uint32 nchars = 0; variable
361 if (nchars == 0)
599 for (i = 0; i < nchars; i++)
670 nchars = tag_info(charcode_tag).count;
671 char_table = new char_info[nchars];
675 for (i = 0; i < nchars; i++)
680 for (i = 0; i < nchars; i++)
685 for (i = 0; i < nchars; i++) {
693 for (i = 0; i < nchars; i++) {
701 for (i = 0; i < nchars; i++
    [all...]
  /src/external/gpl3/binutils/dist/binutils/
nm.c 500 unsigned int nchars = 0;
514 nchars = 2;
523 nchars = 3;
530 nchars = 4;
537 memcpy (out, in, nchars);
538 out += nchars;
546 for (j = 0; j < nchars; j++)
556 switch (nchars)
590 * consumed = nchars;
497 unsigned int nchars = 0; local

Completed in 56 milliseconds

1 2