Searched refs:N (Results 1 – 9 of 9) sorted by relevance
/include/uapi/linux/spi/ |
A D | spidev.h | 95 #define SPI_MSGSIZE(N) \ argument 96 ((((N)*(sizeof (struct spi_ioc_transfer))) < (1 << _IOC_SIZEBITS)) \ 97 ? ((N)*(sizeof (struct spi_ioc_transfer))) : 0) 98 #define SPI_IOC_MESSAGE(N) _IOW(SPI_IOC_MAGIC, 0, char[SPI_MSGSIZE(N)]) argument
|
/include/math-emu/ |
A D | op-8.h | 34 #define _FP_FRAC_SLL_8(X,N) \ argument 37 _skip = (N) / _FP_W_TYPE_SIZE; \ 38 _up = (N) % _FP_W_TYPE_SIZE; \ 54 #define _FP_FRAC_SRL_8(X,N) \ argument 57 _skip = (N) / _FP_W_TYPE_SIZE; \ 58 _down = (N) % _FP_W_TYPE_SIZE; \ 80 #define _FP_FRAC_SRS_8(X,N,size) \ argument 84 _skip = (N) / _FP_W_TYPE_SIZE; \ 85 _down = (N) % _FP_W_TYPE_SIZE; \
|
A D | op-1.h | 36 #define _FP_FRAC_SLL_1(X,N) \ argument 38 if (__builtin_constant_p(N) && (N) == 1) \ 41 X##_f <<= (N); \ 43 #define _FP_FRAC_SRL_1(X,N) (X##_f >>= N) argument 46 #define _FP_FRAC_SRS_1(X,N,sz) __FP_FRAC_SRS_1(X##_f, N, sz) argument 48 #define __FP_FRAC_SRS_1(X,N,sz) \ argument 49 (X = (X >> (N) | (__builtin_constant_p(N) && (N) == 1 \ 50 ? X & 1 : (X << (_FP_W_TYPE_SIZE - (N))) != 0)))
|
A D | op-2.h | 34 #define _FP_FRAC_SLL_2(X, N) ( \ argument 37 if (__builtin_constant_p(N) && (N) == 1) { \ 43 (_FP_W_TYPE_SIZE - (N)); \ 44 X##_f0 <<= (N); \ 54 #define _FP_FRAC_SRL_2(X, N) ( \ argument 57 X##_f0 = X##_f0 >> (N) | X##_f1 << (_FP_W_TYPE_SIZE - (N)); \ 58 X##_f1 >>= (N); \ 70 X##_f0 = (X##_f1 << (_FP_W_TYPE_SIZE - (N)) | X##_f0 >> (N) \ 71 | (__builtin_constant_p(N) && (N) == 1 \ 74 X##_f1 >>= (N); \ [all …]
|
A D | op-4.h | 37 #define _FP_FRAC_SLL_4(X,N) \ argument 40 _skip = (N) / _FP_W_TYPE_SIZE; \ 41 _up = (N) % _FP_W_TYPE_SIZE; \ 58 #define _FP_FRAC_SRL_4(X,N) \ argument 61 _skip = (N) / _FP_W_TYPE_SIZE; \ 62 _down = (N) % _FP_W_TYPE_SIZE; \ 84 #define _FP_FRAC_SRS_4(X,N,size) \ argument 88 _skip = (N) / _FP_W_TYPE_SIZE; \ 89 _down = (N) % _FP_W_TYPE_SIZE; \
|
/include/linux/ |
A D | asn1_ber_bytecode.h | 86 #define _jump_target(N) (N) argument 87 #define _action(N) (N) argument
|
A D | unroll.h | 54 #define UNROLL(N, MACRO, args...) CONCATENATE(__UNROLL_, N)(MACRO, args) argument
|
A D | ieee80211.h | 2927 u8 N; /* also called N in the spec */ in ieee80211_valid_tpe_element() local 2964 N = count ? 1 << (count - 1) : 1; in ieee80211_valid_tpe_element() 2965 needed += N; in ieee80211_valid_tpe_element() 2971 u8 K = u8_get_bits(env->variable[N], in ieee80211_valid_tpe_element()
|
/include/crypto/ |
A D | streebog.h | 28 struct streebog_uint512 N; member
|
Completed in 55 milliseconds