Lines Matching defs:px
41 #define INC(px) { \
42 if (++px[n3] == 0) \
43 if (++px[n2] == 0) \
44 if (++px[n1] == 0) \
45 ++px[n0]; \
47 #define DEC(px) { \
48 if (--px[n3] == 0xffffffff) \
49 if (--px[n2] == 0xffffffff) \
50 if (--px[n1] == 0xffffffff) \
51 --px[n0]; \
64 #define INC(px) { \
65 if (++px[n2] == 0) \
66 if ((++px[n1] & ~0x80000000) == 0) \
67 px[n1] = 0x80000000, ++px[n0]; \
69 #define DEC(px) { \
70 if (--px[n2] == 0xffffffff) \
71 if (--px[n1] == 0x7fffffff) \
72 if ((--px[n0] & 0x7fff) != 0) \
73 px[n1] |= 0x80000000; \
79 int *px = (int *) &x;
88 px[n0] = py[n0] & XSGNMSK;
89 px[n1] = px[n2] = 0;
90 px[n3] = 1;
93 if ((px[n0] & XSGNMSK) == 0) { /* x > 0.0 */
95 DEC(px)
97 INC(px)
100 DEC(px)
102 INC(px)