Home
last modified time | relevance | path

Searched full:lead (Results 1 – 25 of 769) sorted by relevance

12345678910>>...31

/freebsd/contrib/googletest/googletest/src/
H A Dgtest-printers.cc487 unsigned char lead = s[i++]; in IsValidUTF8() local
489 if (lead <= 0x7f) { in IsValidUTF8()
492 if (lead < 0xc2) { in IsValidUTF8()
494 } else if (lead <= 0xdf && (i + 1) <= length && IsUTF8TrailByte(s[i])) { in IsValidUTF8()
496 } else if (0xe0 <= lead && lead <= 0xef && (i + 2) <= length && in IsValidUTF8()
499 (lead != 0xe0 || s[i] >= 0xa0) && in IsValidUTF8()
500 (lead != 0xed || s[i] < 0xa0)) { in IsValidUTF8()
502 } else if (0xf0 <= lead && lead <= 0xf4 && (i + 3) <= length && in IsValidUTF8()
506 (lead != 0xf0 || s[i] >= 0x90) && in IsValidUTF8()
507 (lead != 0xf4 || s[i] < 0x90)) { in IsValidUTF8()
/freebsd/share/doc/papers/diskperf/
H A Dresults.ms267 operation. These lead times are expressed as sectors of rotational delay.
298 Test Inadequate Search Lead OK Search Lead OK Search Lead
319 Test Inadequate Search Lead OK Search Lead OK Search Lead
/freebsd/tools/tools/locale/tools/
H A Dutf8-rollup.pl126 my $lead;
134 $lead = 0xc0;
137 $lead = 0xe0;
140 $lead = 0xf0;
148 $ret = (sprintf "%02X", ($wc & 0xff) | $lead) . $ret;
/freebsd/contrib/expat/lib/
H A Dxmltok_impl.h40 BT_LEAD2, /* lead byte of a 2-byte UTF-8 character */
41 BT_LEAD3, /* lead byte of a 3-byte UTF-8 character */
42 BT_LEAD4, /* lead byte of a 4-byte UTF-8 character */
/freebsd/lib/libc/stdio/
H A Dxprintf_float.c165 int lead; /* sig figs before decimal or group sep */ in __printf_render_float() local
309 lead = expt; in __printf_render_float()
311 if (lead <= *grouping) in __printf_render_float()
313 lead -= *grouping; in __printf_render_float()
322 lead = expt; in __printf_render_float()
379 PRINTANDPAD(cp, dtoaend, lead, 1); in __printf_render_float()
380 cp += lead; in __printf_render_float()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
H A Dzdb_block_size_histogram.ksh73 # attempting to use 100% will lead to no space left on device
84 # size. Creating one file per object would lead to
169 # attempting to use 100% will lead to no space left on device
170 # attempting to use 100% will lead to no space left on device
181 # size. Creating one file per object would lead to
/freebsd/contrib/jemalloc/src/
H A Dextent.c955 * it, this splits off lead and trail extents, leaving extent pointing to an
957 * This function doesn't put lead or trail into any extents_t; it's the caller's
962 * Split successfully. lead, extent, and trail, are modified to extents
974 * None of lead, extent, or trail are valid.
983 extent_t **extent, extent_t **lead, extent_t **trail, in extent_split_interior() argument
997 *lead = NULL; in extent_split_interior()
1002 /* Split the lead. */ in extent_split_interior()
1004 *lead = *extent; in extent_split_interior()
1006 *lead, leadsize, SC_NSIZES, false, esize + trailsize, szind, in extent_split_interior()
1009 *to_leak = *lead; in extent_split_interior()
[all …]
/freebsd/lib/libc/stdtime/
H A Dstrftime.c604 register int lead; in _yconv() local
609 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
611 if (trail < 0 && lead > 0) { in _yconv()
613 --lead; in _yconv()
614 } else if (lead < 0 && trail > 0) { in _yconv()
616 ++lead; in _yconv()
619 if (lead == 0 && trail < 0) in _yconv()
621 else pt = _conv(lead, "%02d", pt, ptlim, loc); in _yconv()
/freebsd/contrib/tzcode/
H A Dstrftime.c638 register int lead; in _yconv() local
643 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
645 if (trail < 0 && lead > 0) { in _yconv()
647 --lead; in _yconv()
648 } else if (lead < 0 && trail > 0) { in _yconv()
650 ++lead; in _yconv()
653 if (lead == 0 && trail < 0) in _yconv()
655 else pt = _conv(lead, "%02d", pt, ptlim); in _yconv()
/freebsd/lib/libc/locale/
H A Dutf8.c295 unsigned char lead; in _UTF8_wcrtomb() local
320 lead = 0xc0; in _UTF8_wcrtomb()
327 lead = 0xe0; in _UTF8_wcrtomb()
330 lead = 0xf0; in _UTF8_wcrtomb()
347 *s = (wc & 0xff) | lead; in _UTF8_wcrtomb()
/freebsd/sys/libkern/
H A Diconv_ucs.c482 u_char lead, *p; in ucs4_to_utf8() local
490 lead = 0; /* "0" */ in ucs4_to_utf8()
493 lead = 0xc0; /* "11" */ in ucs4_to_utf8()
496 lead = 0xe0; /* "111" */ in ucs4_to_utf8()
499 lead = 0xf0; /* "1111" */ in ucs4_to_utf8()
516 *p = ucs4 | lead; in ucs4_to_utf8()
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.h40 Be aware that ZWRAP_useZSTDcompression() is not thread-safe and may lead to a race condition. */
68 … Be aware that ZWRAP_setDecompressionType() is not thread-safe and may lead to a race condition. */
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/
H A Dextents.h175 // Not catching this could lead to out of bounds errors later
194 // Not catching this could lead to out of bounds errors later
319 // Not catching this could lead to out of bounds errors later
332 // Not catching this could lead to out of bounds errors later
345 // Not catching this could lead to out of bounds errors later
398 // Not catching this could lead to out of bounds errors later
404 // Not catching this could lead to out of bounds errors later
H A Dlayout_right.h77 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
89 // not catching this could lead to out-of-bounds access later when used inside mdspan in requires()
101 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
H A Dlayout_left.h78 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
90 // not catching this could lead to out-of-bounds access later when used inside mdspan in requires()
102 // not catching this could lead to out-of-bounds access later when used inside mdspan in mapping()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win_dll_thunk.h79 // We can't define our own version of strlen etc. because that would lead to
82 // functions since it can be called before __dll_thunk_init, but that would lead
90 // is executed and don't lead to errors if defined (free, malloc, etc).
/freebsd/contrib/libedit/
H A Deditline.7173 .It O Ta Ic ed-sequence-lead-in
182 .It \&[ Ta Ic ed-sequence-lead-in
209 .It Meta-O Ta Ic ed-sequence-lead-in
210 .It Meta-[ Ta Ic ed-sequence-lead-in
239 .It Ctrl-X Ta Ic ed-sequence-lead-in
256 .It Meta-O Ta Ic ed-sequence-lead-in
261 .It Meta-[ Ta Ic ed-sequence-lead-in
465 .It Ic ed-sequence-lead-in Pq vi cmd: O, \&[; emacs: Ctrl-X;\
844 .Ic ed-sequence-lead-in ,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp64 unsigned char Lead[2]; member
67 int maxLeadIndex() const { return (std::max)(Lead[0], Lead[1]); } in maxLeadIndex()
68 int getNumLeads() const { return (Lead[0] ? 1 : 0) + (Lead[1] ? 1 : 0); } in getNumLeads()
137 // latest 'lead' argument type in the order of encoding from first to last.
138 // E_ANY - use prev lead type, E_CONSTPTR_ANY - make const pointer out of
139 // prev lead type, etc. see ParamIterator::getNextParam() for details.
402 if (Index == (Rule.Lead[1] - 1)) P = Leads[1]; in getNextParam()
679 if ((I + 1) == Rule.Lead[0]) Leads[0] = P; in parseFuncName()
680 if ((I + 1) == Rule.Lead[1]) Leads[1] = P; in parseFuncName()
/freebsd/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_chmod_001_neg.ksh37 # 2) Delete all the ACE will lead to fail.
42 # 2. Verify all kinds of illegal option will lead to chmod failed.
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastToStructChecker.cpp68 "type and accessing a field can lead to memory " in VisitCastExpr()
100 "a field can lead to memory access errors or data " in VisitCastExpr()
/freebsd/contrib/ntp/html/
H A Dkernpps.html22 …his requires only a serial port and a modem control lead, such as the data carrier detect (DCD) le…
/freebsd/contrib/llvm-project/libcxx/include/
H A D__assert46 // On most modern platforms, dereferencing a null pointer does not lead to an actual memory access.
48 // Overlapping ranges will make algorithms produce incorrect results but don't directly lead to a s…
/freebsd/contrib/tcsh/nls/C/
H A Dset94 2 AddXkey: sequence-lead-in command not allowed\n
/freebsd/contrib/tcsh/nls/finnish/
H A Dset94 2 AddXkey: sequence-lead-in command not allowed\n
/freebsd/contrib/tcsh/nls/german/
H A Dset94 2 AddXkey: sequence-lead-in command not allowed\n

12345678910>>...31