Home
last modified time | relevance | path

Searched refs:Long (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/openbsd-src/gnu/usr.bin/binutils/gdb/nlm/
H A Dppc.h1 typedef long Long; typedef
58 Long high;
59 Long low;
70 Long CsavedRegs[32]; /* space to save the General Registers */
72 Long CexReason;
73 Long SavedDomainID;
78 Long CsavedSRR0; /* Index 0 - The saved PC */
79 Long CsavedSRR1; /* 1 saved MSR */
80 Long CsavedCR; /* 2 */
81 Long CsavedLR; /* 3 */
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Getopt-Long/t/
H A Dgol-linkage.t12 use Getopt::Long;
17 Getopt::Long::Configure ("no_ignore_case");
29 Getopt::Long::Configure ("default","no_ignore_case");
44 Getopt::Long::Configure ("default","prefix_pattern=--|/|-|\\+","long_prefix_pattern=--|/");
63 Getopt::Long::Configure ("default","bundling","ignore_case_always",
73 Getopt::Long::Configure ("default","bundling","ignore_case_always",
88 Getopt::Long::Configure("default");
98 Getopt::Long::Configure("default");
99 Getopt::Long::Configure("pass_through");
112 Getopt::Long::Configure("default");
[all …]
H A Dgol-oo.t12 use Getopt::Long::Parser;
14 die("Getopt::Long version $want_version required--this is only version ".
15 $Getopt::Long::Parser::VERSION)
16 unless $Getopt::Long::Parser::VERSION ge $want_version;
20 my $p = new Getopt::Long::Parser (config => ["no_ignore_case"]);
34 my $o = Getopt::Long::Parser->new;
H A Dgol-xargv.t12 use Getopt::Long qw(GetOptionsFromArray :config no_ignore_case);
15 $Getopt::Long::VERSION)
16 unless $Getopt::Long::VERSION ge $want_version;
H A Dgol-xstring.t12 use Getopt::Long qw(GetOptionsFromString :config no_ignore_case);
15 $Getopt::Long::VERSION)
16 unless $Getopt::Long::VERSION ge $want_version;
H A Dgol-basic.t12 use Getopt::Long qw(:config no_ignore_case);
15 $Getopt::Long::VERSION)
16 unless $Getopt::Long::VERSION ge $want_version;
/openbsd-src/gnu/llvm/llvm/tools/llvm-rc/
H A DResourceScriptStmt.h32 bool Long; variable
36 : Val(Token.intValue()), Long(Token.isLongInt()) {} in RCInt()
37 RCInt(uint32_t Value) : Val(Value), Long(false) {} in RCInt()
38 RCInt(uint32_t Value, bool IsLong) : Val(Value), Long(IsLong) {} in RCInt()
40 bool isLong() const { return Long; } in isLong()
43 std::tie(Val, Long) = std::make_pair(Val + Rhs.Val, Long | Rhs.Long);
48 std::tie(Val, Long) = std::make_pair(Val - Rhs.Val, Long | Rhs.Long);
53 std::tie(Val, Long) = std::make_pair(Val | Rhs.Val, Long | Rhs.Long);
58 std::tie(Val, Long) = std::make_pair(Val & Rhs.Val, Long | Rhs.Long);
62 RCInt operator-() const { return {-Val, Long}; }
[all …]
H A DWindresOpts.td3 multiclass Long<string name, string help> {
35 defm preprocessor : Long<"preprocessor", "Custom preprocessor command">;
36 defm preprocessor_arg : Long<"preprocessor-arg", "Preprocessor command argument">;
/openbsd-src/lib/libc/gdtoa/
H A Dgdtoaimp.h576 extern void ULtof ANSI((ULong*, ULong*, Long, int));
577 extern void ULtod ANSI((ULong*, ULong*, Long, int));
578 extern void ULtodd ANSI((ULong*, ULong*, Long, int));
579 extern void ULtoQ ANSI((ULong*, ULong*, Long, int));
580 extern void ULtox ANSI((UShort*, ULong*, Long, int));
581 extern void ULtoxL ANSI((ULong*, ULong*, Long, int));
590 extern int gethex ANSI((CONST char**, FPI*, Long*, Bigint**, int));
610 extern int strtoIg ANSI((CONST char*, char**, FPI*, Long*, Bigint**, int*));
H A Dgdtoa.h38 #ifndef Long
39 #define Long int macro
42 typedef unsigned Long ULong;
114 extern int __strtodg ANSI((CONST char*, char**, FPI*, Long*, ULong*));
H A Dstrtord.c36 ULtod(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k; in ULtod()
38 ULtod(ULong *L, ULong *bits, Long exp, int k)
84 Long exp;
H A DstrtorQ.c54 ULtoQ(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k; in ULtoQ()
56 ULtoQ(ULong *L, ULong *bits, Long exp, int k)
108 Long exp;
H A Dstrtorx.c56 ULtox(L, bits, exp, k) UShort *L; ULong *bits; Long exp; int k; in ULtox()
58 ULtox(UShort *L, ULong *bits, Long exp, int k)
111 Long exp;
H A Dgethex.c41 CONST char **sp; FPI *fpi; Long *exp; Bigint **bp; int sign; in gethex()
43 gethex( CONST char **sp, FPI *fpi, Long *exp, Bigint **bp, int sign)
50 Long e, e1;
119 e = -(((Long)(s-decpt)) << 2);
/openbsd-src/gnu/usr.bin/perl/cpan/Getopt-Long/lib/Getopt/
H A DLong.pm3 # Getopt::Long.pm -- Universal options parsing
12 # Getopt::Long is reported to run under 5.6.1. Thanks Tux!
18 package Getopt::Long;
132 Getopt::Long::Configure ()
142 sub Getopt::Long::Parser::new {
143 require Getopt::Long::Parser;
144 goto &Getopt::Long::Parser::new;
236 ("Getopt::Long $VERSION ",
539 (Getopt::Long::CallBack->new
568 die("Getopt::Long
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/
H A DMM.pm115 require Getopt::Long;
120 Getopt::Long::config ('bundling_override');
121 Getopt::Long::GetOptions (\%options,
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/style/
H A Dmodule-version.t23 use Getopt::Long qw(GetOptions);
61 Getopt::Long::config('bundling', 'no_ignore_case');
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/
H A Dxsubpp16 use Getopt::Long;
22 Getopt::Long::Configure qw(no_auto_abbrev no_ignore_case);
/openbsd-src/usr.bin/libtool/LT/
H A DGetopt.pm30 return Option::Long->new($1);
36 return Option::Long->new($1);
84 package Option::Long;
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp419 QuotRemWithBB Long; in insertFastDivAndRem() local
420 Long.BB = MainBB; in insertFastDivAndRem()
421 Long.Quotient = ConstantInt::get(getSlowType(), 0); in insertFastDivAndRem()
422 Long.Remainder = Dividend; in insertFastDivAndRem()
424 QuotRemPair Result = createDivRemPhiNodes(Fast, Long, SuccessorBB); in insertFastDivAndRem()
/openbsd-src/lib/libcrypto/objects/
H A Dobjects.README9 1 2 3 4 : shortName : Long Name
34 1 2 3 4 : shortName : Long Name
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/
H A Dmapping.tml118 Long: 0
133 Long => 0,
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-define/
H A Dexpansion-order.txt36 # REDEFINE: %{local:greeting}=So Long %{global:what}
39 # CHECK: LOCAL: So Long World World
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/consistency.vlad/layout/i960-97r2-results/
H A Dsize-long.out1 +++Long size:
H A Dsize-long.out++1 +++Long size:

12345678910>>...12