Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 18 of 18) sorted by relevance

/picolibc-latest/test/
Dcomplex-funcs.c7 double complex c1, c2; variable
22 (void) cacos(c1); in main()
26 (void) casin(c1); in main()
33 (void) catan(c1); in main()
40 (void) ccos(c1); in main()
44 (void) csin(c1); in main()
48 (void) ctan(c1); in main()
53 (void) cacosh(c1); in main()
57 (void) casinh(c1); in main()
61 (void) catanh(c1); in main()
[all …]
/picolibc-latest/newlib/libc/posix/
Dcollcmp.c37 int __collate_range_cmp (int c1, int c2) in __collate_range_cmp() argument
42 c1 &= UCHAR_MAX; in __collate_range_cmp()
44 if (c1 == c2) in __collate_range_cmp()
46 s1[0] = c1; in __collate_range_cmp()
52 return (c1 - c2); in __collate_range_cmp()
Dregcomp.c110 static int samesets(struct re_guts *g, int c1, int c2);
1426 samesets(struct re_guts *g, int c1, int c2) in samesets() argument
1431 unsigned uc1 = (uch)c1; in samesets()
/picolibc-latest/newlib/libm/common/
Dsincosf.h44 double c0, c1, c2, c3, c4; /* Cosine polynomial. */ member
68 double x3, x4, x5, x6, s, c, c1, c2, s1; in sincosf_poly() local
80 c1 = p->c0 + x2 * p->c1; in sincosf_poly()
85 c = c1 + x4 * p->c2; in sincosf_poly()
96 double x3, x4, x6, x7, s, c, c1, c2, s1; in sinf_poly() local
112 c1 = p->c0 + x2 * p->c1; in sinf_poly()
115 c = c1 + x4 * p->c2; in sinf_poly()
/picolibc-latest/newlib/libc/machine/riscv/
Dstrlen.c43 char c0 = str[0 - sl], c1 = str[1 - sl], c2 = str[2 - sl], c3 = str[3 - sl]; in strlen() local
45 if (c1 == 0) return ret + 1 - sl; in strlen()
49 c0 = str[4 - sl], c1 = str[5 - sl], c2 = str[6 - sl], c3 = str[7 - sl]; in strlen()
51 if (c1 == 0) return ret + 5 - sl; in strlen()
Dstrcpy.c38 char c1 = src[1]; in strcpy() local
41 if (!(*dst++ = c1)) return dst0; in strcpy()
/picolibc-latest/newlib/libc/string/
Dstrcasecmp.c61 const int c1 = tolower(*s1++); in strcasecmp() local
63 if (((d = c1 - c2) != 0) || (c2 == '\0')) in strcasecmp()
Dwcscasecmp.c47 const int c1 = towlower (*s1++); in wcscasecmp() local
49 if (((d = c1 - c2) != 0) || (c2 == '\0')) in wcscasecmp()
Dstrncasecmp.c63 const int c1 = tolower(*s1++); in strncasecmp() local
65 if (((d = c1 - c2) != 0) || (c2 == '\0')) in strncasecmp()
Dstrcasecmp_l.c50 const int c1 = tolower_l (*s1++, locale); in strcasecmp_l() local
52 if (((d = c1 - c2) != 0) || (c2 == '\0')) in strcasecmp_l()
Dwcscasecmp_l.c52 const int c1 = towlower_l (*s1++, locale); in wcscasecmp_l() local
54 if (((d = c1 - c2) != 0) || (c2 == '\0')) in wcscasecmp_l()
Dwcsncasecmp.c49 const int c1 = towlower (*s1++); in wcsncasecmp() local
51 if (((d = c1 - c2) != 0) || (c2 == '\0')) in wcsncasecmp()
Dstrncasecmp_l.c54 const int c1 = tolower_l (*s1++, locale); in strncasecmp_l() local
56 if (((d = c1 - c2) != 0) || (c2 == '\0')) in strncasecmp_l()
Dwcsncasecmp_l.c54 const int c1 = towlower_l (*s1++, locale); in wcsncasecmp_l() local
56 if (((d = c1 - c2) != 0) || (c2 == '\0')) in wcsncasecmp_l()
/picolibc-latest/newlib/libc/machine/arm/
Dstrcmp-armv4.S184 char c1, c2;
189 c1 = *s1++;
191 if (c1 == 0 || c1 != c2)
192 return c1 - (int)c2;
213 c1 = (char) tmp2 >> 24;
216 c1 = (char) tmp2;
221 } while (c1 != 0 && c1 == c2);
222 return c1 - c2;
Dstrcmp-armv7m.S171 char c1, c2;
176 c1 = *s1++;
178 if (c1 == 0 || c1 != c2)
179 return c1 - (int)c2;
200 c1 = (char) tmp2 >> 24;
203 c1 = (char) tmp2;
208 } while (c1 != 0 && c1 == c2);
209 return c1 - c2;
/picolibc-latest/newlib/libm/machine/spu/headers/
Dcbrtf.h62 vec_double2 c1 = VEC_SPLAT_F64(0.697570460207922770); in _cbrtf() local
83 u0 = spu_madd(mant0, spu_nmsub(mant0, c2, c1), c0); in _cbrtf()
Dcbrt.h64 vec_double2 c1 = VEC_SPLAT_F64(1.50819193781584896); in _cbrt() local
87 …ant, spu_madd(mant, spu_madd(mant, spu_madd(mant, spu_nmsub(mant, c6, c5), c4), c3), c2), c1), c0); in _cbrt()