Home
last modified time | relevance | path

Searched full:chars (Results 1 – 25 of 835) sorted by relevance

12345678910>>...34

/freebsd/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[ord('-')] |= PRINTABLE
[all …]
/freebsd/include/rpcsvc/
H A Drex.x69 opaque chars[4]; member
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]; member
145 /* chars[0] == interrupt char */
146 /* chars[1] == quit char */
147 /* chars[2] == start output char */
[all …]
/freebsd/bin/pax/tests/
H A Dlegacy_test.pl37 "$work94/x099", # 99 chars
38 "$work94/xx100", # 100 chars
39 "$work94/xxx101", # 101 chars
40 "$work94/$x49/${x50}x199", # 199 chars
41 "$work94/$x49/${x50}xx200", # 200 chars
42 "$work94/$x49/${x50}xxx201", # 201 chars
43 "$work94/$x60/${x95}254", # 254 chars
44 "$work94/$x60/${x95}x255", # 255 chars
67 # 256 chars (with components < 100 chars) should not work
68 push @paths, "$work94/x$x60/${x95}x256"; # 256 chars
[all …]
/freebsd/sys/contrib/device-tree/Bindings/auxdisplay/
H A Dhit,hd44780.yaml54 display-height-chars:
60 display-width-chars:
69 display-width-chars for displays with more than 2 lines).
79 - display-height-chars
80 - display-width-chars
97 display-height-chars = <2>;
98 display-width-chars = <16>;
117 display-height-chars = <2>;
118 display-width-chars = <16>;
H A Dmodtronix,lcd2s.yaml26 display-height-chars:
32 display-width-chars:
41 - display-height-chars
42 - display-width-chars
55 display-height-chars = <4>;
56 display-width-chars = <20>;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DGlobPattern.cpp174 StringRef Chars = S.substr(I, J - I); in matchOne()
177 Invert ? expand(Chars.substr(1), S) : expand(Chars, S); in matchOne()
84 StringRef Chars = S.substr(1, End - 1); scan() local
H A DStringRef.cpp235 /// Chars, or npos if not found.
237 /// Note: O(size() + Chars.size())
238 StringRef::size_type StringRef::find_first_of(StringRef Chars, in find_first_of() argument
241 for (char C : Chars) in find_first_of()
257 /// in the string \arg Chars, or npos if not found.
259 /// Note: O(size() + Chars.size())
260 StringRef::size_type StringRef::find_first_not_of(StringRef Chars, in find_first_not_of() argument
263 for (char C : Chars) in find_first_not_of()
275 /// Note: O(size() + Chars.size())
276 StringRef::size_type StringRef::find_last_of(StringRef Chars, in find_last_of() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h169 /// Find the first character in the string that is in \p Chars, or npos if
172 /// Complexity: O(size() + Chars.size())
173 [[nodiscard]] size_t find_first_of(StringRef Chars, size_t From = 0) const {
174 return str().find_first_of(Chars, From);
184 /// \p Chars, or npos if not found.
186 /// Complexity: O(size() + Chars.size())
187 [[nodiscard]] size_t find_first_not_of(StringRef Chars,
189 return str().find_first_not_of(Chars, From);
202 /// Complexity: O(size() + Chars.size())
203 [[nodiscard]] size_t find_last_of(StringRef Chars,
[all …]
H A DStringRef.h386 /// Find the first character in the string that is in \p Chars, or npos if
389 /// Complexity: O(size() + Chars.size())
390 [[nodiscard]] LLVM_ABI size_t find_first_of(StringRef Chars,
399 /// \p Chars, or npos if not found.
401 /// Complexity: O(size() + Chars.size())
402 [[nodiscard]] LLVM_ABI size_t find_first_not_of(StringRef Chars,
414 /// Complexity: O(size() + Chars.size())
415 [[nodiscard]] LLVM_ABI size_t find_last_of(StringRef Chars,
423 /// Find the last character in the string that is not in \p Chars, or
426 /// Complexity: O(size() + Chars.size())
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_io.cpp133 int chars = 0;
136 chars = KMP_SNPRINTF(db, __kmp_debug_buf_chars, in __kmp_vprintf()
139 chars += KMP_VSNPRINTF(db, __kmp_debug_buf_chars, format, ap); in __kmp_vprintf()
141 if (chars + 1 > __kmp_debug_buf_chars) { in __kmp_vprintf()
142 if (chars + 1 > __kmp_debug_buf_warn_chars) { in __kmp_vprintf()
149 chars + 1); in __kmp_vprintf()
157 chars + 1); in __kmp_vprintf()
160 __kmp_debug_buf_warn_chars = chars + 1; in __kmp_vprintf()
152 int chars = 0; __kmp_vprintf() local
/freebsd/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/usr.bin/locate/locate/
H A Dfastfind.c43 long lines, chars, size, size_nbg, big, zwerg, umlaut; in statistic() local
55 lines = chars = big = zwerg = umlaut = longest_path = 0; in statistic()
89 chars += (p - path); in statistic()
98 …(void)printf("Compression: Front: %2.2f%%, ", chars > 0 ? (size_nbg + big) / (chars / (float)100)… in statistic()
101 (void)printf("Total: %2.2f%%\n", chars > 0 ? size / (chars / (float)100) : 0); in statistic()
103 (void)printf("Characters: %ld, ", chars); in statistic()
221 } else { /* slow step, =< 14 chars */
/freebsd/usr.bin/uniq/
H A Duniq.142 .Op Fl s Ar chars
104 .It Fl s Ar chars , Fl -skip-chars Ar chars
106 .Ar chars
111 .Ar chars
/freebsd/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c65 int length, classes, words, chars; in is_simple() local
69 length = classes = words = chars = 0; in is_simple()
86 chars++; in is_simple()
111 chars >= expected_different(10, params->min[0]) - 1) in is_simple()
117 chars >= expected_different(36, params->min[1]) - 1) in is_simple()
123 chars >= expected_different(27, params->min[2]) - 1) in is_simple()
129 chars >= expected_different(62, params->min[3]) - 1) in is_simple()
135 chars >= expected_different(95, params->min[4]) - 1) in is_simple()
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_varval.sh114 atf_set "descr" "Check that all chars can be assigned to vars"
131 atf_set "descr" "Check vars containing all chars can be used"
152 atf_set "descr" "Check vars containing all chars can be used"
190 # and each of them should have a name that is 13 chars long (+ \n)
199 atf_set "descr" "Check vars containing all chars can be used"
238 # and each of them should have a name that is 13 chars long (+ \n)
/freebsd/contrib/llvm-project/lld/COFF/
H A DWriter.h27 PartialSection(StringRef n, uint32_t chars) in PartialSection() argument
28 : name(n), characteristics(chars) {} in PartialSection()
41 OutputSection(llvm::StringRef n, uint32_t chars) : name(n) { in OutputSection() argument
42 header.Characteristics = chars; in OutputSection()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DRecordLayout.h92 /// NonVirtualSize - The non-virtual size (in chars) of an object, which is
96 /// NonVirtualAlignment - The non-virtual alignment (in chars) of an object,
100 /// PreferredNVAlignment - The preferred non-virtual alignment (in chars) of
209 /// getNonVirtualSize - Get the non-virtual size (in chars) of an object,
217 /// getNonVirtualAlignment - Get the non-virtual alignment (in chars) of an
226 /// chars) of an object, which is the preferred alignment of the object
249 /// getBaseClassOffset - Get the offset, in chars, for the given base class.
259 /// getVBaseClassOffset - Get the offset, in chars, for the given base class.
/freebsd/sys/contrib/zlib/
H A Dgzlib.c36 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM in gz_strwinerror() local
44 if (chars != 0) { in gz_strwinerror()
46 if (chars >= 2 in gz_strwinerror()
47 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { in gz_strwinerror()
48 chars -= 2; in gz_strwinerror()
49 msgbuf[chars] = 0; in gz_strwinerror()
52 if (chars > sizeof (buf) - 1) { in gz_strwinerror()
53 chars = sizeof (buf) - 1; in gz_strwinerror()
54 msgbuf[chars] = 0; in gz_strwinerror()
57 wcstombs(buf, msgbuf, chars + 1); /* assumes buf is big enough */ in gz_strwinerror()
/freebsd/sys/contrib/zlib/test/
H A Dminigzip.c96 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
104 if (chars != 0) {
106 if (chars >= 2
107 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
108 chars -= 2;
109 msgbuf[chars] = 0;
112 if (chars > sizeof (buf) - 1) {
113 chars = sizeof (buf) - 1;
114 msgbuf[chars] = 0;
117 wcstombs(buf, msgbuf, chars + 1);
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dgzlib.c41 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM in gz_strwinerror() local
49 if (chars != 0) { in gz_strwinerror()
51 if (chars >= 2 in gz_strwinerror()
52 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { in gz_strwinerror()
53 chars -= 2; in gz_strwinerror()
54 msgbuf[chars] = 0; in gz_strwinerror()
57 if (chars > sizeof (buf) - 1) { in gz_strwinerror()
58 chars = sizeof (buf) - 1; in gz_strwinerror()
59 msgbuf[chars] = 0; in gz_strwinerror()
62 wcstombs(buf, msgbuf, chars + 1); in gz_strwinerror()
/freebsd/contrib/ncurses/ncurses/widechar/
H A Dlib_cchar.c90 memcpy(&wcval->chars, wch, len * sizeof(wchar_t)); in NCURSES_EXPORT()
126 len = ((wp = wmemchr(wcval->chars, L'\0', (size_t) CCHARW_MAX)) in getcchar()
127 ? (int) (wp - wcval->chars) in getcchar()
130 len = wcsnlen(wcval->chars, CCHARW_MAX); in getcchar()
149 wmemcpy(wch, wcval->chars, (size_t) len); in getcchar()
/freebsd/contrib/wpa/src/wps/
H A Dupnp_xml.c45 * contain "attributes" after the label (delimited by ascii space or tab chars)
49 * Labels are any sequence of chars other than space, tab, right angle bracket
58 * any special chars in our payload.
113 * do not represent unicode chars or are not the shortest encoding.
158 * tag must not have any special chars.
159 * data may have special chars, which are escaped.
/freebsd/contrib/ncurses/ncurses/trace/
H A Dlib_traceatr.c350 PUTC_ch = ch->chars[PUTC_i]; in _tracecchar_t2()
357 PUTC_n = (int) wcrtomb(PUTC_buf, ch->chars[PUTC_i], &PUT_st); in _tracecchar_t2()
363 UChar(ch->chars[PUTC_i]))); in _tracecchar_t2()
366 } else if ((int) ch->chars[PUTC_i] > assume_unicode) { in _tracecchar_t2()
370 _nc_wacs_width(ch->chars[PUTC_i]), in _tracecchar_t2()
371 (unsigned long) ch->chars[PUTC_i]); in _tracecchar_t2()
374 } else if (PUTC_n > 1 || !is8bits(ch->chars[PUTC_i])) { in _tracecchar_t2()
384 temp[0] = (char) ch->chars[PUTC_i]; in _tracecchar_t2()
/freebsd/usr.bin/ctags/
H A Dctags.c240 * by default and then the elements subscripted by the chars in
255 for (sp = CWHITE; *sp; sp++) /* white space chars */ in init()
258 for (sp = CTOKEN; *sp; sp++) /* token ending chars */ in init()
261 for (sp = CINTOK; *sp; sp++) /* valid in-token chars */ in init()
264 for (sp = CBEGIN; *sp; sp++) /* token starting chars */ in init()
267 for (sp = CNOTGD; *sp; sp++) /* invalid after-function chars */ in init()
/freebsd/lib/libc/locale/
H A Dmbrlen.3111 size_t charlen, chars;
119 chars++;
122 return (chars);

12345678910>>...34