Searched refs:doubleu (Results 1 – 1 of 1) sorted by relevance
612 #define FICL_2UNSIGNED_SET(high, low, doubleu) \ argument613 ((doubleu) = ((ficl2Unsigned)(low)) | \615 #define FICL_2UNSIGNED_GET_LOW(doubleu) \ argument616 ((ficlUnsigned)(doubleu & ((((ficl2Integer)1) << \618 #define FICL_2UNSIGNED_GET_HIGH(doubleu) \ argument619 ((ficlUnsigned)(doubleu >> FICL_BITS_PER_CELL))620 #define FICL_2UNSIGNED_NOT_ZERO(doubleu) ((doubleu) != 0) argument623 #define FICL_UNSIGNED_TO_2UNSIGNED(u, doubleu) ((doubleu) = (u)) argument660 #define FICL_2UNSIGNED_SET(hi, lo, doubleu) \ argument661 { ficl2Unsigned x; x.low = (lo); x.high = (hi); (doubleu) = x; }[all …]