Searched refs:__type_min_s (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/usr.bin/vndcompress/
H A Dcommon.h51 #define __type_min_s(t) ((t)((1ULL << (sizeof(t) * NBBY - 1)))) macro
55 #define __type_is_signed(t) (/*LINTED*/__type_min_s(t) + (t)1 < (t)1)
56 #define __type_min(t) (__type_is_signed(t) ? __type_min_s(t) : __type_min_u(t))
64 ((intmax_t)((a) + __zeroll()) >= (intmax_t)__type_min_s(t)) : \
/netbsd-current/sys/sys/
H A Dcdefs.h739 #define __type_min_s(t) ((t)((1ULL << (sizeof(t) * __CHAR_BIT__ - 1)))) macro
743 #define __type_is_signed(t) (/*LINTED*/__type_min_s(t) + (t)1 < (t)1)
744 #define __type_min(t) (__type_is_signed(t) ? __type_min_s(t) : __type_min_u(t))
756 (__INTMAX_TYPE__)__type_min_s(t)) \
/netbsd-current/tools/compat/
H A Dcompat_defs.h221 #undef __type_min_s macro
222 #define __type_min_s(t) ((t)((1ULL << (sizeof(t) * NBBY - 1)))) macro
230 #define __type_is_signed(t) (/*LINTED*/__type_min_s(t) + (t)1 < (t)1)
232 #define __type_min(t) (__type_is_signed(t) ? __type_min_s(t) : __type_min_u(t))

Completed in 291 milliseconds