Home
last modified time | relevance | path

Searched refs:Two (Results 1 – 25 of 268) sorted by relevance

1234567891011

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/special/
H A Dinitp1.C5 class Two {
10 Two( int ii, int jj ) { i = ii; j = jj; k = count++; }; in Two() function
11 Two( void ) { i = 0; j = 0; k = count++; }; in Two() function
17 extern Two foo;
18 extern Two goo;
19 extern Two coo[];
20 extern Two koo[];
22 Two foo( 5, 6 ) __attribute__((init_priority(1005)));
24 Two goo __attribute__((init_priority(1007))) = Two( 7, 8 );
26 Two doo[ 3 ];
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/eh/
H A Dunexpected1.C10 struct Two { }; struct
21 throw Two (); in handle_unexpected()
26 doit () throw (Two) in doit()
39 catch (Two &) in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/eh/
H A Dunexpected1_y.C2 struct Two { }; struct
13 throw Two (); in handle_unexpected()
18 doit () throw (Two) in doit()
H A Dunexpected1_x.C4 struct Two { }; struct
7 extern void doit (void) throw (Two);
19 catch (Two &) in unexpected1_x()
/openbsd-src/regress/usr.bin/mandoc/roff/cond/
H A Dif.out_ascii15 Two-line true condition without continuation and macros.
16Two-line true condition wwiitthhoouutt ccoonnttiinnuuaattiioonn bbuutt wwi…
17 Two-line true condition with continuation and macros.
19 Two-line true condition with blank line.
H A Die.out_ascii9 Two-line true condition.
11 Two-line else after false.
/openbsd-src/regress/usr.bin/mandoc/mdoc/break/
H A Dtwice.out_markdown19 Two of the same kind, fully explicit:
24 Two of the same kind, implicit broken block:
29 Two implicit breakers:
H A Dtwice.out_ascii11 Two of the same kind, fully explicit: [bo [bo <ao bc] bc] ac>
13 Two of the same kind, implicit broken block: [bo [bo <aq bc] bc] eol>
15 Two implicit breakers: <aq [bq (po]> pc)
H A Dtwo.out_markdown27 Two of the same kind, explicit:
33 Two of the same kind, implicit:
H A Dtwo.out_ascii15 Two of the same kind, explicit: <ao [bo [bo ac> bc] bc]
17 Two of the same kind, implicit: <aq [bo [bo eol>] bc]
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/
H A Dcop200 package Two;
216 [\&Two::two, 0, qw/Two one Two one/],
217 [\&Two::two, 1, qw/main two main two/],
218 [\&Two::dbtwo, 0, qw/Two sub DB one/],
219 [\&Two::dbtwo, 1, qw/main dbtwo main dbtwo/],
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dctors3.C14 template<class T> class Two : public One {
21 Two<Three> x[1];
/openbsd-src/gnu/llvm/llvm/examples/Fibonacci/
H A Dfibonacci.cpp64 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); in CreateFibFunction() local
76 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); in CreateFibFunction()
88 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction()
/openbsd-src/gnu/usr.bin/gcc/contrib/
H A Dparanoia.cc959 FLOAT Two; member
1033 Two = long(2); in main()
1058 TstCond (Failure, (One + One == Two), "1+1 != 2"); in main()
1070 TstCond (Failure, (Three == Two + One), "3 != 2+1"); in main()
1072 TstCond (Failure, (Four + Two * (-Two) == Zero), "4 + 2*(-2) != 0"); in main()
1129 if (Radix < Two) in main()
1175 X = Two / Three; in main()
1209 TstCond (Flaw, (Radix == Two) || (Radix == 10) in main()
1267 X = Y = Z = FABS ((Three / Four - Two / Three) * Three - One / Four); in main()
1271 Z = (One / Two - ((One / Two - (Half * Z1 + ThirtyTwo * Z1 * Z1)) in main()
[all …]
/openbsd-src/gnu/llvm/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp50 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); in main() local
54 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three, in main()
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCScheduleP10.td49 def P10_BR : ProcResource<2>; // Two Branch pipelines.
52 def P10_DV : ProcResource<2>; // Two Fixed-point divide (DIV) pipelines.
53 def P10_DX : ProcResource<2>; // Two 128-bit fixed-point and BCD pipelines.
55 def P10_LD : ProcResource<2>; // Two Load pipelines.
56 def P10_MM : ProcResource<2>; // Two 512-bit SIMD matrix multiply engine pipelines.
58 def P10_ST : ProcResource<2>; // Two ST-D pipelines.
59 def P10_SX : ProcResource<2>; // Two Simple Fixed-point (SFX) pipelines.
H A DPPCScheduleP9.td88 // Four ALU (Fixed Point Arithmetic) units in total. Two even, two Odd.
99 // Two DIV (Fixed Point Divide) units.
102 // Four DP (Floating Point) units in total. Two even, two Odd.
116 // Two PM (Permute) units.
/openbsd-src/gnu/llvm/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp95 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); in CreateFibFunction() local
107 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); in CreateFibFunction()
118 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction()
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/sample-tests/
H A Dzero_valid4 ok 2 - Two
/openbsd-src/regress/usr.bin/make/
H A Dmk247 # Two suffixes implicit rules
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Usage/t/pod/
H A Dusage2.pod7 =item Two
/openbsd-src/gnu/gcc/gcc/config/bfin/
H A Dbfin-modes.def25 /* Two of those - covering both accumulators for vector multiplications. */
/openbsd-src/gnu/usr.bin/perl/t/re/
H A Dscript_run.t76 …unlike("\N{JAVANESE PANGRANGKEP}\N{GEORGIAN PARAGRAPH SEPARATOR}", $script_run, "Two code points e…
77 …RAMA}\N{VEDIC TONE YAJURVEDIC KATHAKA INDEPENDENT SVARITA}", $script_run, "Two code points each in…
89 "Two digits in same extended script but from different sets of 10";
/openbsd-src/usr.bin/calendar/calendars/
H A Dcalendar.fictional51 05/23 Two Yetis sighted, Mt. Everest, 1953
/openbsd-src/gnu/usr.bin/binutils/gas/doc/
H A Dc-d10v.texi130 Two-line format. Execute these in parallel.
133 Two-line format. Execute these sequentially. Assembler will
137 Two-line format. Execute these sequentially. Same as above but

1234567891011