Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 48) sorted by relevance

12

/bionic/libc/upstream-freebsd/lib/libc/stdlib/
Dquick_exit.c54 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/
De_sinhf.c27 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()
De_sinh.c45 double t,h; in __ieee754_sinh() local
55 h = 0.5; in __ieee754_sinh()
56 if (jx<0) h = -h; in __ieee754_sinh()
62 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one)); in __ieee754_sinh()
63 return h*(t+t/(t+one)); in __ieee754_sinh()
67 if (ix < 0x40862E42) return h*__ieee754_exp(fabs(x)); in __ieee754_sinh()
71 return h*2.0*__ldexp_exp(fabs(x), -1); in __ieee754_sinh()
Ds_csinh.c50 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()
Ds_ccosh.c50 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()
Ds_ccoshf.c44 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()
Ds_csinhf.c44 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()
De_jnf.c108 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()
De_jn.c156 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/
Dhd_init.c38 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;
Dhexnan.c60 ULong c, h, *x, *x1, *xe; local
81 if (!(h = hexdig[c])) {
123 *x = (*x << 4) | (h & 0xf);
/bionic/libc/kernel/uapi/linux/
Dromfs_fs.h30 #define __mkw(h,l) (((h) & 0x00ff) << 8 | ((l) & 0x00ff)) argument
31 #define __mkl(h,l) (((h) & 0xffff) << 16 | ((l) & 0xffff)) argument
Dpkt_cls.h160 #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/
Dcfloat34 * Standard C++ Library wrapper around the C float.h header file.
36 #include <sys/limits.h>
37 #include <float.h>
Dclimits34 * Standard C++ Library wrapper around the C limits.h header file.
37 #include <limits.h>
Dcstdint34 * Standard C++ Library wrapper around the C stdint.h header file.
37 #include <stdint.h>
Dcerrno34 * Standard C++ Library wrapper around the C errno.h header file.
36 #include <errno.h>
Dcsignal34 * Standard C++ Library wrapper around the C signal.h header file.
37 #include <signal.h>
Dcassert31 * Standard C++ Library wrapper around the C assert.h header file. This file
39 #include <assert.h>
Dcsetjmp34 * Standard C++ Library wrapper around the C setjmp.h header file.
37 #include <setjmp.h>
Dcstddef34 * Standard C++ Library wrapper around the C stddef.h header file.
39 #include <stddef.h>
Dcctype34 * Standard C++ Library wrapper around the C ctype.h header file.
37 #include <ctype.h>
/bionic/libc/kernel/tools/
Dgenerate_uapi_headers.sh71 elif [[ -f "${file}" ]] && [[ "${file}" =~ .h$ ]]; then
92 if [[ -f "${file}" ]] && [[ "${file}" =~ .h$ ]]; then
/bionic/libc/kernel/uapi/video/
Dadf.h77 __u32 h; member
104 __u16 h; member
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Ds_logl.c430 #define RETURN2(rp, h, l) do { \ argument
431 (rp)->hi = (h); \
444 #define RETURN2(rp, h, l) RETURNI((h) + (l)) argument

12