Home
last modified time | relevance | path

Searched refs:lead (Results 1 – 25 of 158) sorted by relevance

1234567

/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/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()
H A Dvfprintf.c83 int lead; /* sig figs before decimal or group sep */ member
104 gs->lead = ndigits; in grouping_init()
106 if (gs->lead <= *gs->grouping) in grouping_init()
108 gs->lead -= *gs->grouping; in grouping_init()
127 if (io_printandpad(iop, cp, ep, gs->lead, zeroes, locale)) in grouping_print()
129 cp += gs->lead; in grouping_print()
H A Dvfwprintf.c81 int lead; /* sig figs before decimal or group sep */ member
130 gs->lead = ndigits; in grouping_init()
132 if (gs->lead <= *gs->grouping) in grouping_init()
134 gs->lead -= *gs->grouping; in grouping_init()
153 if (io_printandpad(iop, cp, ep, gs->lead, zeroes, locale)) in grouping_print()
155 cp += gs->lead; in grouping_print()
/freebsd/contrib/tzcode/
H A Dstrftime.c687 register int lead; in _yconv() local
692 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
694 if (trail < 0 && lead > 0) { in _yconv()
696 --lead; in _yconv()
697 } else if (lead < 0 && trail > 0) { in _yconv()
699 ++lead; in _yconv()
702 if (lead == 0 && trail < 0) in _yconv()
704 else pt = _conv(lead, "%02d", pt, ptlim); in _yconv()
H A Dzdump.c1178 register int lead; in dumptime() local
1197 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime()
1200 if (trail < 0 && lead > 0) { in dumptime()
1202 --lead; in dumptime()
1203 } else if (lead < 0 && trail > 0) { in dumptime()
1205 ++lead; in dumptime()
1207 if (lead == 0) in dumptime()
1209 else printf("%d%d", lead, ((trail < 0) ? -trail : trail)); in dumptime()
/freebsd/lib/libc/stdtime/
H A Dstrftime.c602 register int lead; in _yconv() local
607 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
609 if (trail < 0 && lead > 0) { in _yconv()
611 --lead; in _yconv()
612 } else if (lead < 0 && trail > 0) { in _yconv()
614 ++lead; in _yconv()
617 if (lead == 0 && trail < 0) in _yconv()
619 else pt = _conv(lead, "%02d", pt, ptlim, loc); 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/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/contrib/tcsh/nls/russian/
H A Dset94 2 AddXkey: sequence-lead-in command not allowed\n
/freebsd/contrib/tcsh/nls/C/
H A Dset94 2 AddXkey: sequence-lead-in command not allowed\n
/freebsd/contrib/tcsh/nls/ukrainian/
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
/freebsd/contrib/tcsh/nls/finnish/
H A Dset94 2 AddXkey: sequence-lead-in command not allowed\n
/freebsd/contrib/tcsh/nls/italian/
H A Dset94 2 AddXkey: comando `sequence-lead-in' non permesso\n
/freebsd/contrib/tcsh/nls/french/
H A Dset94 2 AddXkey: commande séquence d'introduction (sequence-lead-in) pas autorisé\n
/freebsd/contrib/tcsh/nls/spanish/
H A Dset94 2 AddXkey: No se permite comando introducción de secuencia (sequence-lead-in)\n
/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/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-pinephone-1.1.dts17 * 1.0, and the lowest PWM duty cycle that doesn't lead to backlight
H A Dsun50i-a64-pinephone-1.2.dts22 * and the lowest PWM duty cycle that doesn't lead to backlight being off
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
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/sys/cam/scsi/
H A Dscsi_cd.c2045 struct cd_toc_single *lead; in cdioctl() local
2053 lead = malloc(sizeof(*lead), M_SCSICD, M_WAITOK | M_ZERO); in cdioctl()
2067 free(lead, M_SCSICD); in cdioctl()
2077 free(lead, M_SCSICD); in cdioctl()
2100 free(lead, M_SCSICD); in cdioctl()
2122 free(lead, M_SCSICD); in cdioctl()
2136 free(lead, M_SCSICD); in cdioctl()
2148 LEADOUT, (uint8_t *)lead, in cdioctl()
2149 sizeof(*lead), in cdioctl()
2153 free(lead, M_SCSICD); in cdioctl()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dadi,adv7343.txt3 The ADV7343 are high speed, digital-to-analog video encoders in a 64-lead LQFP

1234567