/picolibc-latest/newlib/libc/ctype/ |
D | iswpunct_l.c | 19 enum category cat = category (c); in iswpunct_l() local 20 …return cat == CAT_Pc || cat == CAT_Pd || cat == CAT_Pe || cat == CAT_Pf || cat == CAT_Pi || cat ==… in iswpunct_l() 21 || cat == CAT_Sm // Math Symbols in iswpunct_l() 23 || cat == CAT_Sc // Currency Symbols in iswpunct_l() 24 || cat == CAT_Sk // Modifier_Symbol in iswpunct_l() 25 || cat == CAT_So // Other_Symbol in iswpunct_l() 26 || cat == CAT_No // Other_Number in iswpunct_l()
|
D | iswalnum_l.c | 19 enum category cat = category (c); in iswalnum_l() local 20 return cat == CAT_LC || cat == CAT_Lu || cat == CAT_Ll || cat == CAT_Lt in iswalnum_l() 21 || cat == CAT_Lm || cat == CAT_Lo in iswalnum_l() 22 || cat == CAT_Nl // Letter_Number in iswalnum_l() 23 || cat == CAT_Nd // Decimal_Number in iswalnum_l()
|
D | iswalpha_l.c | 18 enum category cat = category (c); in iswalpha_l() local 19 return cat == CAT_LC || cat == CAT_Lu || cat == CAT_Ll || cat == CAT_Lt in iswalpha_l() 20 || cat == CAT_Lm || cat == CAT_Lo in iswalpha_l() 21 || cat == CAT_Nl // Letter_Number in iswalpha_l()
|
D | iswgraph_l.c | 18 enum category cat = category (c); in iswgraph_l() local 19 return cat != CAT_error in iswgraph_l() 20 && cat != CAT_Cc && cat != CAT_Cf in iswgraph_l() 21 && cat != CAT_Cs // Surrogate in iswgraph_l() 22 && cat != CAT_Zs in iswgraph_l() 23 && cat != CAT_Zl && cat != CAT_Zp // Line/Paragraph Separator in iswgraph_l()
|
D | iswprint_l.c | 18 enum category cat = category (c); in iswprint_l() local 19 return cat != -1 in iswprint_l() 20 && cat != CAT_Cc && cat != CAT_Cf in iswprint_l() 21 && cat != CAT_Cs // Surrogate in iswprint_l()
|
D | iswcntrl_l.c | 18 enum category cat = category (c); in iswcntrl_l() local 19 return cat == CAT_Cc in iswcntrl_l() 20 || cat == CAT_Zl || cat == CAT_Zp // Line/Paragraph Separator in iswcntrl_l()
|
D | iswspace_l.c | 18 enum category cat = category (c); in iswspace_l() local 20 return cat == CAT_Zs in iswspace_l() 21 || cat == CAT_Zl || cat == CAT_Zp // Line/Paragraph Separator in iswspace_l()
|
D | mkcategories | 25 cat <<\/EOS 51 cat "$UnicodeData" | 64 else cat 72 sort | uniq > categories.cat
|
D | iswlower_l.c | 20 enum category cat = category (c); in iswlower_l() local 21 return cat == CAT_Ll || (cat == CAT_LC && towlower (c) == c); in iswlower_l()
|
D | iswupper_l.c | 20 enum category cat = category (c); in iswupper_l() local 21 return cat == CAT_Lu || (cat == CAT_LC && towupper (c) == c); in iswupper_l()
|
D | mkcaseconv | 41 cat <<\/EOS 76 cat 80 cat <<\/EOS 117 cat
|
D | iswblank_l.c | 18 enum category cat = category (c); in iswblank_l() local 20 return cat == CAT_Zs in iswblank_l()
|
D | categories.c | 11 enum category cat: 8; 40 return table[mid].cat; in bisearch_cat()
|
/picolibc-latest/.github/workflows/ |
D | make-workflow | 3 cat head 8 cat variants-$build 9 cat targets-$build-$arch 10 cat steps-head 11 cat steps-$build 18 cat variants 19 cat targets-$arch 20 cat steps-head 21 cat steps-$build
|
D | make-workflow-zephyr | 3 cat head-zephyr 8 cat variants 9 cat targets-$arch 10 cat steps-head 11 cat steps-$build
|
/picolibc-latest/newlib/libc/string/ |
D | mkunidata | 65 uniset +cat=Me +cat=Mn +cat=Cf -00AD +1160-11FF +200B +D7B0-D7C6 +D7CB-D7FB c > combining.t 68 sh ./mkwidthA && uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c > ambiguous.t
|
D | uniset | 259 $cat = $1; 261 $used{$i} = "[${cat}]" if $category{$i} eq $cat; 265 $cat = $1; 267 delete $used{$i} if $category{$i} eq $cat; 271 $cat = $1; 273 delete $used{$i} unless $category{$i} eq $cat;
|
/picolibc-latest/.github/ |
D | do-test-noopt | 44 cat meson-logs/* 48 cat meson-logs/*
|
D | do-test | 48 cat meson-logs/* 52 cat meson-logs/*
|
D | do-build | 51 cat meson-logs/* 55 cat meson-logs/*
|
D | do-cmake-test | 27 cat CMakeFiles/CMakeOutput.log
|
/picolibc-latest/newlib/libc/locale/ |
D | newlocale.c | 146 const char *cat = (locale[0] == '\0') ? __get_locale_env (i) in newlocale() local 148 if (strlen (cat) > ENCODING_LEN) in newlocale() 153 strcpy (new_categories[i], cat); in newlocale()
|
D | nl_langinfo.c | 33 #define _NLITEM(cat,memb) { { .cat = __get_##cat##_locale }, \ argument 34 _O (struct lc_##cat##_T, memb) }
|
/picolibc-latest/scripts/ |
D | duplicate-names | 9 cat "$OUTPUT"
|
D | GeneratePicolibcCrossFile.sh | 41 cat - <<EOF
|