/src/sys/arch/amiga/stand/bootblock/boot/ |
twiddle.c | 38 const static char chars[4] = {'|', '/', '-', '\\'}; variable in typeref:typename:const char[4] 45 putchar(chars[pos++ & 3]);
|
/src/tests/usr.bin/xlint/lint1/ |
d_alignof.c | 92 struct chars { struct in function:alignof_variants 96 typedef int struct_chars[-(int)__alignof(struct chars)];
|
/src/sys/dev/wscons/ |
wscons_rinit.c | 67 rc->rc_font_ascent = -(rc->rc_font->chars)['a'].homey; 76 if (rc->rc_font->chars[ch].r == 0) 79 n = rc->rc_font->chars[ch].r->linelongs * 80 rc->rc_font->chars[ch].r->height; 81 pix = rc->rc_font->chars[ch].r->pixels;
|
wsdisplay_vcons.c | 92 uint32_t *chars; member in struct:vcons_data_private 223 vdp->chars = NULL; 321 * we allocate both chars and attributes in one chunk, attributes first 342 * fill the attribute buffer with *defattr, chars with 0x20 357 if (vdp->chars != NULL) 358 free(vdp->chars, M_DEVBUF); 362 vdp->chars = malloc(size * sizeof(uint32_t), M_DEVBUF, 745 vdp->chars[boffset] = charptr[offset]; 802 if ((vdp->chars[boffset] != charptr[offset]) || 806 vdp->chars[boffset] = charptr[offset] [all...] |
wscons_rops.c | 83 rc->rc_font->chars[(int)' '].r->width, 84 rc->rc_font->chars[(int)' '].r->height,
|
/src/usr.bin/tip/aculib/ |
biz31.c | 214 # define chars(b) ((b).cp_nbytes) macro 219 # define chars(b) (b) macro 226 if (ioctl(fd, IOCTL, &b) >= 0 && chars(b) > 0) 231 if (chars(b) != 10) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/stats/ |
stats.cc | 36 char chars[sizeof(uptr)]; local in function:__anonef28f1ee0110::WriteLE 38 chars[i] = val >> (i * 8); 40 WriteToFile(fd, chars, sizeof(uptr));
|
/src/common/dist/zlib/ |
gzlib.c | 34 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local in function:gz_strwinerror 42 if (chars != 0) { 44 if (chars >= 2 45 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { 46 chars -= 2; 47 msgbuf[chars] = 0; 50 if (chars > sizeof (buf) - 1) { 51 chars = sizeof (buf) - 1; 52 msgbuf[chars] = 0 [all...] |
/src/common/dist/zlib/test/ |
minigzip.c | 87 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local in function:strwinerror 95 if (chars != 0) { 97 if (chars >= 2 98 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { 99 chars -= 2; 100 msgbuf[chars] = 0; 103 if (chars > sizeof (buf) - 1) { 104 chars = sizeof (buf) - 1; 105 msgbuf[chars] = 0 [all...] |
/src/lib/librpcsvc/ |
rex.x | 76 opaque chars[4]; 77 /* chars[0] == input speed */ 78 /* chars[1] == output speed */ 79 /* chars[2] == kill character */ 80 /* chars[3] == erase character */ 144 const CTLECH = 0x10000000; /* echo control chars as ^X */ 151 opaque chars[6]; 152 /* chars[0] == interrupt char */ 153 /* chars[1] == quit char */ 154 /* chars[2] == start output char * [all...] |
/src/share/me/ |
Makefile | 8 MESRCS= acm.me chars.me deltext.me eqn.me float.me footnote.me \
|
/src/usr.bin/make/unit-tests/ |
sh-meta-chars.mk | 1 # $NetBSD: sh-meta-chars.mk,v 1.4 2020/12/07 22:27:56 rillig Exp $
|
directive-for-escape.mk | 20 .for chars in ${ASCII} 21 . info ${chars} 32 .for chars in ${ASCII.2020-12-31} 33 . info ${chars}
|
/src/sys/arch/mac68k/dev/ |
macfb.c | 385 if (gallant19.chars[i].r == NULL) 388 gallant19.chars[i].r->width = 6; 389 gallant19.chars[i].r->height = 10; 390 p = gallant19.chars[i].r->pixels;
|
/src/sys/dev/rcons/ |
raster_text.c | 101 c = &(rf->chars['@']); 115 c = &(rf->chars[text[i]]); 136 c = &(rf->chars[ch]);
|
raster.h | 118 struct raster_char chars[256]; member in struct:raster_font
|
/src/sys/external/bsd/drm2/dist/drm/ttm/ |
ttm_memory.c | 131 int chars; local in function:ttm_mem_zone_store 135 chars = sscanf(buffer, "%lu", &val); 136 if (chars == 0) 209 int chars; local in function:ttm_mem_global_store 215 chars = sscanf(buffer, "%lu", &val); 216 if (chars == 0)
|
/src/sbin/fsdb/ |
fsdb.c | 896 int chars; local in function:print_blks32 900 chars = 0; 909 if ((chars + strlen(prbuf)) > CHARS_PER_LINES) { 911 chars = 0; 913 if (chars == 0) 916 chars += strlen(prbuf); 924 int chars; local in function:print_blks64 928 chars = 0; 939 if ((chars + strlen(prbuf)) > CHARS_PER_LINES) { 941 chars = 0 [all...] |
/src/lib/libc/stdlib/ |
strfmon.c | 270 /* fill left_prec with amount of padding chars */ 506 int chars = 0; local in function:get_groups 512 chars++; 519 chars += (size - 1) / *(grouping - 1); 523 return (chars);
|
/src/usr.bin/wc/ |
wc.c | 330 print_counts(wc_count_t lines, wc_count_t words, wc_count_t chars, 339 (void)printf(WCFMT, (WCCAST)chars);
|
/src/usr.bin/deroff/ |
deroff.c | 142 static char chars[128]; /* SPECIAL, PUNCT, APOS, DIGIT, or LETTER */ variable in typeref:typename:char[128] 351 chars[i] = LETTER; 353 chars[i] = LETTER; 355 chars[i] = DIGIT; 356 chars['\''] = APOS; 357 chars['&'] = APOS; 358 chars['.'] = PUNCT; 359 chars[','] = PUNCT; 360 chars[';'] = PUNCT; 361 chars['?'] = PUNCT [all...] |
/src/lib/libc/time/ |
localtime.c | 238 /* How many extra bytes are needed at the end of struct state's chars array. 261 char chars[max(max(TZ_MAX_CHARS + CHARS_EXTRA, sizeof "UTC"), member in struct:state 377 char const *abbr = &sp->chars[sp->ttis[i].tt_desigidx]; 438 name = &sp->chars[ttisp->tt_desigidx]; 469 tzname[ttisp->tt_isdst] = UNCONST(&sp->chars[ttisp->tt_desigidx]); 546 int len = (int)strlen(&sp->chars[i]); 554 if (strchr(TZ_ABBR_CHAR_SET, sp->chars[i]) == NULL) 555 sp->chars[i] = TZ_ABBR_ERR_CHAR; 714 + charcnt /* chars */ 781 sp->chars[i] = *p++ [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
armada-370-netgear-rn104.dts | 156 display-height-chars = <2>; 157 display-width-chars = <16>;
|
kirkwood-netgear_readynas_nv+_v2.dts | 126 display-height-chars = <2>; 127 display-width-chars = <16>;
|
/src/tests/usr.bin/indent/ |
fmt_decl.c | 131 int chars[ /* push the comma beyond column 74 ...... */ ], x; local in function:t2 148 int chars[/* push the comma beyond column 74 ...... */], local in function:t2
|