/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
D | quick_exit.c | 54 struct quick_exit_handler *h; in at_quick_exit() local 56 h = malloc(sizeof(*h)); in at_quick_exit() 58 if (NULL == h) in at_quick_exit() 60 h->cleanup = func; in at_quick_exit() 62 h->next = handlers; in at_quick_exit() 63 handlers = h; in at_quick_exit() 71 struct quick_exit_handler *h; in quick_exit() local 77 for (h = handlers; NULL != h; h = h->next) in quick_exit() 78 h->cleanup(); in quick_exit()
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | e_sinhf.c | 27 float t,h; in __ieee754_sinhf() local 36 h = 0.5; in __ieee754_sinhf() 37 if (jx<0) h = -h; in __ieee754_sinhf() 43 if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one)); in __ieee754_sinhf() 44 return h*(t+t/(t+one)); in __ieee754_sinhf() 48 if (ix < 0x42b17217) return h*__ieee754_expf(fabsf(x)); in __ieee754_sinhf() 52 return h*2.0F*__ldexp_expf(fabsf(x), -1); in __ieee754_sinhf()
|
D | e_sinh.c | 43 double t,h; in __ieee754_sinh() local 53 h = 0.5; in __ieee754_sinh() 54 if (jx<0) h = -h; in __ieee754_sinh() 60 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one)); in __ieee754_sinh() 61 return h*(t+t/(t+one)); in __ieee754_sinh() 65 if (ix < 0x40862E42) return h*__ieee754_exp(fabs(x)); in __ieee754_sinh() 69 return h*2.0*__ldexp_exp(fabs(x), -1); in __ieee754_sinh()
|
D | s_ccoshf.c | 44 float x, y, h; in ccoshf() local 65 h = expf(fabsf(x)) * 0.5f; in ccoshf() 66 return (cpackf(h * cosf(y), copysignf(h, x) * sinf(y))); in ccoshf() 73 h = huge * x; in ccoshf() 74 return (cpackf(h * h * cosf(y), h * sinf(y))); in ccoshf()
|
D | s_csinh.c | 50 double x, y, h; in csinh() local 72 h = exp(fabs(x)) * 0.5; in csinh() 73 return (cpack(copysign(h, x) * cos(y), h * sin(y))); in csinh() 80 h = huge * x; in csinh() 81 return (cpack(h * cos(y), h * h * sin(y))); in csinh()
|
D | s_ccosh.c | 50 double x, y, h; in ccosh() local 72 h = exp(fabs(x)) * 0.5; in ccosh() 73 return (cpack(h * cos(y), copysign(h, x) * sin(y))); in ccosh() 80 h = huge * x; in ccosh() 81 return (cpack(h * h * cos(y), h * sin(y))); in ccosh()
|
D | s_csinhf.c | 44 float x, y, h; in csinhf() local 65 h = expf(fabsf(x)) * 0.5f; in csinhf() 66 return (cpackf(copysignf(h, x) * cosf(y), h * sinf(y))); in csinhf() 73 h = huge * x; in csinhf() 74 return (cpackf(h * cosf(y), h * h * sinf(y))); in csinhf()
|
D | e_jnf.c | 108 float q0,q1,h,tmp; int32_t k,m; in __ieee754_jnf() local 109 w = (n+n)/(float)x; h = (float)2.0/(float)x; in __ieee754_jnf() 110 q0 = w; z = w+h; q1 = w*z - (float)1.0; k=1; in __ieee754_jnf() 112 k += 1; z += h; in __ieee754_jnf()
|
D | e_jn.c | 156 double q0,q1,h,tmp; int32_t k,m; in __ieee754_jn() local 157 w = (n+n)/(double)x; h = 2.0/(double)x; in __ieee754_jn() 158 q0 = w; z = w+h; q1 = w*z - 1.0; k=1; in __ieee754_jn() 160 k += 1; z += h; in __ieee754_jn()
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | hd_init.c | 38 htinit(h, s, inc) unsigned char *h; unsigned char *s; int inc; in htinit() argument 40 htinit(unsigned char *h, unsigned char *s, int inc) 45 h[j] = i + inc;
|
D | hexnan.c | 60 ULong c, h, *x, *x1, *xe; local 81 if (!(h = hexdig[c])) { 123 *x = (*x << 4) | (h & 0xf);
|
/bionic/libc/kernel/uapi/linux/ |
D | romfs_fs.h | 30 #define __mkw(h,l) (((h)&0x00ff)<< 8|((l)&0x00ff)) argument 31 #define __mkl(h,l) (((h)&0xffff)<<16|((l)&0xffff)) argument
|
D | pkt_cls.h | 160 #define TC_U32_HTID(h) ((h)&0xFFF00000) argument 161 #define TC_U32_USERHTID(h) (TC_U32_HTID(h)>>20) argument 162 #define TC_U32_HASH(h) (((h)>>12)&0xFF) argument 164 #define TC_U32_NODE(h) ((h)&0xFFF) argument 165 #define TC_U32_KEY(h) ((h)&0xFFFFF) argument
|
/bionic/libstdc++/include/ |
D | cfloat | 34 * Standard C++ Library wrapper around the C float.h header file. 36 #include <sys/limits.h> 37 #include <float.h>
|
D | climits | 34 * Standard C++ Library wrapper around the C limits.h header file. 37 #include <limits.h>
|
D | cstdint | 34 * Standard C++ Library wrapper around the C stdint.h header file. 37 #include <stdint.h>
|
D | csignal | 34 * Standard C++ Library wrapper around the C signal.h header file. 37 #include <signal.h>
|
D | cerrno | 34 * Standard C++ Library wrapper around the C errno.h header file. 36 #include <errno.h>
|
D | cstddef | 34 * Standard C++ Library wrapper around the C stddef.h header file. 39 #include <stddef.h>
|
D | csetjmp | 34 * Standard C++ Library wrapper around the C setjmp.h header file. 37 #include <setjmp.h>
|
D | cassert | 31 * Standard C++ Library wrapper around the C assert.h header file. This file 39 #include <assert.h>
|
/bionic/libc/kernel/tools/ |
D | generate_uapi_headers.sh | 71 elif [[ -f "${file}" ]] && [[ "${file}" =~ .h$ ]]; then 92 if [[ -f "${file}" ]] && [[ "${file}" =~ .h$ ]]; then
|
/bionic/libc/kernel/uapi/video/ |
D | adf.h | 77 __u32 h; member 104 __u16 h; member
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
D | s_logl.c | 430 #define RETURN2(rp, h, l) do { \ argument 431 (rp)->hi = (h); \ 444 #define RETURN2(rp, h, l) RETURNI((h) + (l)) argument
|
/bionic/libc/kernel/uapi/drm/ |
D | i810_drm.h | 119 unsigned int h; member 139 unsigned int h; member
|