/openbsd/gnu/usr.bin/perl/cpan/Text-Tabs/lib/Text/ |
H A D | Wrap.pm | 39 my $lead = $ip; 58 ? unexpand($nl . $lead . $1) 59 : $nl . $lead . $1; 63 ? unexpand($nl . $lead . $1) 64 : $nl . $lead . $1; 68 ? unexpand($nl . $lead . $1) 69 : $nl . $lead . $1; 81 $lead = $xp; 91 $r .= $lead . substr($t, pos($t), length($t) - pos($t))
|
/openbsd/lib/libc/time/ |
H A D | strftime.c | 525 int lead; in _yconv() local 530 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv() 532 if (trail < 0 && lead > 0) { in _yconv() 534 --lead; in _yconv() 535 } else if (lead < 0 && trail > 0) { in _yconv() 537 ++lead; in _yconv() 540 if (lead == 0 && trail < 0) in _yconv() 542 else pt = _conv(lead, "%02d", pt, ptlim); in _yconv()
|
H A D | wcsftime.c | 527 int lead; in _yconv() local 532 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv() 534 if (trail < 0 && lead > 0) { in _yconv() 536 --lead; in _yconv() 537 } else if (lead < 0 && trail > 0) { in _yconv() 539 ++lead; in _yconv() 542 if (lead == 0 && trail < 0) in _yconv() 544 else pt = _conv(lead, L"%02d", pt, ptlim); in _yconv()
|
/openbsd/usr.sbin/zdump/ |
H A D | zdump.c | 419 int lead, trail; in dumptime() local 446 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime() 449 if (trail < 0 && lead > 0) { in dumptime() 451 --lead; in dumptime() 452 } else if (lead < 0 && trail > 0) { in dumptime() 454 ++lead; in dumptime() 456 if (lead == 0) in dumptime() 459 printf("%d%d", lead, ((trail < 0) ? -trail : trail)); in dumptime()
|
/openbsd/lib/libc/citrus/ |
H A D | citrus_utf8.c | 262 unsigned char lead; in _citrus_utf8_ctype_wcrtomb() local 291 lead = 0xc0; in _citrus_utf8_ctype_wcrtomb() 294 lead = 0xe0; in _citrus_utf8_ctype_wcrtomb() 297 lead = 0xf0; in _citrus_utf8_ctype_wcrtomb() 311 *s = (wc & 0xff) | lead; in _citrus_utf8_ctype_wcrtomb()
|
/openbsd/gnu/usr.bin/perl/cpan/Test2-Suite/lib/Test2/Util/ |
H A D | Importer.pm | 509 my $lead = substr($arg, 0, 1); 512 if ($lead eq '!') { 513 $exc = $lead; 529 $lead = substr($arg, 0, 1); 537 if($lead eq ':') { 587 elsif($lead eq '/' && $arg =~ m{^/(.*)/$}) {
|
/openbsd/gnu/usr.bin/perl/ |
H A D | regcomp_debug.c | 316 S_regdump_intflags(pTHX_ const char *lead, const U32 flags) in S_regdump_intflags() argument 325 if (!set++ && lead) in S_regdump_intflags() 326 Perl_re_printf( aTHX_ "%s", lead); in S_regdump_intflags() 330 if (lead) { in S_regdump_intflags() 334 Perl_re_printf( aTHX_ "%s[none-set]\n", lead); in S_regdump_intflags() 339 S_regdump_extflags(pTHX_ const char *lead, const U32 flags) in S_regdump_extflags() argument 352 if (!set++ && lead) in S_regdump_extflags() 353 Perl_re_printf( aTHX_ "%s", lead); in S_regdump_extflags() 358 if (!set++ && lead) { in S_regdump_extflags() 359 Perl_re_printf( aTHX_ "%s", lead); in S_regdump_extflags() [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/bignum/t/ |
H A D | bigexp.t | 4 # test for bug #18025: bigfloat/bigrat can lead to a number that is both 1 and 0
|
/openbsd/gnu/usr.bin/perl/pod/ |
H A D | perldsc.pod | 539 # "lead","fred","daughter","pebbles" 556 $AoH[0]{lead} = "fred"; 559 $AoH[1]{lead} =~ s/(\w)/\u$1/; 593 lead => "fred", 597 lead => "george", 602 lead => "homer", 611 # flintstones: lead=fred pal=barney wife=wilma pet=dino 667 $HoH{simpsons}{lead} =~ s/(\w)/\u$1/; 700 for ( qw(lead wife son daughter pal pet) ) { $rank{$_} = ++$i } 777 { name => "homer", role => "lead", age => 34, }, [all …]
|
/openbsd/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-define/errors/defined-check/ |
H A D | redefine-multiple-once-exact.txt | 2 # another partial match, and that can lead to confusing expansions.
|
/openbsd/gnu/gcc/libcpp/ |
H A D | aclocal.m4 | 19 m4_include([../config/lead-dot.m4])
|
/openbsd/distrib/notes/amd64/ |
H A D | prep | 12 will lead you to the system administration tool. You do not have to create an
|
/openbsd/gnu/llvm/llvm/utils/lit/ |
H A D | CMakeLists.txt | 13 # configure time (i.e. `file(COPY ...)`) because this could lead to stale
|
/openbsd/distrib/notes/i386/ |
H A D | prep | 16 will lead you to the system administration tool. You do not have to create an
|
/openbsd/gnu/llvm/llvm/docs/HistoricalNotes/ |
H A D | 2001-06-20-.NET-Differences.txt | 17 I also talked to the lead guy for KAI's C++ compiler (Arch Robison) and he
|
H A D | 2001-06-01-GCCOptimizations2.txt | 12 would lead to a pipeline like this:
|
/openbsd/lib/libc/stdio/ |
H A D | vfwprintf.c | 316 int lead; /* sig figs before decimal or group sep */ in __vfwprintf() local 779 lead = expt; in __vfwprintf() 1021 lead, zeroes); in __vfwprintf() 1022 cp += lead; in __vfwprintf()
|
H A D | vfprintf.c | 323 int lead; /* sig figs before decimal or group sep */ in __vfprintf() local 813 lead = expt; in __vfprintf() 1042 PRINTANDPAD(cp, dtoaend, lead, zeroes); in __vfprintf() 1043 cp += lead; in __vfprintf()
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | StackSafetyAnalysis.rst | 47 'unsafe' when in-fact it's 'safe'. This may lead to inefficient code. However, we
|
/openbsd/gnu/usr.bin/texinfo/m4/ |
H A D | iconv.m4 | 67 dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV
|
/openbsd/gnu/usr.bin/binutils-2.17/config/ |
H A D | iconv.m4 | 67 dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV
|
/openbsd/gnu/gcc/config/ |
H A D | iconv.m4 | 67 dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV
|
/openbsd/games/cribbage/ |
H A D | cribbage.n | 84 last card must lead for a new count starting at zero. Playing the last 85 card of all counts as a go. (Since nondealer makes the opening lead, 217 Proverbially the safest lead is a 4. The next card cannot make
|
/openbsd/gnu/llvm/llvm/docs/GlobalISel/ |
H A D | IRTranslator.rst | 92 for expensive non-foldable constants. However, this can lead to unnecessary
|
/openbsd/usr.bin/file/magdir/ |
H A D | sun | 121 # lead Sun/Cobalt developer) who agrees that they are good and worthy of
|