Searched refs:CK_PR_UNARY_Z_S (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/contrib/ck/include/ |
H A D | ck_pr.h | 655 #define CK_PR_UNARY_Z_S(K, S, M, P, Z) \ macro 668 CK_PR_UNARY_Z_S(inc, char, char, +, -1) 680 CK_PR_UNARY_Z_S(dec, char, char, -, 1) 696 CK_PR_UNARY_Z_S(inc, int, int, +, -1) 708 CK_PR_UNARY_Z_S(dec, int, int, -, 1) 739 CK_PR_UNARY_Z_S(inc, uint, unsigned int, +, UINT_MAX) 751 CK_PR_UNARY_Z_S(dec, uint, unsigned int, -, 1) 795 CK_PR_UNARY_Z_S(inc, 64, uint64_t, +, UINT64_MAX) 807 CK_PR_UNARY_Z_S(dec, 64, uint64_t, -, 1) 823 CK_PR_UNARY_Z_S(inc, 32, uint32_t, +, UINT32_MAX) [all …]
|