/bionic/libc/bionic/ |
D | dirent.cpp | 60 #define CHECK_DIR(d) if (d == nullptr) __fortify_fatal("%s: null DIR*", __FUNCTION__) argument 63 DIR* d = reinterpret_cast<DIR*>(malloc(sizeof(DIR))); in __allocate_DIR() local 64 if (d == NULL) { in __allocate_DIR() 67 d->fd_ = fd; in __allocate_DIR() 68 d->available_bytes_ = 0; in __allocate_DIR() 69 d->next_ = NULL; in __allocate_DIR() 70 d->current_pos_ = 0L; in __allocate_DIR() 71 pthread_mutex_init(&d->mutex_, NULL); in __allocate_DIR() 72 return d; in __allocate_DIR() 75 int dirfd(DIR* d) { in dirfd() argument [all …]
|
D | ether_aton.c | 37 unsigned d; in xdigit() local 38 d = (unsigned)(c-'0'); in xdigit() 39 if (d < 10) return (int)d; in xdigit() 40 d = (unsigned)(c-'a'); in xdigit() 41 if (d < 6) return (int)(10+d); in xdigit() 42 d = (unsigned)(c-'A'); in xdigit() 43 if (d < 6) return (int)(10+d); in xdigit()
|
D | fpclassify.cpp | 34 extern "C" int __fpclassifyd(double d) { in __fpclassifyd() argument 35 return fpclassify(d); in __fpclassifyd() 43 extern "C" int __isinf(double d) { in __isinf() argument 44 return isinf(d); in __isinf() 53 extern "C" int __isnan(double d) { in __isnan() argument 54 return isnan(d); in __isnan() 63 extern "C" int __isfinite(double d) { in __isfinite() argument 64 return isfinite(d); in __isfinite() 73 extern "C" int __isnormal(double d) { in __isnormal() argument 74 return isnormal(d); in __isnormal()
|
D | ndk_cruft.cpp | 134 unsigned d; in digitval() local 136 d = (unsigned)(ch - '0'); in digitval() 137 if (d < 10) return (int)d; in digitval() 139 d = (unsigned)(ch - 'a'); in digitval() 140 if (d < 6) return (int)(d+10); in digitval() 142 d = (unsigned)(ch - 'A'); in digitval() 143 if (d < 6) return (int)(d+10); in digitval() 154 int d; in strntoumax() local 184 while (p < end && (d = digitval(*p)) >= 0 && d < base) { in strntoumax() 185 v = v*base + d; in strntoumax()
|
/bionic/libm/ |
D | digittoint.c | 33 int d = ch - '0'; in digittoint() local 34 if ((unsigned) d < 10) { in digittoint() 35 return d; in digittoint() 37 d = ch - 'a'; in digittoint() 38 if ((unsigned) d < 6) { in digittoint() 39 return d + 10; in digittoint() 41 d = ch - 'A'; in digittoint() 42 if ((unsigned) d < 6) { in digittoint() 43 return d + 10; in digittoint()
|
/bionic/libc/upstream-netbsd/common/lib/libc/hash/sha1/ |
D | sha1.c | 95 void do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *); 96 void do_R2(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *); 97 void do_R3(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *); 98 void do_R4(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *); 107 do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R01() argument 109 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); nR0(c,d,e,a,b, 3); in do_R01() 110 nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); in do_R01() 111 nR0(c,d,e,a,b, 8); nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01() 112 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); nR0(a,b,c,d,e,15); in do_R01() 113 nR1(e,a,b,c,d,16); nR1(d,e,a,b,c,17); nR1(c,d,e,a,b,18); nR1(b,c,d,e,a,19); in do_R01() [all …]
|
/bionic/benchmarks/ |
D | math_benchmark.cpp | 32 volatile double d; variable 36 d = 0.0; in BM_math_sqrt() 39 d += sqrt(v); in BM_math_sqrt() 45 d = 0.0; in BM_math_log10() 48 d += log10(v); in BM_math_log10() 54 d = 0.0; in BM_math_logb() 57 d += logb(v); in BM_math_logb() 63 d = 0.0; in BM_math_isfinite_macro() 66 d += isfinite(v); in BM_math_isfinite_macro() 73 d = 0.0; in BM_math_isfinite() [all …]
|
/bionic/libc/upstream-openbsd/lib/libc/string/ |
D | strncat.c | 44 char *d = dst; in strncat() local 47 while (*d != 0) in strncat() 48 d++; in strncat() 50 if ((*d = *s++) == 0) in strncat() 52 d++; in strncat() 54 *d = 0; in strncat()
|
D | stpncpy.c | 41 char *d = dst; in stpncpy() local 46 if ((*d++ = *s++) == 0) { in stpncpy() 47 dst = d - 1; in stpncpy() 50 *d++ = 0; in stpncpy()
|
D | strncpy.c | 45 char *d = dst; in strncpy() local 49 if ((*d++ = *s++) == 0) { in strncpy() 52 *d++ = 0; in strncpy()
|
/bionic/libm/upstream-netbsd/lib/libm/complex/ |
D | ctanl.c | 44 long double d; in ctanl() local 46 d = cosl(2.0L * creall(z)) + coshl(2.0L * cimagl(z)); in ctanl() 48 if (fabsl(d) < 0.25L) in ctanl() 49 d = _ctansl(z); in ctanl() 51 if (d == 0.0L) { in ctanl() 57 w = sinl(2.0L * creall(z)) / d + (sinhl(2.0L * cimagl(z)) / d) * I; in ctanl()
|
D | ctanhl.c | 40 long double x, y, d; in ctanhl() local 44 d = coshl(2.0L * x) + cosl(2.0L * y); in ctanhl() 45 w = sinhl(2.0L * x) / d + (sinl(2.0L * y) / d) * I; in ctanhl()
|
D | cephes_subrl.c | 93 long double d; in _ctansl() local 106 d = 0.0; in _ctansl() 116 d += t; in _ctansl() 126 d += t; in _ctansl() 127 } while (fabsl(t/d) > MACHEPL); in _ctansl() 128 return d; in _ctansl()
|
/bionic/tests/ |
D | dirent_test.cpp | 163 DIR* d = fdopendir(fd); in TEST() local 164 ASSERT_TRUE(d != NULL); in TEST() 165 dirent* e = readdir(d); in TEST() 167 ASSERT_EQ(closedir(d), 0); in TEST() 183 DIR* d = opendir("/proc/self"); in TEST() local 184 ASSERT_TRUE(d != NULL); in TEST() 185 dirent* e = readdir(d); in TEST() 187 ASSERT_EQ(closedir(d), 0); in TEST() 191 DIR* d = NULL; in TEST() local 192 ASSERT_EQ(closedir(d), -1); in TEST() [all …]
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
D | wcslcat.c | 51 wchar_t *d = dst; in wcslcat() local 57 while (*d != '\0' && n-- != 0) in wcslcat() 58 d++; in wcslcat() 59 dlen = d - dst; in wcslcat() 66 *d++ = *s; in wcslcat() 71 *d = '\0'; in wcslcat()
|
D | wcsncpy.c | 51 wchar_t *d = dst; in wcsncpy() local 55 if ((*d++ = *s++) == L'\0') { in wcsncpy() 58 *d++ = L'\0'; in wcsncpy()
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | dtoa.c | 127 U d, d2, eps; local 153 d.d = d0; 154 if (word0(&d) & Sign_bit) { 157 word0(&d) &= ~Sign_bit; /* clear sign bit */ 164 if ((word0(&d) & Exp_mask) == Exp_mask) 166 if (word0(&d) == 0x8000) 172 if (!word1(&d) && !(word0(&d) & 0xfffff)) 179 dval(&d) += 0; /* normalize */ 181 if (!dval(&d)) { 200 b = d2b(dval(&d), &be, &bbits); [all …]
|
D | gdtoa.c | 165 U d, eps; local 206 dval(&d) = b2d(b, &i); 208 word0(&d) &= Frac_mask1; 209 word0(&d) |= Exp_11; 211 if ( (j = 11 - hi0bits(word0(&d) & Frac_mask)) !=0) 212 dval(&d) /= 1 << j; 240 ds = (dval(&d)-1.5)*0.289529654602168 + 0.1760912590558 + i*0.301029995663981; 255 dval(&d) *= 1 << j1; 256 word0(&d) += j << Exp_shift - 2 & Exp_mask; 258 word0(&d) += (be + bbits - 1) << Exp_shift; [all …]
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
D | s_logl.c | 455 long double d, val_hi, val_lo; in k_logl() local 507 d = x * G(i) - 1; in k_logl() 510 d = (x - H(i)) * G(i) + E(i); in k_logl() 523 d = x_hi * G(i) - 1 + x_lo * G(i); in k_logl() 548 dd = (double)d; in k_logl() 549 val_lo = d * d * d * (P3 + in k_logl() 550 d * (P4 + d * (P5 + d * (P6 + d * (P7 + d * (P8 + in k_logl() 552 dd * P14))))))))))) + (F_lo(i) + dk * ln2_lo) + d * d * P2; in k_logl() 553 val_hi = d; in k_logl() 566 long double d, d_hi, f_lo, val_hi, val_lo; in log1pl() local [all …]
|
/bionic/libc/kernel/uapi/linux/ |
D | kernel.h | 24 #define __KERNEL_DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) argument
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | math_private.h | 89 #define EXTRACT_WORDS(ix0,ix1,d) \ argument 92 ew_u.value = (d); \ 98 #define EXTRACT_WORD64(ix,d) \ argument 101 ew_u.value = (d); \ 107 #define GET_HIGH_WORD(i,d) \ argument 110 gh_u.value = (d); \ 116 #define GET_LOW_WORD(i,d) \ argument 119 gl_u.value = (d); \ 125 #define INSERT_WORDS(d,ix0,ix1) \ argument 130 (d) = iw_u.value; \ [all …]
|
D | s_lrint.c | 50 dtype d; in fn() local 53 d = (dtype)roundit(x); in fn() 57 return (d); in fn()
|
/bionic/libc/upstream-freebsd/lib/libc/gen/ |
D | ldexp.c | 53 #define EXTRACT_WORDS(ix0,ix1,d) \ argument 56 ew_u.value = (d); \ 63 #define GET_HIGH_WORD(i,d) \ argument 66 gh_u.value = (d); \ 72 #define SET_HIGH_WORD(d,v) \ argument 75 sh_u.value = (d); \ 77 (d) = sh_u.value; \
|
/bionic/libc/arch-mips/bionic/ |
D | setjmp.S | 259 s.d $f24, SC_FPREGS+0*REGSZ_FP($a0) 260 s.d $f25, SC_FPREGS+1*REGSZ_FP($a0) 261 s.d $f26, SC_FPREGS+2*REGSZ_FP($a0) 262 s.d $f27, SC_FPREGS+3*REGSZ_FP($a0) 263 s.d $f28, SC_FPREGS+4*REGSZ_FP($a0) 264 s.d $f29, SC_FPREGS+5*REGSZ_FP($a0) 265 s.d $f30, SC_FPREGS+6*REGSZ_FP($a0) 266 s.d $f31, SC_FPREGS+7*REGSZ_FP($a0) 270 s.d $f20, SC_FPREGS+0*REGSZ_FP($a0) 271 s.d $f22, SC_FPREGS+1*REGSZ_FP($a0) [all …]
|
/bionic/libc/arch-mips64/bionic/ |
D | setjmp.S | 259 s.d $f24, SC_FPREGS+0*REGSZ_FP($a0) 260 s.d $f25, SC_FPREGS+1*REGSZ_FP($a0) 261 s.d $f26, SC_FPREGS+2*REGSZ_FP($a0) 262 s.d $f27, SC_FPREGS+3*REGSZ_FP($a0) 263 s.d $f28, SC_FPREGS+4*REGSZ_FP($a0) 264 s.d $f29, SC_FPREGS+5*REGSZ_FP($a0) 265 s.d $f30, SC_FPREGS+6*REGSZ_FP($a0) 266 s.d $f31, SC_FPREGS+7*REGSZ_FP($a0) 270 s.d $f20, SC_FPREGS+0*REGSZ_FP($a0) 271 s.d $f22, SC_FPREGS+1*REGSZ_FP($a0) [all …]
|