Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 41) 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_csinhf.c44 float x, y, h; in csinhf() local
65 h = expf(fabsf(x)) * 0.5F; in csinhf()
66 return (CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y))); in csinhf()
73 h = huge * x; in csinhf()
74 return (CMPLXF(h * cosf(y), h * h * sinf(y))); in csinhf()
Ds_ccoshf.c44 float x, y, h; in ccoshf() local
65 h = expf(fabsf(x)) * 0.5F; in ccoshf()
66 return (CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y))); in ccoshf()
73 h = huge * x; in ccoshf()
74 return (CMPLXF(h * h * cosf(y), h * sinf(y))); in ccoshf()
Ds_ccosh.c52 double x, y, h; in ccosh() local
74 h = exp(fabs(x)) * 0.5; in ccosh()
75 return (CMPLX(h * cos(y), copysign(h, x) * sin(y))); in ccosh()
82 h = huge * x; in ccosh()
83 return (CMPLX(h * h * cos(y), h * sin(y))); in ccosh()
Ds_csinh.c52 double x, y, h; in csinh() local
74 h = exp(fabs(x)) * 0.5; in csinh()
75 return (CMPLX(copysign(h, x) * cos(y), h * sin(y))); in csinh()
82 h = huge * x; in csinh()
83 return (CMPLX(h * cos(y), h * h * sin(y))); in csinh()
De_jnf.c114 float q0,q1,h,tmp; int32_t k,m; in __ieee754_jnf() local
115 w = (n+n)/(float)x; h = (float)2.0/(float)x; in __ieee754_jnf()
116 q0 = w; z = w+h; q1 = w*z - (float)1.0; k=1; in __ieee754_jnf()
118 k += 1; z += h; in __ieee754_jnf()
De_jn.c158 double q0,q1,h,tmp; int32_t k,m; in __ieee754_jn() local
159 w = (n+n)/(double)x; h = 2.0/(double)x; in __ieee754_jn()
160 q0 = w; z = w+h; q1 = w*z - 1.0; k=1; in __ieee754_jn()
162 k += 1; z += h; in __ieee754_jn()
De_hypotl.c24 #define GET_LDBL_MAN(h, l, v) do { \ argument
28 h = uv.bits.manh; \
/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.h28 #define __mkw(h,l) (((h) & 0x00ff) << 8 | ((l) & 0x00ff)) argument
29 #define __mkl(h,l) (((h) & 0xffff) << 16 | ((l) & 0xffff)) argument
Dpkt_cls.h100 #define TC_U32_HTID(h) ((h) & 0xFFF00000) argument
101 #define TC_U32_USERHTID(h) (TC_U32_HTID(h) >> 20) argument
102 #define TC_U32_HASH(h) (((h) >> 12) & 0xFF) argument
103 #define TC_U32_NODE(h) ((h) & 0xFFF) argument
104 #define TC_U32_KEY(h) ((h) & 0xFFFFF) argument
Dpkt_sched.h45 #define TC_H_MAJ(h) ((h) & TC_H_MAJ_MASK) argument
46 #define TC_H_MIN(h) ((h) & TC_H_MIN_MASK) argument
453 __u32 h; member
/bionic/tools/versioner/tests/multiple_decl_mismatch/
Dexpected_fail4 extern declaration @ headers/bar.h:1:1
6 extern declaration @ headers/foo.h:1:1
/bionic/tools/versioner/tests/version_mismatch/
Dexpected_fail4 extern declaration @ headers/foo.h:2:1
6 extern declaration @ headers/foo.h:4:1
/bionic/tools/versioner/tests/multiple_definition/
Dexpected_fail3 static definition @ headers/foo.h:1:1
5 static definition @ headers/bar.h:1:1
/bionic/tools/versioner/tests/missing_api/
Dexpected_fail2 extern declaration @ headers/foo.h:1:1
/bionic/tools/versioner/tests/missing_arch/
Dexpected_fail2 extern declaration @ headers/foo.h:1:1
/bionic/libc/kernel/tools/
Dgenerate_uapi_headers.sh75 elif [[ -f "${file}" ]] && [[ "${file}" =~ .h$ ]]; then
96 if [[ -f "${file}" ]] && [[ "${file}" =~ .h$ ]]; then
117 elif [[ -f "${file}" ]] && [[ "${file}" =~ .h$ ]]; then
/bionic/linker/
Dlinker_soinfo.cpp752 uint32_t h = 0, g; in calculate_elf_hash() local
755 h = (h << 4) + *name_bytes++; in calculate_elf_hash()
756 g = h & 0xf0000000; in calculate_elf_hash()
757 h ^= g; in calculate_elf_hash()
758 h ^= g >> 24; in calculate_elf_hash()
761 return h; in calculate_elf_hash()
775 uint32_t h = 5381; in gnu_hash() local
778 h += (h << 5) + *name++; // h*33 + c = h + h * 32 + c = h + h << 5 + c in gnu_hash()
781 gnu_hash_ = h; in gnu_hash()
/bionic/libc/include/
Dstring.h660 char* __bionic_strstr(const char* _Nonnull h, const char* _Nonnull n) { return strstr(h, n); } in __bionic_strstr() argument
663 const char* strstr(const char* _Nonnull h, const char* _Nonnull n) __prefer_this_overload { in strstr() argument
664 return __bionic_strstr(h, n); in strstr()
668 char* strstr(char* _Nonnull h, const char* _Nonnull n) __prefer_this_overload { in strstr() argument
669 return __bionic_strstr(h, n); in strstr()
673 char* __bionic_strpbrk(const char* _Nonnull h, const char* _Nonnull n) { return strpbrk(h, n); } in __bionic_strpbrk() argument
676 char* strpbrk(char* _Nonnull h, const char* _Nonnull n) __prefer_this_overload { in strpbrk() argument
677 return __bionic_strpbrk(h, n); in strpbrk()
681 const char* strpbrk(const char* _Nonnull h, const char* _Nonnull n) __prefer_this_overload { in strpbrk() argument
682 return __bionic_strpbrk(h, n); in strpbrk()
/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
/bionic/libc/kernel/uapi/drm/
Di810_drm.h102 unsigned int h; member
118 unsigned int h; member

12