Lines Matching defs:N
36 #define _FP_FRAC_SLL_1(X,N) \
38 if (__builtin_constant_p(N) && (N) == 1) \
41 X##_f <<= (N); \
43 #define _FP_FRAC_SRL_1(X,N) (X##_f >>= N)
46 #define _FP_FRAC_SRS_1(X,N,sz) __FP_FRAC_SRS_1(X##_f, N, sz)
48 #define __FP_FRAC_SRS_1(X,N,sz) \
49 (X = (X >> (N) | (__builtin_constant_p(N) && (N) == 1 \
50 ? X & 1 : (X << (_FP_W_TYPE_SIZE - (N))) != 0)))