Searched refs:lead (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-current/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-current/lib/libc/stdio/
H A Dxprintf_float.c165 int lead; /* sig figs before decimal or group sep */ local
309 lead = expt;
311 if (lead <= *grouping)
313 lead -= *grouping;
322 lead = expt;
379 PRINTANDPAD(cp, dtoaend, lead, 1);
380 cp += lead;
H A Dvfwprintf.c81 int lead; /* sig figs before decimal or group sep */ member in struct:grouping_state
130 gs->lead = ndigits;
132 if (gs->lead <= *gs->grouping)
134 gs->lead -= *gs->grouping;
153 if (io_printandpad(iop, cp, ep, gs->lead, zeroes, locale))
155 cp += gs->lead;
H A Dvfprintf.c82 int lead; /* sig figs before decimal or group sep */ member in struct:grouping_state
103 gs->lead = ndigits;
105 if (gs->lead <= *gs->grouping)
107 gs->lead -= *gs->grouping;
126 if (io_printandpad(iop, cp, ep, gs->lead, zeroes, locale))
128 cp += gs->lead;
/freebsd-current/contrib/googletest/googletest/src/
H A Dgtest-printers.cc487 unsigned char lead = s[i++]; local
489 if (lead <= 0x7f) {
492 if (lead < 0xc2) {
494 } else if (lead <= 0xdf && (i + 1) <= length && IsUTF8TrailByte(s[i])) {
496 } else if (0xe0 <= lead && lead <= 0xef && (i + 2) <= length &&
499 (lead != 0xe0 || s[i] >= 0xa0) &&
500 (lead != 0xed || s[i] < 0xa0)) {
502 } else if (0xf0 <= lead && lead <
[all...]
/freebsd-current/lib/libc/stdtime/
H A Dstrftime.c604 register int lead; local
609 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
611 if (trail < 0 && lead > 0) {
613 --lead;
614 } else if (lead < 0 && trail > 0) {
616 ++lead;
619 if (lead == 0 && trail < 0)
621 else pt = _conv(lead, "%02d", pt, ptlim, loc);
/freebsd-current/contrib/tzcode/
H A Dstrftime.c638 register int lead; local
643 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
645 if (trail < 0 && lead > 0) {
647 --lead;
648 } else if (lead < 0 && trail > 0) {
650 ++lead;
653 if (lead == 0 && trail < 0)
655 else pt = _conv(lead, "%02d", pt, ptlim);
H A Dzdump.c1237 register int lead; local
1256 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
1259 if (trail < 0 && lead > 0) {
1261 --lead;
1262 } else if (lead < 0 && trail > 0) {
1264 ++lead;
1266 if (lead == 0)
1268 else printf("%d%d", lead, ((trail < 0) ? -trail : trail));
/freebsd-current/contrib/unifdef/
H A Difdef-how.pl10 Print the sequence of preprocessor conditionals which lead to the
/freebsd-current/lib/libc/locale/
H A Dutf8.c295 unsigned char lead; local
320 lead = 0xc0;
327 lead = 0xe0;
330 lead = 0xf0;
347 *s = (wc & 0xff) | lead;
/freebsd-current/sys/libkern/
H A Diconv_ucs.c482 u_char lead, *p; local
490 lead = 0; /* "0" */
493 lead = 0xc0; /* "11" */
496 lead = 0xe0; /* "111" */
499 lead = 0xf0; /* "1111" */
516 *p = ucs4 | lead;
/freebsd-current/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,
997 *lead = NULL;
1002 /* Split the lead. */
1004 *lead = *extent;
1006 *lead, leadsize, SC_NSIZES, false, esize + trailsize, szind,
1009 *to_leak = *lead;
980 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) argument
1061 extent_t *lead; local
1368 extent_t *lead; local
2121 extent_t lead; local
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvar-op-append.mk50 # irrelevant in practice since variable names containing dollars lead to
H A Dvarparse-undef-partial.mk5 # the remaining expression is evaluated. In edge cases this can lead to
H A Dvarmod-defined.mk50 # ApplyModifier_Defined calls Var_Parse, double dollars lead to a parse
H A Ddep-var.mk11 # Even though undefined expressions should lead to errors, no error message is
H A Ddirective-for-escape.mk266 # XXX: Why does the '$$' before the '${.TARGET}' lead to an escaped '}'?
269 # XXX: Why does the '$$' before the '${.TARGET}' lead to an escaped '}'?
H A Dvar-op-sunsh.mk88 # the assignment operator at nesting level 0. All other words would lead
H A Ddirective-for.mk125 # value literally in the body. This could lead to situations where the
H A Dvarmod-indirect.mk182 # This results in ${UNDEF:}, which can lead to tricky parse errors later,
/freebsd-current/sys/cam/scsi/
H A Dscsi_cd.c136 * According to the MMC-6 spec, 6.25.3.2.11, the lead-out is reported by
2050 struct cd_toc_single *lead; local
2058 lead = malloc(sizeof(*lead), M_SCSICD, M_WAITOK | M_ZERO);
2072 free(lead, M_SCSICD);
2082 free(lead, M_SCSICD);
2105 free(lead, M_SCSICD);
2127 free(lead, M_SCSICD);
2141 free(lead, M_SCSICD);
2153 LEADOUT, (uint8_t *)lead,
[all...]
/freebsd-current/share/mk/
H A Dlocal.dirdeps.mk68 # rebuilt and lead to incorrect Makefile.depend files due to lack of
H A Dbsd.dep.mk284 # So we don't need it as a guessed dependency (it may lead to cyclic problems
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp936 "Call to function 'vfork' is insecure as it can lead to "
988 "as it can lead to potential buffer overflows. Use the safer "
/freebsd-current/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1772 const char *lead; local
1776 lead = "0f";
1780 lead = "0d";
1786 O << lead << format_hex_no_prefix(API.getZExtValue(), numHex, /*Upper=*/true);

Completed in 314 milliseconds

12