Searched refs:__must_check_overflow (Results 1 – 2 of 2) sorted by relevance
| /kernel/linux/linux-5.10/include/linux/ |
| D | overflow.h | 52 static inline bool __must_check __must_check_overflow(bool overflow) in __must_check_overflow() function 66 #define check_add_overflow(a, b, d) __must_check_overflow(({ \ 75 #define check_sub_overflow(a, b, d) __must_check_overflow(({ \ 84 #define check_mul_overflow(a, b, d) __must_check_overflow(({ \ 204 #define check_add_overflow(a, b, d) __must_check_overflow( \ 209 #define check_sub_overflow(a, b, d) __must_check_overflow( \ 214 #define check_mul_overflow(a, b, d) __must_check_overflow( \ 240 #define check_shl_overflow(a, s, d) __must_check_overflow(({ \
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | overflow.h | 51 static inline bool __must_check __must_check_overflow(bool overflow) in __must_check_overflow() function 69 __must_check_overflow(__builtin_add_overflow(a, b, d)) 84 __must_check_overflow(__builtin_sub_overflow(a, b, d)) 99 __must_check_overflow(__builtin_mul_overflow(a, b, d)) 121 #define check_shl_overflow(a, s, d) __must_check_overflow(({ \
|