/bionic/libm/src/ |
D | e_sinhf.c | 28 float t,w,h; in __ieee754_sinhf() local 37 h = 0.5; in __ieee754_sinhf() 38 if (jx<0) h = -h; in __ieee754_sinhf() 44 if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one)); in __ieee754_sinhf() 45 return h*(t+t/(t+one)); in __ieee754_sinhf() 49 if (ix < 0x42b17217) return h*__ieee754_expf(fabsf(x)); in __ieee754_sinhf() 54 t = h*w; in __ieee754_sinhf()
|
D | e_sinh.c | 44 double t,w,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() 73 t = h*w; in __ieee754_sinh()
|
D | e_jnf.c | 110 float q0,q1,h,tmp; int32_t k,m; in __ieee754_jnf() local 111 w = (n+n)/(float)x; h = (float)2.0/(float)x; in __ieee754_jnf() 112 q0 = w; z = w+h; q1 = w*z - (float)1.0; k=1; in __ieee754_jnf() 114 k += 1; z += h; in __ieee754_jnf()
|
D | e_jn.c | 157 double q0,q1,h,tmp; int32_t k,m; in __ieee754_jn() local 158 w = (n+n)/(double)x; h = 2.0/(double)x; in __ieee754_jn() 159 q0 = w; z = w+h; q1 = w*z - 1.0; k=1; in __ieee754_jn() 161 k += 1; z += h; in __ieee754_jn()
|
/bionic/libc/kernel/arch-x86/asm/ |
D | dma-mapping_32.h | 27 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) argument 29 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) argument 30 #define dma_is_consistent(d, h) (1) argument
|
D | bitops_32.h | 22 #error only <linux/bitops.h> can be included directly
|
/bionic/libc/docs/ |
D | CHANGES.TXT | 6 - <android/api-level.h>: Added new header to define __ANDROID_API__ to 10 - <sys/cdefs.h>: Include <android/api-level.h> 12 - <time.h>: Add timegm(), timelocal(), time2posix() and posix2time() 14 - <sched.h>: Add sched_getcpu(), sched_getaffinity(), sched_setaffinity(), 17 - <unistd.h>: Add ftruncate64(). 19 - <signal.h>: Changed the definition of SIGRTMAX to 64. However, note that 25 - <pthread.h>: Add reader/writer locks implementation. Add sanity 29 - <semaphore.h>: Use private futexes for semaphore implementation, 36 - <math.h>: Added sincos(), sincosf() and sincosl() (GLibc compatibility). 38 - <sys/sysinfo.h>: Added missing sysinfo() system call implementation [all …]
|
D | SYSV-IPC.TXT | 4 <sys/sem.h> /* SysV semaphores */ 5 <sys/shm.h> /* SysV shared memory segments */ 6 <sys/msg.h> /* SysV message queues */ 7 <sys/ipc.h> /* General IPC definitions */ 31 #include <sys/sem.h> 32 #include <sys/wait.h> 33 #include <unistd.h> 34 #include <stdio.h> 35 #include <stdlib.h> 36 #include <errno.h>
|
/bionic/libc/kernel/common/linux/ |
D | android_power.h | 49 void (*suspend)(android_early_suspend_t *h); 50 void (*resume)(android_early_suspend_t *h);
|
D | pkt_cls.h | 167 #define TC_U32_HTID(h) ((h)&0xFFF00000) argument 169 #define TC_U32_USERHTID(h) (TC_U32_HTID(h)>>20) argument 170 #define TC_U32_HASH(h) (((h)>>12)&0xFF) argument 171 #define TC_U32_NODE(h) ((h)&0xFFF) argument 172 #define TC_U32_KEY(h) ((h)&0xFFFFF) argument
|
D | omap_ion.h | 25 size_t h; member
|
D | pkt_sched.h | 54 #define TC_H_MAJ(h) ((h)&TC_H_MAJ_MASK) argument 55 #define TC_H_MIN(h) ((h)&TC_H_MIN_MASK) argument
|
D | tegrafb.h | 77 __u32 h; member
|
/bionic/libc/zoneinfo/ |
D | zoneinfo.version | 1 2012h
|
/bionic/libc/kernel/tools/ |
D | find_headers.py | 155 for h in sorted(headers): 157 print " %s (%s)" % (h, repr(hparser.getHeaderUsers(h))) 159 print " %s" % h 167 for h in sorted(headers): 168 print "%s" % h
|
/bionic/libc/kernel/arch-mips/asm/ |
D | bitops.h | 22 #error only <linux/bitops.h> can be included directly
|
/bionic/libc/bionic/ |
D | pthread_debug.c | 705 uint32_t h = keySize; in get_hashcode() local 709 h = h * 31 + *data; in get_hashcode() 712 return (uint32_t)h; in get_hashcode() 715 static size_t get_index(uint32_t h) in get_index() argument 719 h += ~(h << 9); in get_index() 720 h ^= (((unsigned int) h) >> 14); in get_index() 721 h += (h << 4); in get_index() 722 h ^= (((unsigned int) h) >> 10); in get_index() 723 return (size_t)h & (HASHTABLE_SIZE - 1); in get_index()
|
/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 | cerrno | 34 * Standard C++ Library wrapper around the C errno.h header file. 36 #include <errno.h>
|
D | csignal | 34 * Standard C++ Library wrapper around the C signal.h header file. 37 #include <signal.h>
|
D | cassert | 31 * Standard C++ Library wrapper around the C assert.h header file. This file 39 #include <assert.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>
|