/picolibc-latest/newlib/libm/common/ |
D | exp2.c | 104 double_t kd, r, r2, scale, tail, tmp; in exp2() local 138 tail = asfloat64 (T[idx]); in exp2() 147 tmp = tail + r * C1 + r2 * C2 + r * r2 * (C3 + r * C4); in exp2() 149 tmp = tail + r * C1 + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5); in exp2() 151 tmp = tail + r * C1 + r2 * (0.5 + r * C3) + r2 * r2 * (C4 + r * C5 + r2 * C6); in exp2()
|
D | exp.c | 106 double_t kd, z, r, r2, scale, tail, tmp; in exp() local 151 tail = asfloat64 (T[idx]); in exp() 160 tmp = tail + r + r2 * C2 + r * r2 * (C3 + r * C4); in exp() 162 tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5); in exp() 164 tmp = tail + r + r2 * (0.5 + r * C3) + r2 * r2 * (C4 + r * C5 + r2 * C6); in exp()
|
D | pow.c | 60 log_inline (uint64_t ix, double_t *tail) in log_inline() argument 125 *tail = hi - y + lo; in log_inline() 205 double_t kd, z, r, r2, scale, tail, tmp; in exp_inline() local 252 tail = asfloat64 (T[idx]); in exp_inline() 261 tmp = tail + r + r2 * C2 + r * r2 * (C3 + r * C4); in exp_inline() 263 tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5); in exp_inline() 265 tmp = tail + r + r2 * (0.5 + r * C3) + r2 * r2 * (C4 + r * C5 + r2 * C6); in exp_inline()
|
/picolibc-latest/newlib/libm/test/ |
D | convert.c | 51 char *tail; in test_strtod() local 55 v = strtod(pd->string, &tail); in test_strtod() 56 if (tail - pd->string) { in test_strtod() 71 test_iok(tail - pd->string, pd->endscan & ENDSCAN_MASK); in test_strtod() 77 char *tail; in test_strtof() local 81 v = strtof(pd->string, &tail); in test_strtof() 82 if (tail - pd->string) { in test_strtof() 92 test_iok(tail - pd->string, pd->endscan & ENDSCAN_MASK); in test_strtof() 109 char *tail; in test_strtold() local 113 v = strtold(pd->string, &tail); in test_strtold() [all …]
|
/picolibc-latest/newlib/libc/machine/aarch64/ |
D | memchr.S | 96 cbnz synd, L(tail) 120 b.hs L(tail) 131 L(tail):
|
D | strchrnul.S | 108 cbnz tmp1, L(tail) 130 L(tail):
|
D | strchr.S | 116 cbnz tmp1, L(tail) 139 L(tail):
|
D | strcmp.S | 150 b.ne L(tail) 176 L(tail):
|
D | strcpy.S | 91 cbnz synd, L(tail) 114 L(tail):
|
D | strrchr.S | 125 cbnz nul_match, L(tail) 154 L(tail):
|
/picolibc-latest/newlib/libc/posix/ |
D | engine.c | 358 char *tail; /* string unmatched by rest of RE */ in dissect() local 412 tail = slow(m, rest, stop, es, stopst); in dissect() 413 if (tail == stop) in dissect() 437 tail = slow(m, rest, stop, es, stopst); in dissect() 438 if (tail == stop) in dissect() 474 tail = slow(m, rest, stop, es, stopst); in dissect() 475 if (tail == stop) in dissect()
|
/picolibc-latest/test/ |
D | printf_scanf.c | 254 …onst char *test_name, float_type a, const char *buf, const char *head, int zeros, const char *tail) in check_float() argument 269 if (strcmp(buf + o, tail) != 0) in check_float() 275 test_name, printf_float(a), printf_float(a), buf, head, zeros, tail); in check_float()
|
/picolibc-latest/newlib/doc/ |
D | makedocbook.py | 369 parameter.tail = match2.group(3)
|