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

12

/freebsd-11-stable/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 Dvfprintf.c86 int lead; /* sig figs before decimal or group sep */ member in struct:grouping_state
107 gs->lead = ndigits;
109 if (gs->lead <= *gs->grouping)
111 gs->lead -= *gs->grouping;
130 if (io_printandpad(iop, cp, ep, gs->lead, zeroes, locale))
132 cp += gs->lead;
H A Dvfwprintf.c87 int lead; /* sig figs before decimal or group sep */ member in struct:grouping_state
136 gs->lead = ndigits;
138 if (gs->lead <= *gs->grouping)
140 gs->lead -= *gs->grouping;
159 if (io_printandpad(iop, cp, ep, gs->lead, zeroes, locale))
161 cp += gs->lead;
/freebsd-11-stable/lib/libc/stdtime/
H A Dstrftime.c619 register int lead; local
624 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
626 if (trail < 0 && lead > 0) {
628 --lead;
629 } else if (lead < 0 && trail > 0) {
631 ++lead;
634 if (lead == 0 && trail < 0)
636 else pt = _conv(lead, "%02d", pt, ptlim, loc);
/freebsd-11-stable/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-11-stable/sys/libkern/
H A Diconv_ucs.c484 u_char lead, *p; local
492 lead = 0; /* "0" */
495 lead = 0xc0; /* "11" */
498 lead = 0xe0; /* "111" */
501 lead = 0xf0; /* "1111" */
518 *p = ucs4 | lead;
/freebsd-11-stable/contrib/tzcode/zic/
H A Dzdump.c629 register int lead; local
655 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
658 if (trail < 0 && lead > 0) {
660 --lead;
661 } else if (lead < 0 && trail > 0) {
663 ++lead;
665 if (lead == 0)
667 else (void) printf("%d%d", lead, ((trail < 0) ? -trail : trail));
/freebsd-11-stable/sys/netgraph/atm/
H A Dngatmbase.c92 size_t len, lead; local
94 lead = uni_msg_leading(m);
96 s += lead + len + EXTRA;
102 bcopy(m->b_rptr, b + lead, len);
106 m->b_rptr = m->b_buf + lead;
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_cd.c2004 struct cd_toc_single *lead; local
2012 lead = malloc(sizeof(*lead), M_SCSICD, M_WAITOK | M_ZERO);
2026 free(lead, M_SCSICD);
2036 free(lead, M_SCSICD);
2059 free(lead, M_SCSICD);
2081 free(lead, M_SCSICD);
2095 free(lead, M_SCSICD);
2107 LEADOUT, (u_int8_t *)lead,
2108 sizeof(*lead),
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp938 "Call to function 'vfork' is insecure as it can lead to "
988 "as it can lead to potential buffer overflows. Use the safer "
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1694 const char *lead; local
1698 lead = "0f";
1702 lead = "0d";
1708 O << lead << format_hex_no_prefix(API.getZExtValue(), numHex, /*Upper=*/true);
/freebsd-11-stable/contrib/libstdc++/libmath/
H A DMakefile.in44 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/libstdc++/
H A DMakefile.in49 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/libstdc++/libsupc++/
H A DMakefile.in46 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/binutils/gas/doc/
H A DMakefile.in47 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/binutils/bfd/doc/
H A DMakefile.in51 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/binutils/binutils/doc/
H A DMakefile.in47 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/libstdc++/src/
H A DMakefile.in44 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/gcclibs/libgomp/
H A DMakefile.in56 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A DMakefile.in53 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/gcclibs/libssp/
H A DMakefile.in55 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-endor-defs.h5492 uint32_t fall_val : 11; /**< Signed value (lead/lag) on falling edge of level signal */
5493 uint32_t rise_val : 11; /**< Signed value (lead/lag) on rising edge of level signal */
5876 uint32_t lead : 12; /**< unsigned value (lead) on beginning of window */ member in struct:cvmx_endor_rfif_rx_lead_lag::cvmx_endor_rfif_rx_lead_lag_s
5878 uint32_t lead : 12;
6726 uint32_t lead : 12; /**< unsigned value (lead) on beginning of window */ member in struct:cvmx_endor_rfif_tx_lead_lag::cvmx_endor_rfif_tx_lead_lag_s
6728 uint32_t lead : 12;
/freebsd-11-stable/contrib/libstdc++/include/
H A DMakefile.in44 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/binutils/binutils/
H A DMakefile.in65 $(top_srcdir)/../config/lead-dot.m4 \
/freebsd-11-stable/contrib/binutils/opcodes/
H A DMakefile.in53 $(top_srcdir)/../config/lead-dot.m4 \

Completed in 229 milliseconds

12