Symbol: chars
lib/libc/stdlib/l64a.c
28
static const char chars[] =
lib/libc/stdlib/l64a.c
38
*buffer++ = chars[v & 0x3f];
lib/libc/stdlib/strfmon.c
497
int chars = 0;
lib/libc/stdlib/strfmon.c
503
chars++;
lib/libc/stdlib/strfmon.c
510
chars += (size - 1) / *(grouping - 1);
lib/libc/stdlib/strfmon.c
514
return (chars);
lib/libiconv_modules/ISO2022/citrus_iso2022.c
494
int chars[10];
lib/libiconv_modules/ISO2022/citrus_iso2022.c
535
p = sp->chars;
lib/libiconv_modules/ISO2022/citrus_iso2022.c
536
while ((size_t)(p - sp->chars) < n && p - sp->chars < sp->len) {
lib/libiconv_modules/ISO2022/citrus_iso2022.c
572
return (p - sp->chars);
lib/libutil/login_cap.c
198
arrayize(const char *str, const char *chars, int *size)
lib/libutil/login_cap.c
207
int count = strcspn_quote(cptr, chars, NULL);
lib/libutil/login_cap.c
222
int count = strcspn_quote(ptr, chars, &quoted);
lib/libutil/login_cap.c
481
login_getcaplist(login_cap_t *lc, const char *cap, const char *chars)
lib/libutil/login_cap.c
485
if (chars == NULL)
lib/libutil/login_cap.c
486
chars = ", \t";
lib/libutil/login_cap.c
488
return arrayize(lstring, chars, NULL);
sys/dev/drm2/ttm/ttm_memory.c
92
int chars;
sys/dev/drm2/ttm/ttm_memory.c
96
chars = sscanf(buffer, "%lu", &val);
sys/dev/drm2/ttm/ttm_memory.c
97
if (chars == 0)
sys/dev/drm2/ttm/ttm_page_alloc.c
222
int chars;
sys/dev/drm2/ttm/ttm_page_alloc.c
224
chars = sscanf(buffer, "%u", &val);
sys/dev/drm2/ttm/ttm_page_alloc.c
225
if (chars == 0)
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
212
int chars;
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
214
chars = sscanf(buffer, "%u", &val);
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
215
if (chars == 0)
usr.bin/localedef/collate.c
1122
collate_char_t chars[UCHAR_MAX + 1];
usr.bin/localedef/collate.c
1161
(void) memset(&chars, 0, sizeof (chars));
usr.bin/localedef/collate.c
1191
chars[i].pri[j] =
usr.bin/localedef/collate.c
1196
chars[i].pri[j] =
usr.bin/localedef/collate.c
1204
chars[i].pri[NUM_WT] = htote(i);
usr.bin/localedef/collate.c
1309
(wr_category(&chars, sizeof (chars), f) < 0)) {
usr.bin/locate/locate/fastfind.c
101
(void)printf("Total: %2.2f%%\n", chars > 0 ? size / (chars / (float)100) : 0);
usr.bin/locate/locate/fastfind.c
103
(void)printf("Characters: %ld, ", chars);
usr.bin/locate/locate/fastfind.c
43
long lines, chars, size, size_nbg, big, zwerg, umlaut;
usr.bin/locate/locate/fastfind.c
55
lines = chars = big = zwerg = umlaut = longest_path = 0;
usr.bin/locate/locate/fastfind.c
89
chars += (p - path);
usr.bin/locate/locate/fastfind.c
98
(void)printf("Compression: Front: %2.2f%%, ", chars > 0 ? (size_nbg + big) / (chars / (float)100) : 0);
usr.bin/sort/bwstring.c
332
size_t charlen, chars, cptr;
usr.bin/sort/bwstring.c
334
chars = 0;
usr.bin/sort/bwstring.c
352
ret->wdata.str[chars++] =
usr.bin/sort/bwstring.c
357
n = mbrtowc(ret->wdata.str + (chars++),
usr.bin/sort/bwstring.c
366
ret->wdata.len = chars;
usr.bin/tip/libacu/biz31.c
226
if (ioctl(fd, IOCTL, (caddr_t)&b) >= 0 && chars(b) > 0)
usr.bin/tip/libacu/biz31.c
231
if (chars(b) != 10) {
usr.sbin/newsyslog/ptimes.c
502
int chars;
usr.sbin/newsyslog/ptimes.c
543
chars = snprintf(timebuf, bufsize,
usr.sbin/newsyslog/ptimes.c
552
if (chars >= (int)bufsize) {
usr.sbin/pw/pw_user.c
483
static char const chars[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./";
usr.sbin/pw/pw_user.c
498
salt[i] = chars[arc4random_uniform(sizeof(chars) - 1)];
usr.sbin/pw/pw_user.c
521
pwbuf[i] = chars[arc4random_uniform(sizeof(chars)-1)];