Home
last modified time | relevance | path

Searched refs:cp_str (Results 1 – 25 of 36) sorted by relevance

12

/dports/dns/idnkit/idnkit-1.0-src/lib/
H A Dlocalencoding.c93 static char cp_str[40]; /* enough */ in idn_localencoding_name() local
94 (void)sprintf(cp_str, "CP%u", GetACP()); in idn_localencoding_name()
95 TRACE(("local encoding(codepage)=\"%-.30s\"\n", cp_str)); in idn_localencoding_name()
96 return (cp_str); in idn_localencoding_name()
/dports/dns/bind911/bind-9.11.37/contrib/idn/idnkit-1.0-src/lib/
H A Dlocalencoding.c93 static char cp_str[40]; /* enough */ in idn_localencoding_name() local
94 (void)sprintf(cp_str, "CP%u", GetACP()); in idn_localencoding_name()
95 TRACE(("local encoding(codepage)=\"%-.30s\"\n", cp_str)); in idn_localencoding_name()
96 return (cp_str); in idn_localencoding_name()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/mingw/misc/
H A Dlc_locale_func.c20 const char *cp_str = strchr (setlocale(LC_CTYPE, NULL), '.'); in setlocale_codepage_hack() local
21 return cp_str ? atoi(cp_str + 1) : 0; in setlocale_codepage_hack()
/dports/lang/zig/zig-0.9.0/lib/libc/mingw/misc/
H A Dlc_locale_func.c20 const char *cp_str = strchr (setlocale(LC_CTYPE, NULL), '.'); in setlocale_codepage_hack() local
21 return cp_str ? atoi(cp_str + 1) : 0; in setlocale_codepage_hack()
/dports/dns/idnkit2/idnkit-2.3/lib/
H A Dlocalencoding.c357 char cp_str[40]; /* enough */ in idn__localencoding_getname() local
367 sprintf(cp_str, "CP%u", GetACP()); in idn__localencoding_getname()
368 key = cp_str; in idn__localencoding_getname()
/dports/math/gnuplot/gnuplot-5.4.1/src/
H A Dencoding.c86 char * cp_str; in encoding_from_locale() local
90 if ((l != NULL) && (cp_str = strchr(l, '.')) != NULL) { in encoding_from_locale()
93 cp_str++; /* Step past the dot in, e.g., German_Germany.1252 */ in encoding_from_locale()
94 cp = strtoul(cp_str, NULL, 10); in encoding_from_locale()
/dports/math/gnuplot-lite/gnuplot-5.4.1/src/
H A Dencoding.c86 char * cp_str; in encoding_from_locale() local
90 if ((l != NULL) && (cp_str = strchr(l, '.')) != NULL) { in encoding_from_locale()
93 cp_str++; /* Step past the dot in, e.g., German_Germany.1252 */ in encoding_from_locale()
94 cp = strtoul(cp_str, NULL, 10); in encoding_from_locale()
/dports/editors/vim/vim-8.2.3745/src/
H A Dinsexpand.c107 char_u *cp_str; // matched text member
622 && STRNCMP(match->cp_str, str, len) == 0 in ins_compl_add()
623 && match->cp_str[len] == NUL) in ins_compl_add()
732 compl_leader = vim_strsave(match->cp_str); in ins_compl_longest_match()
751 s = match->cp_str; in ins_compl_longest_match()
1481 vim_free(match->cp_str); in ins_compl_free()
1767 vim_free(compl_first_match->cp_str); in ins_compl_set_original_text()
1768 compl_first_match->cp_str = p; in ins_compl_set_original_text()
1795 p = compl_shown_match->cp_str; in ins_compl_addfrommatch()
1810 p = cp->cp_str; in ins_compl_addfrommatch()
[all …]
/dports/net-mgmt/pmacct/pmacct-1.7.5/src/
H A Dprint_plugin.c853 char cp_str[SRVBUFLEN]; in P_cache_purge() local
856 fprintf(f, "%s ", cp_str); in P_cache_purge()
1218 char cp_str[SRVBUFLEN]; in P_cache_purge() local
1220 … custom_primitive_value_print(cp_str, SRVBUFLEN, pcust, &config.cpptrs.primitive[cp_idx], FALSE); in P_cache_purge()
1221 fprintf(f, "%s%s", write_sep(sep, &count), cp_str); in P_cache_purge()
1452 char cp_str[SRVBUFLEN]; in P_write_stats_header_formatted() local
1456 custom_primitive_header_print(cp_str, SRVBUFLEN, &config.cpptrs.primitive[cp_idx], TRUE); in P_write_stats_header_formatted()
1457 fprintf(f, "%s ", cp_str); in P_write_stats_header_formatted()
1571 char cp_str[SRVBUFLEN]; in P_write_stats_header_csv() local
1575 custom_primitive_header_print(cp_str, SRVBUFLEN, &config.cpptrs.primitive[cp_idx], FALSE); in P_write_stats_header_csv()
[all …]
H A Dpmacct.c247 char cp_str[SRVBUFLEN]; in write_stats_header_formatted() local
252 printf("%s ", cp_str); in write_stats_header_formatted()
361 char cp_str[SRVBUFLEN]; in write_stats_header_formatted() local
366 printf("%s ", cp_str); in write_stats_header_formatted()
460 char cp_str[SRVBUFLEN]; in write_stats_header_csv() local
465 printf("%s%s", write_sep(sep, &count), cp_str); in write_stats_header_csv()
574 char cp_str[SRVBUFLEN]; in write_stats_header_csv() local
579 printf("%s%s", write_sep(sep, &count), cp_str); in write_stats_header_csv()
2789 char cp_str[SRVBUFLEN]; in main() local
2795 if (want_output & PRINT_OUTPUT_FORMATTED) printf("%s ", cp_str); in main()
[all …]
H A Dplugin_cmn_json.c1112 char cp_str[VERYSHORTBUFLEN]; in compose_json_custom_primitives() local
1114 …custom_primitive_value_print(cp_str, VERYSHORTBUFLEN, cc->pcust, &config.cpptrs.primitive[cp_idx],… in compose_json_custom_primitives()
1115 json_object_set_new_nocheck(obj, config.cpptrs.primitive[cp_idx].name, json_string(cp_str)); in compose_json_custom_primitives()
H A Dmongodb_plugin.c873 char cp_str[SRVBUFLEN]; in MongoDB_cache_purge() local
875 … custom_primitive_value_print(cp_str, SRVBUFLEN, pcust, &config.cpptrs.primitive[cp_idx], FALSE); in MongoDB_cache_purge()
876 bson_append_string(bson_elem, config.cpptrs.primitive[cp_idx].name, cp_str); in MongoDB_cache_purge()
/dports/editors/neovim/neovim-0.6.1/src/nvim/
H A Dedit.c148 char_u *cp_str; // matched text member
2375 && match->cp_str[len] == NUL) { in ins_compl_add()
2395 match->cp_str = vim_strnsave(str, len); in ins_compl_add()
2496 compl_leader = vim_strsave(match->cp_str); in ins_compl_longest_match()
2511 s = match->cp_str; in ins_compl_longest_match()
3153 xfree(match->cp_str); in ins_compl_free()
3503 xfree(compl_first_match->cp_str); in ins_compl_set_original_text()
3507 xfree(compl_first_match->cp_prev->cp_str); in ins_compl_set_original_text()
3523 p = compl_shown_match->cp_str; in ins_compl_addfrommatch()
3534 p = cp->cp_str; in ins_compl_addfrommatch()
[all …]
/dports/news/nn/nn-6.7.3/
H A Dfolder.c123 goto cp_str; in expand_file_name()
129 cp_str: in expand_file_name()
/dports/math/gnuplot-tex-extras/gnuplot-5.2.8/src/
H A Dmisc.c1783 char * cp_str; in encoding_from_locale() local
1787 cp_str = strchr(l, '.'); in encoding_from_locale()
1788 if (cp_str) { in encoding_from_locale()
1791 cp_str++; /* Step past the dot in, e.g., German_Germany.1252 */ in encoding_from_locale()
1792 cp = strtoul(cp_str, NULL, 10); in encoding_from_locale()
/dports/x11-toolkits/mygui/mygui-MyGUI3.4.0/MyGUIEngine/src/
H A DMyGUI_UString.cpp1275 …UString::size_type UString::find( const code_point* cp_str, size_type index, size_type length ) co… in find() argument
1277 UString tmp( cp_str ); in find()
1324 UString::size_type UString::rfind( const code_point* cp_str, size_type index, size_type num ) const in rfind() argument
1326 UString tmp( cp_str ); in rfind()
/dports/x11-toolkits/mygui-ogre/mygui-MyGUI3.4.0/MyGUIEngine/src/
H A DMyGUI_UString.cpp1275 …UString::size_type UString::find( const code_point* cp_str, size_type index, size_type length ) co… in find() argument
1277 UString tmp( cp_str ); in find()
1324 UString::size_type UString::rfind( const code_point* cp_str, size_type index, size_type num ) const in rfind() argument
1326 UString tmp( cp_str ); in rfind()
/dports/x11-toolkits/mygui-dummy/mygui-MyGUI3.4.0/MyGUIEngine/src/
H A DMyGUI_UString.cpp1275 …UString::size_type UString::find( const code_point* cp_str, size_type index, size_type length ) co… in find() argument
1277 UString tmp( cp_str ); in find()
1324 UString::size_type UString::rfind( const code_point* cp_str, size_type index, size_type num ) const in rfind() argument
1326 UString tmp( cp_str ); in rfind()
/dports/x11-toolkits/mygui-opengl/mygui-MyGUI3.4.0/MyGUIEngine/src/
H A DMyGUI_UString.cpp1275 …UString::size_type UString::find( const code_point* cp_str, size_type index, size_type length ) co… in find() argument
1277 UString tmp( cp_str ); in find()
1324 UString::size_type UString::rfind( const code_point* cp_str, size_type index, size_type num ) const in rfind() argument
1326 UString tmp( cp_str ); in rfind()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/src/
H A DOgreUTFString.cpp1307 …Ogre::UTFString::size_type UTFString::find( const code_point* cp_str, size_type index, size_type i… in find() argument
1309 UTFString tmp( cp_str ); in find()
1356 …Ogre::UTFString::size_type UTFString::rfind( const code_point* cp_str, size_type index, size_type … in rfind() argument
1358 UTFString tmp( cp_str ); in rfind()
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/src/
H A DOgreUTFString.cpp1299 …Ogre::UTFString::size_type UTFString::find( const code_point* cp_str, size_type index, size_type i… in find() argument
1301 UTFString tmp( cp_str ); in find()
1348 …Ogre::UTFString::size_type UTFString::rfind( const code_point* cp_str, size_type index, size_type … in rfind() argument
1350 UTFString tmp( cp_str ); in rfind()
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/include/
H A DOgreUTFString.h757 size_type find( const code_point* cp_str, size_type index, size_type length ) const;
784 size_type rfind( const code_point* cp_str, size_type index, size_type num ) const;
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/include/
H A DOgreUTFString.h760 size_type find( const code_point* cp_str, size_type index, size_type length ) const;
787 size_type rfind( const code_point* cp_str, size_type index, size_type num ) const;
/dports/x11-toolkits/mygui-dummy/mygui-MyGUI3.4.0/MyGUIEngine/include/
H A DMyGUI_UString.h762 size_type find( const code_point* cp_str, size_type index, size_type length ) const;
789 size_type rfind( const code_point* cp_str, size_type index, size_type num ) const;
/dports/x11-toolkits/mygui-ogre/mygui-MyGUI3.4.0/MyGUIEngine/include/
H A DMyGUI_UString.h762 size_type find( const code_point* cp_str, size_type index, size_type length ) const;
789 size_type rfind( const code_point* cp_str, size_type index, size_type num ) const;

12