Home
last modified time | relevance | path

Searched refs:__fmt (Results 1 – 25 of 889) sorted by relevance

12345678910>>...36

/dports/devel/tinygo/tinygo-0.14.1/lib/picolibc/newlib/libc/tinystdio/
H A Dstdio.h606 extern int printf(const char *__fmt, ...);
607 extern int __i_printf(const char *__fmt, ...);
608 extern int __f_printf(const char *__fmt, ...);
616 extern int vprintf(const char *__fmt, va_list __ap);
624 extern int sprintf(char *__s, const char *__fmt, ...);
820 extern int scanf(const char *__fmt, ...);
821 extern int __i_scanf(const char *__fmt, ...);
822 extern int __f_scanf(const char *__fmt, ...);
830 extern int vscanf(const char *__fmt, va_list __ap);
831 extern int __i_vscanf(const char *__fmt, va_list __ap);
[all …]
/dports/devel/avr-libc/avr-libc-2.0.0/include/
H A Dstdio.h651 extern int printf(const char *__fmt, ...);
657 extern int printf_P(const char *__fmt, ...);
665 extern int vprintf(const char *__fmt, va_list __ap);
671 extern int sprintf(char *__s, const char *__fmt, ...);
677 extern int sprintf_P(char *__s, const char *__fmt, ...);
726 extern int fprintf(FILE *__stream, const char *__fmt, ...);
890 extern int fscanf(FILE *__stream, const char *__fmt, ...);
895 extern int fscanf_P(FILE *__stream, const char *__fmt, ...);
902 extern int scanf(const char *__fmt, ...);
907 extern int scanf_P(const char *__fmt, ...);
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/include/generic-glibc/bits/
H A Dstdio2.h39 __glibc_objsize (__s), __fmt, in __NTH()
53 __glibc_objsize (__s), __fmt, __ap); in __NTH()
69 const char *__restrict __fmt, ...)) in __NTH() argument
72 __glibc_objsize (__s), __fmt, in __NTH()
83 const char *__restrict __fmt, __gnuc_va_list __ap)) in __NTH() argument
86 __glibc_objsize (__s), __fmt, __ap); in __NTH()
110 printf (const char *__restrict __fmt, ...) in printf() argument
133 const char *__restrict __fmt, __gnuc_va_list __ap) in vfprintf() argument
147 dprintf (int __fd, const char *__restrict __fmt, ...) in dprintf() argument
167 const char *__restrict __fmt, ...)
[all …]
H A Dsyslog.h24 extern void __syslog_chk (int __pri, int __flag, const char *__fmt, ...)
29 syslog (int __pri, const char *__fmt, ...) in syslog() argument
31 __syslog_chk (__pri, __USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ()); in syslog()
40 extern void __vsyslog_chk (int __pri, int __flag, const char *__fmt,
45 vsyslog (int __pri, const char *__fmt, __gnuc_va_list __ap) in vsyslog() argument
47 __vsyslog_chk (__pri, __USE_FORTIFY_LEVEL - 1, __fmt, __ap); in vsyslog()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/generic-glibc/bits/
H A Dstdio2.h39 __glibc_objsize (__s), __fmt, in __NTH()
53 __glibc_objsize (__s), __fmt, __ap); in __NTH()
69 const char *__restrict __fmt, ...)) in __NTH() argument
72 __glibc_objsize (__s), __fmt, in __NTH()
83 const char *__restrict __fmt, __gnuc_va_list __ap)) in __NTH() argument
86 __glibc_objsize (__s), __fmt, __ap); in __NTH()
110 printf (const char *__restrict __fmt, ...) in printf() argument
133 const char *__restrict __fmt, __gnuc_va_list __ap) in vfprintf() argument
147 dprintf (int __fd, const char *__restrict __fmt, ...) in dprintf() argument
167 const char *__restrict __fmt, ...)
[all …]
H A Dsyslog.h24 extern void __syslog_chk (int __pri, int __flag, const char *__fmt, ...)
29 syslog (int __pri, const char *__fmt, ...) in syslog() argument
31 __syslog_chk (__pri, __USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ()); in syslog()
40 extern void __vsyslog_chk (int __pri, int __flag, const char *__fmt,
45 vsyslog (int __pri, const char *__fmt, __gnuc_va_list __ap) in vsyslog() argument
47 __vsyslog_chk (__pri, __USE_FORTIFY_LEVEL - 1, __fmt, __ap); in vsyslog()
/dports/math/spar/spar-0.5.10/lib/error/
H A Derror.c74 sl_error_throw (sl_error_class __class, sl_error __error, const char *__fmt, ...) in sl_error_throw() argument
79 va_start (__ap, __fmt); in sl_error_throw()
86 __error_internal (__fmt, __ap); in sl_error_throw()
94 __error_internal (__fmt, __ap); in sl_error_throw()
99 __error_internal (__fmt, __ap); in sl_error_throw()
106 __error_internal (__fmt, __ap); in sl_error_throw()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/include/
H A Dformat519 vformat_to(_OutIt __out_it, string_view __fmt,
527 vformat_to(_OutIt __out_it, wstring_view __fmt,
537 _VSTD::move(__out_it), __fmt,
546 _VSTD::move(__out_it), __fmt,
553 vformat(string_view __fmt, format_args __args) {
561 vformat(wstring_view __fmt, wformat_args __args) {
570 format(string_view __fmt, const _Args&... __args) {
702 return _VSTD::vformat(_VSTD::move(__loc), __fmt,
710 return _VSTD::vformat(_VSTD::move(__loc), __fmt,
749 return _VSTD::vformat(_VSTD::move(__loc), __fmt,
[all …]
/dports/textproc/redisearch/RediSearch-2.2.5/src/
H A Drmalloc.h41 static int rm_vasprintf(char **__restrict __ptr, const char *__restrict __fmt, va_list __arg) { in rm_vasprintf() argument
45 size_t needed = vsnprintf(NULL, 0, __fmt, __arg) + 1; in rm_vasprintf()
48 int res = vsprintf(*__ptr, __fmt, args_copy); in rm_vasprintf()
55 static int rm_asprintf(char **__ptr, const char *__restrict __fmt, ...) { in rm_asprintf() argument
57 va_start(ap, __fmt); in rm_asprintf()
59 int res = rm_vasprintf(__ptr, __fmt, ap); in rm_asprintf()
/dports/textproc/redisearch20/RediSearch-2.0.15/src/
H A Drmalloc.h41 static int rm_vasprintf(char **__restrict __ptr, const char *__restrict __fmt, va_list __arg) { in rm_vasprintf() argument
45 size_t needed = vsnprintf(NULL, 0, __fmt, __arg) + 1; in rm_vasprintf()
48 int res = vsprintf(*__ptr, __fmt, args_copy); in rm_vasprintf()
55 static int rm_asprintf(char **__ptr, const char *__restrict __fmt, ...) { in rm_asprintf() argument
57 va_start(ap, __fmt); in rm_asprintf()
59 int res = rm_vasprintf(__ptr, __fmt, ap); in rm_asprintf()
/dports/textproc/redisearch16/RediSearch-1.6.16/src/
H A Drmalloc.h41 static int rm_vasprintf(char **__restrict __ptr, const char *__restrict __fmt, va_list __arg) { in rm_vasprintf() argument
45 size_t needed = vsnprintf(NULL, 0, __fmt, __arg) + 1; in rm_vasprintf()
48 int res = vsprintf(*__ptr, __fmt, args_copy); in rm_vasprintf()
55 static int rm_asprintf(char **__ptr, const char *__restrict __fmt, ...) { in rm_asprintf() argument
57 va_start(ap, __fmt); in rm_asprintf()
59 int res = rm_vasprintf(__ptr, __fmt, ap); in rm_asprintf()
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/src/c++11/
H A Dfunctexcept.cc40 int __snprintf_lite(char *__buf, size_t __bufsize, const char *__fmt,
89 __throw_out_of_range_fmt(const char* __fmt, ...) in __throw_out_of_range_fmt() argument
92 const size_t __len = __builtin_strlen(__fmt); in __throw_out_of_range_fmt()
99 va_start(__ap, __fmt); in __throw_out_of_range_fmt()
100 __gnu_cxx::__snprintf_lite(__s, __alloca_size, _(__fmt), __ap); in __throw_out_of_range_fmt()
104 __throw_out_of_range(__fmt); in __throw_out_of_range_fmt()
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/common/
H A Dxstring.h48 #define xstrftimecat(__p, __fmt) _xstrftimecat(&(__p), __fmt) argument
51 #define xstrfmtcat(__p, __fmt, args...) _xstrfmtcat(&(__p), __fmt, ## args) argument
52 #define xstrfmtcatat(__p, __q, __fmt, args...) \ argument
53 _xstrfmtcatat(&(__p), __q, __fmt, ## args)
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/devel/avr-gcc/gcc-10.2.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/lang/gnat_util/gcc-6-20180516/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/lang/gcc9-devel/gcc-9-20211007/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/lang/gcc9-aux/bootstrap/include/c++/9.1.0/x86_64-aux-dragonfly5.5/bits/
H A Dc++locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.h60 const char* __fmt, ...) in _GLIBCXX_VISIBILITY()
65 __builtin_va_start(__args, __fmt); in _GLIBCXX_VISIBILITY()
68 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); in _GLIBCXX_VISIBILITY()
70 const int __ret = __builtin_vsprintf(__out, __fmt, __args); in _GLIBCXX_VISIBILITY()

12345678910>>...36