Searched refs:N (Results 1 – 12 of 12) sorted by relevance
/bionic/tests/ |
D | math_data_test.h | 167 template <size_t ULP, typename RT, typename T, size_t N> 168 void DoMathDataTest(data_1_1_t<RT, T> (&data)[N], RT f(T)) { 171 for (size_t i = 0; i < N; ++i) { 180 template <size_t ULP, typename T, size_t N> 181 void DoMathDataTest(data_int_1_t<T> (&data)[N], int f(T)) { 183 for (size_t i = 0; i < N; ++i) { 191 template <size_t ULP, typename T, size_t N> 192 void DoMathDataTest(data_long_1_t<T> (&data)[N], long f(T)) { 194 for (size_t i = 0; i < N; ++i) { 202 template <size_t ULP, typename T, size_t N> [all …]
|
D | time_test.cpp | 1046 static const clock_t N = 5; in TEST() local 1049 for (size_t i = 0; i < N; ++i) { in TEST() 1053 ASSERT_LT(t1 - t0, N * mean_limit_ms * (CLOCKS_PER_SEC / 1000)); in TEST()
|
/bionic/libm/upstream-freebsd/lib/msun/bsdsrc/ |
D | b_log.c | 73 #define N 128 macro 94 static double logF_head[N+1] = { 226 static double logF_tail[N+1] = { 380 j = N * (g - 1) + 0.5; in __log__D() 381 F = (1. / N) * j + 1; in __log__D() 396 u1 += m * logF_head[N] + logF_head[j]; in __log__D() 400 u2 += logF_tail[N] * m; in __log__D()
|
/bionic/libc/kernel/uapi/linux/spi/ |
D | spidev.h | 26 #define SPI_MSGSIZE(N) ((((N) * (sizeof(struct spi_ioc_transfer))) < (1 << _IOC_SIZEBITS)) ? ((N) *… argument 27 #define SPI_IOC_MESSAGE(N) _IOW(SPI_IOC_MAGIC, 0, char[SPI_MSGSIZE(N)]) argument
|
/bionic/libc/platform/bionic/ |
D | macros.h | 75 template <typename T, size_t N> 76 char (&ArraySizeHelper(T (&array)[N]))[N]; // NOLINT(readability/casting)
|
/bionic/docs/ |
D | clang_fortify_anatomy.md | 33 FORTIFY is traditionally enabled by passing `-D_FORTIFY_SOURCE=N` to your 34 compiler. `N==0` disables FORTIFY, whereas `N==1`, `N==2`, and `N==3` enable 454 `open("foo", 0, "how do you convert a const char[N] to mode_t?");`. The only 626 ### Subtleties of __builtin_object_size(p, N) 634 `__builtin_object_size(p, N)` and `pass_object_size(N)`, where `(N & 1) == 1`, argument 636 ignores the value of `N & 1`, since handling `(N & 1) == 1` accurately requires 641 `__builtin_object_size(p, N)` to the caller is critical, since it allows Clang 643 It's not a perfect solution, but it allows `N == 1` to be fully accurate in at 649 `__builtin_object_size(p, N)` is intended to evaluate at compile-time how many argument 654 assert(__builtin_object_size(buf, N) == 8); [all …]
|
D | status.md | 196 New libc functions in N (API level 24): 208 New libc behavior in N (API level 24): 293 | N | 24 | 1228 |
|
D | elf-tls.md | 622 breakage happening with Android N.](https://go-review.googlesource.com/c/go/+/38636) (XXX: I
|
/bionic/benchmarks/linker_relocation/ |
D | run_bench_with_ninja.sh | 44 --multitime N Use multitime to run the benchmark N iterations
|
/bionic/libc/bionic/ |
D | grp_pwd.cpp | 170 template <class T, size_t N> 171 static constexpr bool verify_user_ranges_ascending(T (&ranges)[N]) { in verify_user_ranges_ascending() argument 172 auto array_size = N; in verify_user_ranges_ascending()
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 1581 # define N 2 macro 1584 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N) 1599 case REP(0, N): /* as x{1,n}? */ 1613 case REP(1, N): /* as x?x{1,n-1} */ 1629 case REP(N, N): /* as xx{m-1,n-1} */ 1633 case REP(N, INF): /* as xx{n-1,INF} */
|
/bionic/libc/malloc_debug/ |
D | README.md | 7 This documentation describes how to enable this feature on Android N or later
|