Searched refs:z1 (Results 1 - 25 of 31) sorted by relevance

12

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/execute/
H A Dcomplex_1.f2 complex z0, z1, z2 variable in program:complex_1
5 z1 = 1./z0
6 if (z1 .ne. cmplx(0.,-2)) call abort
12 z1 = z0/z2
13 if (z1 .ne. cmplx(2.,1.)) call abort
15 z1 = z0*z2
16 if (z1 .ne. cmplx(-10.,5.)) call abort
H A Ddcomplex.f2 complex*16 z0, z1, z2 variable in program:foo
5 z1 = 1./z0
6 if (z1 .ne. dcmplx(0.,-2)) call abort
12 z1 = z0/z2
13 if (z1 .ne. dcmplx(2.,1.)) call abort
15 z1 = z0*z2
16 if (z1 .ne. dcmplx(-10.,5.)) call abort
H A Dcabs.f4 complex*16 z1 variable in program:cabs_1
11 z1 = dcmplx(3.d0,4.d0)
12 r1 = zabs(z1)
/openbsd-current/lib/libc/softfloat/
H A Dsoftfloat-macros.h72 bits32 z0, z1; local
76 z1 = a1;
80 z1 = ( a0<<negCount ) | ( a1>>count );
84 z1 = ( count < 64 ) ? ( a0>>( count & 31 ) ) : 0;
87 *z1Ptr = z1;
108 bits32 z0, z1; local
112 z1 = a1;
116 z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );
121 z1 = a0 | ( a1 != 0 );
124 z1
167 bits32 z0, z1, z2; local
246 bits32 z0, z1, z2; local
275 bits32 z1; local
305 bits32 z0, z1, z2; local
363 bits32 z0, z1, z2; local
391 bits32 z0, zMiddleA, zMiddleB, z1; local
429 bits32 z0, z1, z2, more1; local
460 bits32 z0, z1, z2, z3; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.ns/
H A Dtemplate5.C28 Y<int> z1; local
29 if (z1.f(5) != 2)
/openbsd-current/sys/lib/libkern/
H A Dsoftfloat-macros.h114 bits64 z0, z1; local
118 z1 = a1;
122 z1 = ( a0<<negCount ) | ( a1 != 0 );
127 z1 = a0 | ( a1 != 0 );
130 z1 = ( ( a0 | a1 ) != 0 );
134 *z1Ptr = z1;
154 bits64 z0, z1; local
158 z1 = a1;
162 z1 = ( a0<<negCount ) | ( a1>>count );
166 z1
190 bits64 z0, z1; local
249 bits64 z0, z1, z2; local
332 bits64 z0, z1, z2; local
363 bits64 z1; local
395 bits64 z0, z1, z2; local
457 bits64 z0, z1, z2; local
486 bits64 z0, zMiddleA, zMiddleB, z1; local
526 bits64 z0, z1, z2, more1; local
557 bits64 z0, z1, z2, z3; local
[all...]
/openbsd-current/lib/libcrypto/des/
H A Dqud_cksm.c80 DES_LONG z0, z1, t0, t1; local
92 z1 = Q_B0((*seed)[4])|Q_B1((*seed)[5])|Q_B2((*seed)[6])|Q_B3(
109 t1 = z1;
114 z1 = ((t0*((t1 + NOISE) & 0xffffffffL)) & 0xffffffffL) %
121 *lp++ = z1;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dbcopy.c32 long long z0, z1; local
41 z1 = *((long long *) s);
48 *(long long *)(s + r) = z1;
49 z1 = *((long long *) s);
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/23_containers/
H A Dbitset_ctor.cc91 std::bitset<0> z1; local
92 VERIFY( z1.any() == false );
101 z1.set(0);
111 VERIFY( z1.to_ulong() == 0 );
112 VERIFY( ( z1.to_string<char,char_traits<char>,allocator<char> >().empty() ) );
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dinstantiate8.C28 Z z1; // ERROR - incomplete local
/openbsd-current/gnu/gcc/libgomp/testsuite/libgomp.c/
H A Datomic-10.c7 volatile unsigned char z1, z2, z3, z4, z5; variable
80 z1++;
90 z1 |= 1;
100 z1 /= 3;
130 if (z1 != 0 || z2 != 8 || z3 != 0 || z4 != 253 || z5 != 0)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dvaarg3.C20 Z z1 = va_arg (args, Z); // ERROR - incomplete local
/openbsd-current/gnu/usr.bin/perl/dist/Math-Complex/t/
H A DComplex.t27 'my ($res, $s0,$s1,$s2,$s3,$s4,$s5,$s6,$s7,$s8,$s9,$s10,$z0,$z1,$z2);' .
402 my \$z1 = cplxe();
403 print ((\$z1->rho() == 0) ? "ok $test\n" : "not ok $test\n");
408 print ((\$z1->theta() == 0) ? "ok $test\n" : "not ok $test\n");
504 $try = "abs(\$z0 - \$z1) <= $eps ? \$z1 : \$z0";
513 $try = ($op =~ /^\w/) ? "$op(\$z0, \$z1)" : "\$z0 $op \$z1";
525 my (\$z1r, \$z1i) = ref \$z1 ? \@{\$z1
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/Math-Complex/lib/Math/
H A DComplex.pm450 # Computes z1+z2.
453 my ($z1, $z2, $regular) = @_;
454 my ($re1, $im1) = @{$z1->_cartesian};
458 $z1->_set_cartesian([$re1 + $re2, $im1 + $im2]);
459 return $z1;
461 return (ref $z1)->make($re1 + $re2, $im1 + $im2);
467 # Computes z1-z2.
470 my ($z1, $z2, $inverted) = @_;
471 my ($re1, $im1) = @{$z1->_cartesian};
475 $z1
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/Attribute-Handlers/demo/
H A Ddemo2.pl7 my %z1 :Multi(method?maybe);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dc99-tag-1.c131 int z1[sizeof (struct e1 *)]; /* { dg-bogus "warning" "warning in place of error" } */ local
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DARM64_DWARF_Registers.h116 z1, enumerator in enum:arm64_dwarf::__anon1558
H A DARM64_ehframe_Registers.h115 z1, enumerator in enum:arm64_ehframe::__anon1559
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.mi/
H A Dvar-cmd.c204 long z0, *z1, **z2, ***z3; local
245 z1 = &z0;
246 z2 = &z1;
/openbsd-current/usr.sbin/unbound/services/
H A Dauthzone.h649 int auth_zone_cmp(const void* z1, const void* z2);
652 int auth_data_cmp(const void* z1, const void* z2);
655 int auth_xfer_cmp(const void* z1, const void* z2);
H A Dlocalzone.h232 * @param z1: zone 1
236 int local_zone_cmp(const void* z1, const void* z2);
/openbsd-current/sbin/unwind/libunbound/services/
H A Dauthzone.h649 int auth_zone_cmp(const void* z1, const void* z2);
652 int auth_data_cmp(const void* z1, const void* z2);
655 int auth_xfer_cmp(const void* z1, const void* z2);
H A Dlocalzone.h232 * @param z1: zone 1
236 int local_zone_cmp(const void* z1, const void* z2);
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DRegisterInfos_arm64_sve.h410 DEFINE_VREG_SVE(v1, z1),
444 DEFINE_FPU_PSEUDO_SVE(s1, 4, z1),
477 DEFINE_FPU_PSEUDO_SVE(d1, 8, z1),
516 DEFINE_ZREG(z1),
/openbsd-current/sys/crypto/
H A Daes.c111 uint32_t z0, z1, z2, z3, z4, z5, z6, z7, z8, z9; local
208 z1 = t37 & y6;
249 t66 = z1 ^ t63;

Completed in 187 milliseconds

12