Lines Matching refs:xx
78 } xx;
95 lx = xx.d = x;
96 hx = (xx.i[0] & ~0x80000000) | xx.i[1];
106 xx.i[0] = yy.i[0];
107 return (xx.d);
114 xx.i[0] = 0;
115 xx.i[1] = 0x00000001;
116 } else if ((int)xx.i[0] >= 0) { /* x is positive */
117 if (++xx.i[1] == 0)
118 xx.i[0]++;
120 if (xx.i[1]-- == 0)
121 xx.i[0]--;
125 xx.i[0] = 0x80000000;
126 xx.i[1] = 0x00000001;
127 } else if ((int)xx.i[0] >= 0) { /* x is positive */
128 if (xx.i[1]-- == 0)
129 xx.i[0]--;
131 if (++xx.i[1] == 0)
132 xx.i[0]++;
137 hx = xx.i[0] & ~0x80000000;
146 return (xx.d);
167 } xx;
172 lx = xx.d = x;
173 hx = (xx.i[1] & ~0x80000000) | xx.i[0];
184 xx.i[0] = 0x00000001;
185 xx.i[1] = 0;
186 } else if ((int)xx.i[1] >= 0) { /* x is positive */
187 if (++xx.i[0] == 0)
188 xx.i[1]++;
190 if (xx.i[0]-- == 0)
191 xx.i[1]--;
195 xx.i[0] = 0x00000001;
196 xx.i[1] = 0x80000000;
197 } else if ((int)xx.i[1] >= 0) { /* x is positive */
198 if (xx.i[0]-- == 0)
199 xx.i[1]--;
201 if (++xx.i[0] == 0)
202 xx.i[1]++;
207 hx = xx.i[1] & ~0x80000000;
216 return (xx.d);