aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorLawrence Stewart <lstewart@FreeBSD.org>2024-04-02 05:07:04 +0000
committerLawrence Stewart <lstewart@FreeBSD.org>2024-04-02 06:16:00 +0000
commit743d4b7cc5e217a2120b3b5d4d1b284e1e5b7ea2 (patch)
tree86260df23638f81cbb610b28420a086b397f77b7 /sys/sys
parent2db2566f55b06d80e28c932ec30b5730815d95a2 (diff)
downloadsrc-743d4b7cc5e217a2120b3b5d4d1b284e1e5b7ea2.tar.gz
src-743d4b7cc5e217a2120b3b5d4d1b284e1e5b7ea2.zip
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/qmath.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/sys/sys/qmath.h b/sys/sys/qmath.h
index fa5acdb985be..bfaad75e77ee 100644
--- a/sys/sys/qmath.h
+++ b/sys/sys/qmath.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 Netflix, Inc.
+ * Copyright (c) 2018-2024 Netflix, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -378,15 +378,18 @@ typedef u64q_t umaxq_t;
#define Q_QMINQ(a, b) (Q_LT(a, b) ? (a) : (b))
/*
- * Test if 'a' can be represented by 'b' with full accuracy (T) or not (F).
- * The type casting has to be done to a's type so that any truncation caused by
- * the casts will not affect the logic.
+ * Test if 'a' can be represented by 'b' with full accuracy (0) or not
+ * (EOVERFLOW). If 'b' has fewer integer and/or fractional bits than 'a',
+ * the integer and fractional values stored in 'a' must fit in the available
+ * number of integer and fractional bits in 'b'.
*/
-#define Q_QCANREPQ(a, b) \
- ((((Q_LTZ(a) && Q_SIGNED(b)) || !Q_LTZ(a)) && \
- Q_GIABSVAL(a) <= Q_TC(a, Q_IMAXVAL(b)) && \
- Q_GFABSVAL(a) <= Q_TC(a, Q_FMAXVAL(b))) ? \
- 0 : EOVERFLOW)
+#define Q_QCANREPQ(a, b) (( \
+ (!Q_LTZ(a) || Q_SIGNED(b)) \
+ && ( Q_NIBITS(a) <= Q_NIBITS(b) \
+ || 0 == (Q_GIABSVAL(a) & (~Q_TC(a, 0) << Q_NIBITS(b)))) \
+ && ( Q_NFBITS(a) <= Q_NFBITS(b) \
+ || 0 == (Q_GFABSVAL(a) & ~(~Q_TC(a, 0) << (Q_NFBITS(a) - Q_NFBITS(b))))) \
+ ) ? 0 : EOVERFLOW)
/* Test if raw integer value 'i' can be represented by 'q' (T) or not (F). */
#define Q_QCANREPI(q, i) \