Searched refs:pd (Results 1 – 2 of 2) sorted by relevance
/picolibc-latest/newlib/libm/test/ |
D | convert.c | 33 double_type *pd = doubles; variable 55 v = strtod(pd->string, &tail); in test_strtod() 56 if (tail - pd->string) { in test_strtod() 57 if (fabs(v) < DBL_MIN && !(pd->endscan & ENDSCAN_IS_ZERO)) { in test_strtod() 60 if (strncasecmp(pd->string, "0x", 2) == 0) in test_strtod() 65 } else if (isinf(v) && !(pd->endscan & ENDSCAN_IS_INF)) in test_strtod() 70 test_mok(v, pd->value, CONVERT_BITS_DOUBLE); in test_strtod() 71 test_iok(tail - pd->string, pd->endscan & ENDSCAN_MASK); in test_strtod() 81 v = strtof(pd->string, &tail); in test_strtof() 82 if (tail - pd->string) { in test_strtof() [all …]
|
/picolibc-latest/newlib/libc/search/ |
D | qsort.c | 199 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; in __bsd_qsort_r() local 238 pc = pd = (char *) a + (n - 1) * es; in __bsd_qsort_r() 255 swap(pc, pd); in __bsd_qsort_r() 256 pd -= es; in __bsd_qsort_r() 283 r = min((size_t) (pd - pc), (size_t) (pn - pd) - es); in __bsd_qsort_r() 286 r = pd - pc; /* r = Size of right part. */ in __bsd_qsort_r()
|