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

/vbox/src/libs/zlib-1.2.6/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...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Ddmisc.c123 ULong si, z, zs; local
159 zs = (si >> 16) * q + (ys >> 16);
160 carry = zs >> 16;
163 z = (*bx >> 16) - (zs & 0xffff) - borrow;
202 zs = (si >> 16) + (ys >> 16);
203 carry = zs >> 16;
206 z = (*bx >> 16) - (zs & 0xffff) - borrow;
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprdtoa.c2512 ULong si, z, zs; local
2546 zs = (si >> 16) * q + (ys >> 16);
2547 carry = zs >> 16;
2550 z = (*bx >> 16) - (zs & 0xffff) - borrow;
2587 zs = (si >> 16) + (ys >> 16);
2588 carry = zs >> 16;
2591 z = (*bx >> 16) - (zs & 0xffff) - borrow;

Completed in 663 milliseconds