Lines Matching defs:ix
272 int ix, i;
274 ix = *(int *)&fx & ~0x80000000;
276 if (ix > 0x41000000) {
287 if (ix > 0x501502f9) {
305 if (ix <= 0x3727c5ac) {
307 if (ix <= 0x219392ef) /* x <= 1.0e-18 */
312 if (ix <= 0x3fa3d70a) {
331 int ix;
336 ix = *(int *)&fx & ~0x80000000;
337 if (ix >= 0x7f800000) { /* nan or inf */
338 if (ix > 0x7f800000)
359 int ix, i;
361 ix = *(int *)&fx;
363 if (ix > 0x41000000) {
374 if (ix > 0x501502f9) {
392 if (ix <= 0x219392ef) /* x <= 1.0e-18 */
406 int ix;
411 ix = *(int *)&fx;
412 if ((ix & ~0x80000000) > 0x7f800000) /* nan */
414 if (ix <= 0) { /* zero or negative */
415 if ((ix << 1) == 0)
419 if (ix == 0x7f800000) /* +inf */
438 int i, ix, sgn;
440 ix = *(int *)&fx;
441 sgn = (unsigned)ix >> 31;
442 ix &= ~0x80000000;
444 if (ix > 0x41000000) {
455 if (ix > 0x501502f9) {
474 if (ix <= 0x3727c5ac) {
476 if (ix <= 0x219392ef) /* x <= 1.0e-18 */
483 if (ix < 0x3fa3d70a) {
502 int ix;
507 ix = *(int *)&fx & ~0x80000000;
508 if (ix >= 0x7f800000) /* nan or inf */
527 int i, ix;
529 ix = *(int *)&fx;
531 if (ix > 0x41000000) {
542 if (ix > 0x501502f9) {
560 if (ix <= 0x219392ef) /* x <= 1.0e-18 */
563 if (ix < 0x3fa3d70a) {
580 int ix;
585 ix = *(int *)&fx;
586 if ((ix & ~0x80000000) > 0x7f800000) /* nan */
588 if (ix <= 0) { /* zero or negative */
589 if ((ix << 1) == 0)
593 if (ix == 0x7f800000) /* +inf */
612 int i, ix, sgn, m, k;
626 ix = *(int *)&fx;
627 sgn = (n & 1)? ((unsigned)ix >> 31) : 0;
628 ix &= ~0x80000000;
629 if (ix >= 0x7f800000) { /* nan or inf */
630 if (ix > 0x7f800000)
634 if ((ix << 1) == 0)
658 if (ix < 0x3089705f) {
760 int i, sign, ix;
776 ix = *(int *)&fx;
777 if ((ix & ~0x80000000) > 0x7f800000) /* nan */
779 if (ix <= 0) { /* zero or negative */
780 if ((ix << 1) == 0)
784 if (ix == 0x7f800000) /* +inf */