Home
last modified time | relevance | path

Searched refs:__pure2 (Results 1 – 9 of 9) sorted by relevance

/bionic/libm/include/
Dmath.h175 int __fpclassifyd(double) __pure2;
176 int __fpclassifyf(float) __pure2;
177 int __fpclassifyl(long double) __pure2;
178 int __isfinitef(float) __pure2;
179 int __isfinite(double) __pure2;
180 int __isfinitel(long double) __pure2;
181 int __isinff(float) __pure2;
182 int __isinfl(long double) __pure2;
183 int __isnanf(float) __pure2;
184 int __isnanl(long double) __pure2;
[all …]
Dcomplex.h88 double cimag(double complex) __pure2;
89 float cimagf(float complex) __pure2;
90 long double cimagl(long double complex) __pure2;
91 double complex conj(double complex) __pure2;
92 float complex conjf(float complex) __pure2;
94 conjl(long double complex) __pure2;
95 float complex cprojf(float complex) __pure2;
96 double complex cproj(double complex) __pure2;
98 cprojl(long double complex) __pure2;
99 double creal(double complex) __pure2;
[all …]
/bionic/libc/include/
Dstdlib.h93 _BIONIC_NOT_BEFORE_21(extern int abs(int) __pure2;)
94 _BIONIC_NOT_BEFORE_21(extern long labs(long) __pure2;)
95 _BIONIC_NOT_BEFORE_21(extern long long llabs(long long) __pure2;)
143 extern div_t div(int, int) __pure2;
150 extern ldiv_t ldiv(long, long) __pure2;
157 extern lldiv_t lldiv(long long, long long) __pure2;
Derrno.h44 extern volatile int* __errno(void) __pure2;
Dinttypes.h257 intmax_t imaxabs(intmax_t) __pure2;
258 imaxdiv_t imaxdiv(intmax_t, intmax_t) __pure2;
Dpthread.h211 pthread_t pthread_self(void) __pure2;
Dunistd.h83 extern pid_t gettid(void) __pure2;
/bionic/libc/include/sys/
Dendian.h52 uint32_t htonl(uint32_t) __pure2;
53 uint16_t htons(uint16_t) __pure2;
54 uint32_t ntohl(uint32_t) __pure2;
55 uint16_t ntohs(uint16_t) __pure2;
Dcdefs.h203 #define __pure2 __attribute__((__const__)) /* Android-added: used by FreeBSD libm */ macro