| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/special/ |
| H A D | initp1.C | 5 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 D | unexpected1.C | 10 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 D | unexpected1_y.C | 2 struct Two { }; struct 13 throw Two (); in handle_unexpected() 18 doit () throw (Two) in doit()
|
| H A D | unexpected1_x.C | 4 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 D | if.out_ascii | 15 Two-line true condition without continuation and macros. 16 …Two-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 D | ie.out_ascii | 9 Two-line true condition. 11 Two-line else after false.
|
| /openbsd-src/regress/usr.bin/mandoc/mdoc/break/ |
| H A D | twice.out_markdown | 19 Two of the same kind, fully explicit: 24 Two of the same kind, implicit broken block: 29 Two implicit breakers:
|
| H A D | twice.out_ascii | 11 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 D | two.out_markdown | 27 Two of the same kind, explicit: 33 Two of the same kind, implicit:
|
| H A D | two.out_ascii | 15 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 D | cop | 200 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 D | ctors3.C | 14 template<class T> class Two : public One { 21 Two<Three> x[1];
|
| /openbsd-src/gnu/llvm/llvm/examples/Fibonacci/ |
| H A D | fibonacci.cpp | 64 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 D | paranoia.cc | 959 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 D | ModuleMaker.cpp | 50 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 D | PPCScheduleP10.td | 49 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 D | PPCScheduleP9.td | 88 // 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 D | ParallelJIT.cpp | 95 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 D | zero_valid | 4 ok 2 - Two
|
| /openbsd-src/regress/usr.bin/make/ |
| H A D | mk24 | 7 # Two suffixes implicit rules
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Usage/t/pod/ |
| H A D | usage2.pod | 7 =item Two
|
| /openbsd-src/gnu/gcc/gcc/config/bfin/ |
| H A D | bfin-modes.def | 25 /* Two of those - covering both accumulators for vector multiplications. */
|
| /openbsd-src/gnu/usr.bin/perl/t/re/ |
| H A D | script_run.t | 76 …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 D | calendar.fictional | 51 05/23 Two Yetis sighted, Mt. Everest, 1953
|
| /openbsd-src/gnu/usr.bin/binutils/gas/doc/ |
| H A D | c-d10v.texi | 130 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
|