/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-printers.cc | 487 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 D | results.ms | 267 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 D | utf8-rollup.pl | 126 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 D | xprintf_float.c | 165 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/jemalloc/src/ |
H A D | extent.c | 955 * 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/contrib/expat/lib/ |
H A D | xmltok_impl.h | 40 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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/ |
H A D | zdb_block_size_histogram.ksh | 74 # 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/contrib/tzcode/ |
H A D | strftime.c | 638 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()
|
H A D | zdump.c | 1237 register int lead; in dumptime() local 1256 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime() 1259 if (trail < 0 && lead > 0) { in dumptime() 1261 --lead; in dumptime() 1262 } else if (lead < 0 && trail > 0) { in dumptime() 1264 ++lead; in dumptime() 1266 if (lead == 0) in dumptime() 1268 else printf("%d%d", lead, ((trail < 0) ? -trail : trail)); in dumptime()
|
/freebsd/lib/libc/stdtime/ |
H A D | strftime.c | 606 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/lib/libc/locale/ |
H A D | utf8.c | 295 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 D | iconv_ucs.c | 482 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 D | var-recursive.mk | 4 # 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 D | zstd_zlibwrapper.h | 40 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 D | extents.h | 175 // 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 D | layout_right.h | 77 // 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 D | layout_left.h | 78 // 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 D | editline.7 | 173 .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 D | sanitizer_win_dll_thunk.h | 79 // 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 D | AMDGPULibFunc.cpp | 64 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 D | zfs_acl_chmod_001_neg.ksh | 37 # 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 D | CastToStructChecker.cpp | 68 "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 D | kernpps.html | 22 …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 | __assert | 46 // 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/tools/tools/locale/etc/charmaps/ |
H A D | eucKR.TXT | 149 0x81 #DBCS LEAD BYTE 150 0x82 #DBCS LEAD BYTE 151 0x83 #DBCS LEAD BYTE 152 0x84 #DBCS LEAD BYTE 153 0x85 #DBCS LEAD BYTE 154 0x86 #DBCS LEAD BYTE 155 0x87 #DBCS LEAD BYTE 156 0x88 #DBCS LEAD BYTE 157 0x89 #DBCS LEAD BYTE 158 0x8A #DBCS LEAD BYTE [all …]
|