Lines Matching defs:intf

46   int intf, intz, argcount;
67 intf = *(int *) x; /* upper half of x, as integer */
70 if (intf < 0) {
71 intf = intf & ~0x80000000; /* abs(upper argument) */
76 if ((intf > 0x5B000000) || (intf < 0x31800000)) /* filter out special cases */
78 if (intf > 0x7f800000)
82 else if (intf < 0x31800000) /* avoid underflow for small arg */
88 else if (intf > 0x5B000000) /* avoid underflow for big arg */
101 if (intf > 0x42800000) /* if (|x| > 64 */
106 else if (intf >= 0x3C800000) /* if |x| >= (1/64)... */
108 intz = (intf + 0x00040000) & 0x7ff80000;/* round arg, keep upper */
133 intf = *(int *) x; /* upper half of x, as integer */
136 if (intf < 0) {
137 intf = intf & ~0x80000000; /* abs(upper argument) */
142 if ((intf > 0x5B000000) || (intf < 0x31800000)) /* filter out special cases */
144 if (intf > 0x7f800000)
148 else if (intf < 0x31800000) /* avoid underflow for small arg */
154 else if (intf > 0x5B000000) /* avoid underflow for big arg */
170 if (intf > 0x42800000) /* if (|x| > 64 */
175 else if (intf >= 0x3C800000) /* if |x| >= (1/64)... */
177 intz = (intf + 0x00040000) & 0x7ff80000;/* round arg, keep upper */
203 intf = *(int *) x; /* upper half of x, as integer */
206 if (intf < 0) {
207 intf = intf & ~0x80000000; /* abs(upper argument) */
212 if ((intf > 0x5B000000) || (intf < 0x31800000)) /* filter out special cases */
214 if (intf > 0x7f800000)
218 else if (intf < 0x31800000) /* avoid underflow for small arg */
224 else if (intf > 0x5B000000) /* avoid underflow for big arg */
240 if (intf > 0x42800000) /* if (|x| > 64 */
245 else if (intf >= 0x3C800000) /* if |x| >= (1/64)... */
247 intz = (intf + 0x00040000) & 0x7ff80000;/* round arg, keep upper */
274 intf = *(int *) x; /* upper half of x, as integer */
277 if (intf < 0) {
278 intf = intf & ~0x80000000; /* abs(upper argument) */
283 if ((intf > 0x5B000000) || (intf < 0x31800000)) /* filter out special cases */
285 if (intf > 0x7f800000)
289 else if (intf < 0x31800000) /* avoid underflow for small arg */
295 else if (intf > 0x5B000000) /* avoid underflow for big arg */
311 if (intf > 0x42800000) /* if (|x| > 64 */
318 else if (intf >= 0x3C800000) /* if |x| >= (1/64)... */
320 intz = (intf + 0x00040000) & 0x7ff80000;/* round arg, keep upper */