Lines Matching defs:px
37 int *px = (int *) &x;
38 return ((px[0] & ~0x80000000) >= 0x7fff0000 &&
39 ((px[0] & ~0xffff0000) | px[1] | px[2] | px[3]) != 0);
44 int *px = (int *) &x, t = px[2] & 0x7fff;
46 return (t == 0x7fff && ((px[1] & ~0x80000000) | px[0]) != 0 ||
47 t != 0 && (px[1] & 0x80000000) == 0);
49 return (t == 0x7fff && ((px[1] & ~0x80000000) | px[0]) != 0);