Home
last modified time | relevance | path

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

12345678910>>...33

/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/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/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/contrib/jemalloc/src/
H A Dextent.c451 * it, this splits off lead and trail extents, leaving edata pointing to an in extents_first_fit_locked()
453 * This function doesn't put lead or trail into any ecache; it's the caller's in extents_first_fit_locked()
458 * Split successfully. lead, edata, and trail, are modified to extents in extents_first_fit_locked()
470 * None of lead, edata, or trail are valid. in extents_first_fit_locked()
478 edata_t **edata, edata_t **lead, edata_t **trail, in extents_first_fit_locked()
490 *lead = NULL;
495 /* Split the lead. */ in extents_fit_locked()
498 *lead = *edata; in extents_fit_locked()
499 *edata = extent_split_impl(tsdn, pac, ehooks, *lead, leadsize, in extents_fit_locked()
502 *to_leak = *lead; in extents_fit_locked()
983 extent_split_interior(tsdn_t * tsdn,arena_t * arena,extent_hooks_t ** r_extent_hooks,rtree_ctx_t * rtree_ctx,extent_t ** extent,extent_t ** lead,extent_t ** trail,extent_t ** to_leak,extent_t ** to_salvage,void * new_addr,size_t size,size_t pad,size_t alignment,bool slab,szind_t szind,bool growing_retained) extent_split_interior() argument
1061 extent_t *lead; extent_recycle_split() local
1368 extent_t *lead; extent_grow_retained() local
2121 extent_t lead; extent_split_impl() local
[all...]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
H A Dzdb_block_size_histogram.ksh74 # attempting to use 100% will lead to no space left on device
85 # size. Creating one file per object would lead to
170 # attempting to use 100% will lead to no space left on device
171 # attempting to use 100% will lead to no space left on device
182 # size. Creating one file per object would lead to
/freebsd/lib/libc/stdtime/
H A Dstrftime.c606 register int lead; in _yconv() local
611 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
613 if (trail < 0 && lead > 0) { in _yconv()
615 --lead; in _yconv()
616 } else if (lead < 0 && trail > 0) { in _yconv()
618 ++lead; in _yconv()
621 if (lead == 0 && trail < 0) in _yconv()
623 else pt = _conv(lead, "%02d", pt, ptlim, loc); in _yconv()
/freebsd/contrib/tzcode/
H A Dstrftime.c689 register int lead; in _yconv() local
694 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
696 if (trail < 0 && lead > 0) { in _yconv()
698 --lead; in _yconv()
699 } else if (lead < 0 && trail > 0) { in _yconv()
701 ++lead; in _yconv()
704 if (lead == 0 && trail < 0) in _yconv()
706 else pt = _conv(lead, "%02d", pt, ptlim); in _yconv()
H A Dzdump.c1227 register int lead; in dumptime() local
1246 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime()
1249 if (trail < 0 && lead > 0) { in dumptime()
1251 --lead; in dumptime()
1252 } else if (lead < 0 && trail > 0) { in dumptime()
1254 ++lead; in dumptime()
1256 if (lead == 0) in dumptime()
1258 else printf("%d%d", lead, ((trail < 0) ? -trail : trail)); in dumptime()
/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/contrib/bmake/unit-tests/
H A Dvar-recursive.mk4 # evaluated, as that would lead to an endless loop.
29 # An expression with modifiers is skipped halfway. This can lead to wrong
/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/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/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/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

12345678910>>...33