/bionic/libc/arch-mips/string/ |
D | mips_strlen.c | 175 #define P(__x,__y) {\ in main() macro 181 P (str1, 0); in main() 182 P (str1, 1); in main() 183 P (str1, 2); in main() 184 P (str1, 3); in main() 186 P (str2, 0); in main() 187 P (str2, 1); in main() 188 P (str2, 2); in main() 189 P (str2, 3); in main() 191 P (str3, 0); in main() [all …]
|
/bionic/libc/stdlib/ |
D | setenv.c | 63 char **P; in setenv() local 65 for (P = environ; *P != NULL; P++) in setenv() 67 cnt = P - environ; in setenv() 68 P = (char **)realloc(lastenv, sizeof(char *) * (cnt + 2)); in setenv() 69 if (!P) in setenv() 72 memcpy(P, environ, cnt * sizeof(char *)); in setenv() 73 lastenv = environ = P; in setenv() 96 char **P; in unsetenv() local 100 for (P = &environ[offset];; ++P) in unsetenv() 101 if (!(*P = *(P + 1))) in unsetenv()
|
D | strtod.c | 248 #define P 53 macro 278 #define P 14 macro 302 #define P 56 macro 1025 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1; 1239 *e = (de - Bias - (P-1) << 2) + k; 1240 *bits = 4*P + 8 - k - hi0bits(word0(d) & Frac_mask); 1242 *e = de - Bias - (P-1) + k; 1243 *bits = P - k; 1248 *e = de - Bias - (P-1) + 1 + k; 1546 word0(rv) -= P*Exp_msk1; [all …]
|
/bionic/libc/bionic/ |
D | clearenv.c | 35 char **P = environ; in clearenv() local 37 if (P != NULL) { in clearenv() 38 for (; *P; ++P) in clearenv() 39 *P = NULL; in clearenv()
|
/bionic/libc/tzcode/ |
D | private.h | 167 #ifndef P 168 #define P(x) x macro 213 extern int unlink P((const char * filename)); 241 char * icalloc P((int nelem, int elsize)); 242 char * icatalloc P((char * old, const char * new)); 243 char * icpyalloc P((const char * string)); 244 char * imalloc P((int n)); 245 void * irealloc P((void * pointer, int size)); 246 void icfree P((char * pointer)); 247 void ifree P((char * pointer)); [all …]
|
D | localtime.c | 203 static long detzcode P((const char * codep)); 204 static time_t detzcode64 P((const char * codep)); 205 static int differ_by_repeat P((time_t t1, time_t t0)); 206 static const char * getzname P((const char * strp)); 207 static const char * getqzname P((const char * strp, const int delim)); 208 static const char * getnum P((const char * strp, int * nump, int min, 210 static const char * getsecs P((const char * strp, long * secsp)); 211 static const char * getoffset P((const char * strp, long * offsetp)); 212 static const char * getrule P((const char * strp, struct rule * rulep)); 213 static void gmtload P((struct state * sp)); [all …]
|
D | strftime.c | 114 static char * _add P((const char *, char *, const char *, int)); 115 static char * _conv P((int, const char *, char *, const char *)); 116 static char * _fmt P((const char *, const struct tm *, char *, const char *, 118 static char * _yconv P((int, int, int, int, char *, const char *, int)); 119 static char * getformat P((int, char *, char *, char *, char *));
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | e_acosl.c | 62 p = P(z); in acosl() 68 p = P(z); in acosl() 81 p = P(z); in acosl()
|
D | s_erf.c | 193 double R,S,P,Q,s,y,z,r; in erf() local 215 P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6))))); in erf() 217 if(hx>=0) return erx + P/Q; else return -erx - P/Q; in erf() 245 double R,S,P,Q,s,y,z,r; in erfc() local 270 P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6))))); in erfc() 273 z = one-erx; return z - P/Q; in erfc() 275 z = erx+P/Q; return one+z; in erfc()
|
D | s_erff.c | 101 float R,S,P,Q,s,y,z,r; in erff() local 124 P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6))))); in erff() 126 if(hx>=0) return erx + P/Q; else return -erx - P/Q; in erff() 154 float R,S,P,Q,s,y,z,r; in erfcf() local 179 P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6))))); in erfcf() 182 z = one-erx; return z - P/Q; in erfcf() 184 z = erx+P/Q; return one+z; in erfcf()
|
D | e_asinl.c | 52 p = P(t); in asinl() 60 p = P(t); in asinl()
|
/bionic/libc/upstream-dlmalloc/ |
D | malloc.c | 2793 #define check_free_chunk(M,P) argument 2794 #define check_inuse_chunk(M,P) argument 2795 #define check_malloced_chunk(M,P,N) argument 2796 #define check_mmapped_chunk(M,P) argument 2798 #define check_top_chunk(M,P) argument 2801 #define check_free_chunk(M,P) do_check_free_chunk(M,P) argument 2802 #define check_inuse_chunk(M,P) do_check_inuse_chunk(M,P) argument 2803 #define check_top_chunk(M,P) do_check_top_chunk(M,P) argument 2804 #define check_malloced_chunk(M,P,N) do_check_malloced_chunk(M,P,N) argument 2805 #define check_mmapped_chunk(M,P) do_check_mmapped_chunk(M,P) argument [all …]
|
/bionic/libc/ |
D | Android.mk | 583 $(call transform-d-to-p-args,$(@:%.s=%.d),$(@:%.s=%.P)) 584 -include $(GEN:%.s=%.P) 599 -include $(GEN:%.o=%.P) 608 -include $(GEN:%.o=%.P) 629 -include $(GEN:%.o=%.P) 644 -include $(GEN:%.o=%.P) 661 -include $(GEN:%.o=%.P)
|