Searched refs:N (Results 1 – 7 of 7) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/bsdsrc/ |
D | b_log.c | 78 #define N 128 macro 94 static double logF_head[N+1] = { 226 static double logF_tail[N+1] = { 388 j = N*(g-1) + .5; 389 F = (1.0/N) * j + 1; /* F*128 is an integer in [128, 512] */ 417 u1 += m*logF_head[N] + logF_head[j]; /* exact */ 419 u2 += logF_tail[N]*m; 449 j = N*(g-1) + .5; 450 F = (1.0/N) * j + 1; 463 u1 += m*logF_head[N] + logF_head[j]; [all …]
|
/bionic/tests/ |
D | math_data_test.h | 139 template <size_t ULP, typename RT, typename T, size_t N> 140 void DoMathDataTest(data_1_1_t<RT, T> (&data)[N], RT f(T)) { 143 for (size_t i = 0; i < N; ++i) { 152 template <size_t ULP, typename T, size_t N> 153 void DoMathDataTest(data_int_1_t<T> (&data)[N], int f(T)) { 155 for (size_t i = 0; i < N; ++i) { 163 template <size_t ULP, typename RT, typename T1, typename T2, size_t N> 164 void DoMathDataTest(data_1_2_t<RT, T1, T2> (&data)[N], RT f(T1, T2)) { 167 for (size_t i = 0; i < N; ++i) { 176 template <size_t ULP, typename RT1, typename RT2, typename T1, size_t N> [all …]
|
/bionic/libc/kernel/uapi/linux/spi/ |
D | spidev.h | 59 #define SPI_MSGSIZE(N) ((((N) * (sizeof(struct spi_ioc_transfer))) < (1 << _IOC_SIZEBITS)) ? ((N) *… argument 60 #define SPI_IOC_MESSAGE(N) _IOW(SPI_IOC_MAGIC, 0, char[SPI_MSGSIZE(N)]) argument
|
/bionic/libc/kernel/uapi/asm-generic/ |
D | siginfo.h | 154 #define __SI_CODE(T,N) (N) argument
|
/bionic/libc/arch-mips/string/ |
D | memcpy.S | 796 # define ALIGN_OFFSET(N) (N) argument 799 # define ALIGN_OFFSET(N) (NSIZE-N) argument
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 1140 # define N 2 in repeat() macro 1143 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N) in repeat() 1162 case REP(0, N): /* as x{1,n}? */ in repeat() 1176 case REP(1, N): /* as x?x{1,n-1} */ in repeat() 1192 case REP(N, N): /* as xx{m-1,n-1} */ in repeat() 1196 case REP(N, INF): /* as xx{n-1,INF} */ in repeat()
|
/bionic/libc/upstream-dlmalloc/ |
D | malloc.c | 2795 #define check_malloced_chunk(M,P,N) argument 2804 #define check_malloced_chunk(M,P,N) do_check_malloced_chunk(M,P,N) argument 2889 unsigned int N = ((Y - 0x100) >> 16) & 8;\ 2890 unsigned int K = (((Y <<= N) - 0x1000) >> 16) & 4;\ 2891 N += K;\ 2892 N += K = (((Y <<= K) - 0x4000) >> 16) & 2;\ 2893 K = 14 - N + ((Y <<= K) >> 15);\ 2971 unsigned int N = K; Y >>= K;\ 2972 N += K = Y >> (8-3) & 8; Y >>= K;\ 2973 N += K = Y >> (4-2) & 4; Y >>= K;\ [all …]
|