Searched refs:zs (Results 1 - 12 of 12) sorted by relevance

/haiku-buildtools/gcc/zlib/contrib/iostream2/
H A Dzstream.h115 inline int read(izstream& zs, T* x, Items items) { argument
116 return ::gzread(zs.fp(), x, items*sizeof(T));
123 inline izstream& operator>(izstream& zs, T& x) { argument
124 ::gzread(zs.fp(), &x, sizeof(T));
125 return zs;
129 inline zstringlen::zstringlen(izstream& zs) { argument
130 zs > val.byte;
131 if (val.byte == 255) zs > val.word;
138 inline izstream& operator>(izstream& zs, char* x) { argument
139 zstringlen len(zs);
145 read_string(izstream& zs) argument
264 write(ozstream& zs, const T* x, Items items) argument
272 operator <(ozstream& zs, const T& x) argument
277 zstringlen(ozstream& zs, const char* x) argument
[all...]
/haiku-buildtools/binutils/zlib/contrib/iostream2/
H A Dzstream.h115 inline int read(izstream& zs, T* x, Items items) { argument
116 return ::gzread(zs.fp(), x, items*sizeof(T));
123 inline izstream& operator>(izstream& zs, T& x) { argument
124 ::gzread(zs.fp(), &x, sizeof(T));
125 return zs;
129 inline zstringlen::zstringlen(izstream& zs) { argument
130 zs > val.byte;
131 if (val.byte == 255) zs > val.word;
138 inline izstream& operator>(izstream& zs, char* x) { argument
139 zstringlen len(zs);
145 read_string(izstream& zs) argument
264 write(ozstream& zs, const T* x, Items items) argument
272 operator <(ozstream& zs, const T& x) argument
277 zstringlen(ozstream& zs, const char* x) argument
[all...]
/haiku-buildtools/gcc/mpfr/tests/
H A Dtadd_ui.c31 check3 (const char *xs, unsigned long y, mpfr_rnd_t rnd_mode, const char *zs) argument
38 if (mpfr_cmp_str1(zz, zs) )
40 printf ("expected sum is %s, got ",zs);
H A Dtsub_ui.c31 check3 (const char *xs, unsigned long y, mpfr_rnd_t rnd_mode, const char *zs) argument
38 if (mpfr_cmp_str1(zz, zs))
40 printf ("expected sum is %s, got ", zs);
H A Dtui_div.c30 check (unsigned long y, const char *xs, mpfr_rnd_t rnd_mode, const char *zs) argument
37 if (mpfr_cmp_str1(zz, zs))
39 printf ("expected quotient is %s, got ", zs);
H A Dtui_sub.c145 check (unsigned long y, const char *xs, mpfr_rnd_t rnd_mode, const char *zs) argument
152 if (mpfr_cmp_str1 (zz, zs) )
154 printf ("expected difference is %s, got\n",zs);
H A Dtmul.c89 check53 (const char *xs, const char *ys, mpfr_rnd_t rnd_mode, const char *zs) argument
97 if (mpfr_cmp_str1 (zz, zs) )
101 printf ("correct result is %s,\n mpfr_mul gives ", zs);
111 mpfr_set_str1 (zz, zs);
121 check24 (const char *xs, const char *ys, mpfr_rnd_t rnd_mode, const char *zs) argument
129 if (mpfr_cmp_str1 (zz, zs) )
133 printf ("correct result is gives %s, mpfr_mul gives ", zs);
H A Dtadd.c69 /* checks that xs+ys gives the expected result zs */
72 unsigned int px, unsigned int py, unsigned int pz, const char *zs)
83 if (mpfr_cmp_str1 (zz, zs) )
85 printf ("expected sum is %s, got ", zs);
71 check(const char *xs, const char *ys, mpfr_rnd_t rnd_mode, unsigned int px, unsigned int py, unsigned int pz, const char *zs) argument
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dmethod.go131 var zs struct{ S }
139 if zs.val() != 1 {
140 println("zs.val:", zs.val())
164 if val(zs) != 1 {
165 println("val(zs):", val(zs))
195 if (&zs).val() != 1 {
196 println("(&zs).val:", (&zs)
[all...]
/haiku-buildtools/gcc/mpfr/src/
H A Dset_q.c28 * so that z = f*(2^BPML)*zs*2^(RetVal)
31 set_z (mpfr_ptr f, mpz_srcptr z, mp_size_t *zs) argument
41 for (p = PTR (z), s = *zs = ABS (SIZ (z)) ; *p == 0; p++, s--)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dpr59896.c804 __ULong si, zs; local
821 zs = (si >> 16) * q + (ys >> 16);
822 carry = zs >> 16;
826 z = (*bx >> 16) - (zs & 0xffff) + borrow;
851 zs = (si >> 16) + (ys >> 16);
852 carry = zs >> 16;
856 z = (*bx >> 16) - (zs & 0xffff) + borrow;
/haiku-buildtools/legacy/gcc/libio/
H A Dfloatconv.c1646 unsigned32 si, zs; local
1670 zs = (si >> 16) * q + (ys >> 16);
1671 carry = zs >> 16;
1675 z = (*bx >> 16) - (zs & 0xffff) + borrow;
1697 zs = (si >> 16) + (ys >> 16);
1698 carry = zs >> 16;
1702 z = (*bx >> 16) - (zs & 0xffff) + borrow;

Completed in 111 milliseconds