Searched refs:chars (Results 1 - 25 of 77) sorted by relevance

1234

/freebsd-current/crypto/heimdal/lib/hx509/
H A Dquote.py43 chars = [] variable
46 chars.append(0);
50 chars[i] |= CONTROL_CHAR | RFC2253_HEX;
53 chars[i] |= PRINTABLE
55 chars[i] |= PRINTABLE
57 chars[i] |= PRINTABLE
59 chars[ord(' ')] |= PRINTABLE
60 chars[ord('+')] |= PRINTABLE
61 chars[ord(',')] |= PRINTABLE
62 chars[or
[all...]
/freebsd-current/share/doc/usd/12.vi/vi/
H A DMakefile2 SRCS= vi.in vi.chars
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.order.d60 @chars['a'] = sum(1);
61 @chars['s'] = sum(1);
62 @chars['d'] = sum(1);
63 @chars['f'] = sum(1);
74 printa("%c\n", @chars);
/freebsd-current/contrib/ncurses/ncurses/widechar/
H A Dlib_key_name.c51 my_cchar.chars[0] = c;
52 my_cchar.chars[1] = L'\0';
H A Dlib_cchar.c90 memcpy(&wcval->chars, wch, len * sizeof(wchar_t));
126 len = ((wp = wmemchr(wcval->chars, L'\0', (size_t) CCHARW_MAX))
127 ? (int) (wp - wcval->chars)
145 wmemcpy(wch, wcval->chars, (size_t) len);
H A Dlib_wunctrl.c60 result = wc->chars;
H A Dlib_add_wch.c202 wchar_t *chars; local
208 chars = (win->_line[y].text[x - 1].chars);
210 chars = (win->_line[y - 1].text[win->_maxx].chars);
212 if (chars[i] == 0) {
216 chars[i] = CharOf(ch);
H A Dlib_inwstr.c68 && ((wch = text[col].chars[inx]) != 0);
75 count = last; /* only store complete chars */
/freebsd-current/lib/libc/stdlib/
H A Dl64a.c28 static const char chars[] = local
38 *buffer++ = chars[v & 0x3f];
/freebsd-current/crypto/openssl/test/recipes/
H A D15-test_out_option.t50 my @chars = ("A".."Z", "a".."z", "0".."9");
51 $rand_path .= $chars[rand @chars] for 1..32;
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DWriter.h27 PartialSection(StringRef n, uint32_t chars) argument
28 : name(n), characteristics(chars) {}
41 OutputSection(llvm::StringRef n, uint32_t chars) : name(n) { argument
42 header.Characteristics = chars;
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_io.cpp133 int chars = 0; local
136 chars = KMP_SNPRINTF(db, __kmp_debug_buf_chars,
139 chars += KMP_VSNPRINTF(db, __kmp_debug_buf_chars, format, ap);
141 if (chars + 1 > __kmp_debug_buf_chars) {
142 if (chars + 1 > __kmp_debug_buf_warn_chars) {
149 chars + 1);
157 chars + 1);
160 __kmp_debug_buf_warn_chars = chars + 1;
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcharconv.inc25 // [charconv.to.chars], primitive numerical output conversion
30 // [charconv.from.chars], primitive numerical input conversion
/freebsd-current/contrib/nvi/regex/
H A Dcclass.h54 const char *chars; member in struct:cclass
/freebsd-current/usr.bin/tip/libacu/
H A Dbiz31.c214 # define chars(b) ((b).cp_nbytes) macro
219 # define chars(b) (b) macro
226 if (ioctl(fd, IOCTL, (caddr_t)&b) >= 0 && chars(b) > 0)
231 if (chars(b) != 10) {
/freebsd-current/contrib/sqlite3/tea/win/
H A Dnmakehlp.c74 int chars;
94 chars = snprintf(msg, sizeof(msg) - 1,
98 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
105 chars = snprintf(msg, sizeof(msg) - 1,
109 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
116 chars = snprintf(msg, sizeof(msg) - 1,
120 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
134 chars = snprintf(msg, sizeof(msg) - 1,
139 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
146 chars
73 int chars; local
97 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, local
108 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, local
119 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, local
138 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, local
150 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, local
167 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, local
179 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, local
191 WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, &dwWritten, NULL); local
274 int chars = snprintf(msg, sizeof(msg) - 1, local
408 int chars = snprintf(msg, sizeof(msg) - 1, local
[all...]
/freebsd-current/usr.bin/locate/locate/
H A Dfastfind.c43 long lines, chars, size, size_nbg, big, zwerg, umlaut; local
55 lines = chars = big = zwerg = umlaut = longest_path = 0;
89 chars += (p - path);
98 (void)printf("Compression: Front: %2.2f%%, ", chars > 0 ? (size_nbg + big) / (chars / (float)100) : 0);
101 (void)printf("Total: %2.2f%%\n", chars > 0 ? size / (chars / (float)100) : 0);
103 (void)printf("Characters: %ld, ", chars);
221 } else { /* slow step, =< 14 chars */
/freebsd-current/contrib/llvm-project/compiler-rt/lib/stats/
H A Dstats.cpp36 char chars[sizeof(uptr)]; local
38 chars[i] = val >> (i * 8);
40 WriteToFile(fd, chars, sizeof(uptr));
/freebsd-current/sys/contrib/zstd/zlibWrapper/examples/
H A Dminigzip.c92 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
100 if (chars != 0) {
102 if (chars >= 2
103 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
104 chars -= 2;
105 msgbuf[chars] = 0;
108 if (chars > sizeof (buf) - 1) {
109 chars = sizeof (buf) - 1;
110 msgbuf[chars]
[all...]
/freebsd-current/sys/contrib/zlib/
H A Dgzlib.c36 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
44 if (chars != 0) {
46 if (chars >= 2
47 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
48 chars -= 2;
49 msgbuf[chars] = 0;
52 if (chars > sizeof (buf) - 1) {
53 chars = sizeof (buf) - 1;
54 msgbuf[chars]
[all...]
/freebsd-current/sys/contrib/zlib/test/
H A Dminigzip.c87 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
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]
[all...]
/freebsd-current/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c65 int length, classes, words, chars; local
69 length = classes = words = chars = 0;
86 chars++;
111 chars >= expected_different(10, params->min[0]) - 1)
117 chars >= expected_different(36, params->min[1]) - 1)
123 chars >= expected_different(27, params->min[2]) - 1)
129 chars >= expected_different(62, params->min[3]) - 1)
135 chars >= expected_different(95, params->min[4]) - 1)
/freebsd-current/include/rpcsvc/
H A Drex.x69 opaque chars[4];
70 /* chars[0] == input speed */
71 /* chars[1] == output speed */
72 /* chars[2] == kill character */
73 /* chars[3] == erase character */
137 const CTLECH = 0x10000000; /* echo control chars as ^X */
144 opaque chars[6];
145 /* chars[0] == interrupt char */
146 /* chars[1] == quit char */
147 /* chars[
[all...]
/freebsd-current/contrib/ncurses/ncurses/trace/
H A Dlib_traceatr.c349 PUTC_ch = ch->chars[PUTC_i];
356 PUTC_n = (int) wcrtomb(PUTC_buf, ch->chars[PUTC_i], &PUT_st);
362 UChar(ch->chars[PUTC_i])));
365 } else if (ch->chars[PUTC_i] > 255) {
369 _nc_wacs_width(ch->chars[PUTC_i]),
370 (unsigned long) ch->chars[PUTC_i]);
/freebsd-current/sys/contrib/zstd/zlibWrapper/
H A Dgzlib.c43 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
51 if (chars != 0) {
53 if (chars >= 2
54 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
55 chars -= 2;
56 msgbuf[chars] = 0;
59 if (chars > sizeof (buf) - 1) {
60 chars = sizeof (buf) - 1;
61 msgbuf[chars]
[all...]

Completed in 194 milliseconds

1234