Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 13 of 13) sorted by relevance

/picolibc-latest/newlib/libm/common/
Dexp2.c104 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()
Dexp.c106 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()
Dpow.c60 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/
Dconvert.c51 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/
Dmemchr.S96 cbnz synd, L(tail)
120 b.hs L(tail)
131 L(tail):
Dstrchrnul.S108 cbnz tmp1, L(tail)
130 L(tail):
Dstrchr.S116 cbnz tmp1, L(tail)
139 L(tail):
Dstrcmp.S150 b.ne L(tail)
176 L(tail):
Dstrcpy.S91 cbnz synd, L(tail)
114 L(tail):
Dstrrchr.S125 cbnz nul_match, L(tail)
154 L(tail):
/picolibc-latest/newlib/libc/posix/
Dengine.c358 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/
Dprintf_scanf.c254 …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/
Dmakedocbook.py369 parameter.tail = match2.group(3)