Home
last modified time | relevance | path

Searched refs:format (Results 1 – 25 of 2768) sorted by relevance

12345678910>>...111

/openbsd-src/gnu/lib/libiberty/src/testsuite/
H A Ddemangle-expected9 --format=gnu
13 --format=gnu
17 --format=gnu
21 --format=gnu
25 --format=gnu
29 --format=gnu
33 --format=gnu
37 --format=gnu
41 --format=gnu
45 --format=gnu
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dva-arg-2.c21 f0 (char* format, ...) in f0() argument
25 va_start (ap, format); in f0()
26 if (strlen (format) != 16 - 0) in f0()
28 while (*format) in f0()
29 if (*format++ != to_hex (va_arg (ap, int))) in f0()
35 f1 (int a1, char* format, ...) in f1() argument
39 va_start(ap, format); in f1()
40 if (strlen (format) != 16 - 1) in f1()
42 while (*format) in f1()
43 if (*format++ != to_hex (va_arg (ap, int))) in f1()
[all …]
H A Dva-arg-9.c19 fap (int i, char* format, va_list ap) in fap() argument
21 if (strlen (format) != 16 - i) in fap()
23 while (*format) in fap()
24 if (*format++ != to_hex (va_arg (ap, int))) in fap()
29 f0 (char* format, ...) in f0() argument
33 va_start (ap, format); in f0()
34 fap(0, format, ap); in f0()
39 f1 (int a1, char* format, ...) in f1() argument
43 va_start(ap, format); in f1()
44 fap(1, format, ap); in f1()
[all …]
H A Dva-arg-10.c22 fap (int i, char* format, va_list ap) in fap() argument
28 formatc = format; in fap()
30 if (strlen (format) != 16 - i) in fap()
32 while (*format) in fap()
33 if (*format++ != to_hex (va_arg (ap, int))) in fap()
41 f0 (char* format, ...) in f0() argument
45 va_start (ap, format); in f0()
46 fap(0, format, ap); in f0()
51 f1 (int a1, char* format, ...) in f1() argument
55 va_start(ap, format); in f1()
[all …]
/openbsd-src/sys/dev/pci/drm/
H A Ddrm_fourcc.c147 const struct drm_format_info *__drm_format_info(u32 format) in __drm_format_info() argument
150 { .format = DRM_FORMAT_C1, .depth = 1, .num_planes = 1, in __drm_format_info()
152 { .format = DRM_FORMAT_C2, .depth = 2, .num_planes = 1, in __drm_format_info()
154 { .format = DRM_FORMAT_C4, .depth = 4, .num_planes = 1, in __drm_format_info()
156 …{ .format = DRM_FORMAT_C8, .depth = 8, .num_planes = 1, .cpp = { 1, 0, 0 }, .hsub = 1, .vsub = 1… in __drm_format_info()
157 { .format = DRM_FORMAT_D1, .depth = 1, .num_planes = 1, in __drm_format_info()
159 { .format = DRM_FORMAT_D2, .depth = 2, .num_planes = 1, in __drm_format_info()
161 { .format = DRM_FORMAT_D4, .depth = 4, .num_planes = 1, in __drm_format_info()
163 …{ .format = DRM_FORMAT_D8, .depth = 8, .num_planes = 1, .cpp = { 1, 0, 0 }, .hsub = 1, .vsub = 1… in __drm_format_info()
164 { .format = DRM_FORMAT_R1, .depth = 1, .num_planes = 1, in __drm_format_info()
[all …]
/openbsd-src/gnu/usr.bin/texinfo/intl/
H A Dprintf.c80 libintl_vfprintf (FILE *stream, const char *format, va_list args) in libintl_vfprintf() argument
82 if (strchr (format, '$') == NULL) in libintl_vfprintf()
83 return vfprintf (stream, format, args); in libintl_vfprintf()
87 char *result = libintl_vasnprintf (NULL, &length, format, args); in libintl_vfprintf()
101 libintl_fprintf (FILE *stream, const char *format, ...) in libintl_fprintf() argument
106 va_start (args, format); in libintl_fprintf()
107 retval = libintl_vfprintf (stream, format, args); in libintl_fprintf()
114 libintl_vprintf (const char *format, va_list args) in libintl_vprintf() argument
116 return libintl_vfprintf (stdout, format, args); in libintl_vprintf()
121 libintl_printf (const char *format, ...) in libintl_printf() argument
[all …]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dfork_testbase.py19 "{}-events+".format(variant)])
21 self.assertIn("{}-events+".format(variant), ret["qSupported_response"])
32 "regex": self.fork_regex_nonstop.format(variant),
40 {"direction": "send", "regex": self.fork_regex.format(variant),
55 "read packet: $D;{}#00".format(child_pid),
59 "send packet: $QCp{}.{}#00".format(parent_pid, parent_tid),
61 "read packet: $Hgp{}.{}#00".format(child_pid, child_tid),
63 "read packet: $Hgp{}.{}#00".format(parent_pid, parent_tid),
76 "read packet: $Hgp{}.{}#00".format(child_pid, child_tid),
78 "read packet: $Hcp{}.{}#00".format(child_pid, child_tid),
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/format/
H A Dattr-3.c9 extern void fa0 (const char *, ...) __attribute__((format(printf, 1, 2)));
10 extern void fa1 (char *, ...) __attribute__((format(printf, 1, 2)));
15 extern void fb0 (const char *, ...) __attribute__((format)); /* { dg-error "wrong number of argumen…
16 extern void fb1 (const char *, ...) __attribute__((format())); /* { dg-error "wrong number of argum…
17 extern void fb2 (const char *, ...) __attribute__((format(printf))); /* { dg-error "wrong number of…
18 extern void fb3 (const char *, ...) __attribute__((format(printf, 1))); /* { dg-error "wrong number…
19 extern void fb4 (const char *, ...) __attribute__((format(printf, 1, 2, 3))); /* { dg-error "wrong …
28 struct s0 { int i; } __attribute__((format(printf, 1, 2))); /* { dg-error "does not apply|only appl…
29 union u0 { int i; } __attribute__((format(printf, 1, 2))); /* { dg-error "does not apply|only appli…
30 enum e0 { E0V0 } __attribute__((format(printf, 1, 2))); /* { dg-error "does not apply|only applies"…
[all …]
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dm68hc11-dis.c230 long format, pos, i; in print_insn() local
242 format = 0; in print_insn()
250 format = M6811_OP_PAGE2; in print_insn()
255 format = M6811_OP_PAGE3; in print_insn()
260 format = M6811_OP_PAGE4; in print_insn()
278 if ((arch & cpu6812) && format == 0) in print_insn()
321 if ((opcode->format & OP_PAGE_MASK) != format) in print_insn()
324 if (opcode->format & M6812_OP_REG) in print_insn()
329 if (opcode->format & M6811_OP_JUMP_REL) in print_insn()
347 if (!(opcode[j].format & M6811_OP_JUMP_REL)) in print_insn()
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dm68hc11-dis.c230 long format, pos, i; in print_insn() local
242 format = 0; in print_insn()
250 format = M6811_OP_PAGE2; in print_insn()
255 format = M6811_OP_PAGE3; in print_insn()
260 format = M6811_OP_PAGE4; in print_insn()
278 if ((arch & cpu6812) && format == 0) in print_insn()
321 if ((opcode->format & OP_PAGE_MASK) != format) in print_insn()
324 if (opcode->format & M6812_OP_REG) in print_insn()
329 if (opcode->format & M6811_OP_JUMP_REL) in print_insn()
347 if (!(opcode[j].format & M6811_OP_JUMP_REL)) in print_insn()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dbad.def38 /* xgettext:no-c-format */
41 /* xgettext:no-c-format */
44 /* xgettext:no-c-format */
47 /* xgettext:no-c-format */
50 /* xgettext:no-c-format */
53 /* xgettext:no-c-format */
56 /* xgettext:no-c-format */
59 /* xgettext:no-c-format */
61 /* xgettext:no-c-format */
64 /* xgettext:no-c-format */
[all …]
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DDNBLog.cpp65 static inline void _DNBLogVAPrintf(uint32_t flags, const char *format, in _DNBLogVAPrintf() argument
71 g_log_callback(g_log_baton, flags, format, args); in _DNBLogVAPrintf()
74 void _DNBLog(uint32_t flags, const char *format, ...) { in _DNBLog() argument
76 va_start(args, format); in _DNBLog()
77 _DNBLogVAPrintf(flags, format, args); in _DNBLog()
83 void _DNBLogDebug(const char *format, ...) { in _DNBLogDebug() argument
86 va_start(args, format); in _DNBLogDebug()
87 _DNBLogVAPrintf(DNBLOG_FLAG_DEBUG, format, args); in _DNBLogDebug()
94 void _DNBLogDebugVerbose(const char *format, ...) { in _DNBLogDebugVerbose() argument
97 va_start(args, format); in _DNBLogDebugVerbose()
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/gprof/po/
H A Dgprof.pot24 #, c-format
29 #, c-format
34 #, c-format
39 #, c-format
44 #, c-format
50 #, c-format
59 #, c-format
70 #, c-format
78 #, c-format
83 #, c-format
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/po/
H A Dbinutils.pot20 #, c-format
25 #, c-format
30 #, c-format
37 #, c-format
41 " -b --target=<bfdname> Set the binary file format\n"
55 #, c-format
60 #, c-format
65 #, c-format
70 #, c-format
75 #, c-format
[all …]
H A Dzh_TW.po20 #, c-format
25 #, c-format
30 #, c-format
35 #, c-format
38 " -b --target=<bfdname> Set the binary file format\n"
60 #, c-format
65 #, c-format
70 #, c-format
75 #, c-format
80 #, c-format
[all …]
H A Dru.po21 #, c-format
26 #, c-format
31 #, c-format
36 #, c-format
40 " -b --target=<bfdname> Set the binary file format\n"
64 #, c-format
69 #, c-format
74 #, c-format
79 #, c-format
84 #, c-format
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/rdi-share/
H A Dlogging.c79 static int va_warn0(char *format, va_list args) in va_warn0() argument
83 while ((format != NULL) && (*format != '\0')) in va_warn0()
85 if (*format == '%') in va_warn0()
87 char fch = *(++format); /* get format character (skipping '%') */ in va_warn0()
106 fch = *(++format); in va_warn0()
112 fch = *(++format); in va_warn0()
118 fch = *(++format); in va_warn0()
244 format--; in va_warn0()
250 CHAROUT(*format); in va_warn0()
256 format++; /* step over format character */ in va_warn0()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/
H A Dmessages.c172 as_tsktsk (const char *format, ...) in as_tsktsk() argument
177 va_start (args, format); in as_tsktsk()
178 vfprintf (stderr, format, args); in as_tsktsk()
184 as_tsktsk (format, va_alist) in as_tsktsk() argument
185 const char *format; in as_tsktsk()
192 vfprintf (stderr, format, args);
227 as_warn (const char *format, ...) in as_warn() argument
234 va_start (args, format); in as_warn()
235 vsprintf (buffer, format, args); in as_warn()
242 as_warn (format, va_alist) in as_warn() argument
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Time-Piece/
H A DPiece.pm483 my ( $format ) = @_;
485 $format =~ s/%c/%a %d %b %Y %I:%M:%S %p/;
488 $format =~ s/%c/%a %d %b %Y %H:%M:%S/;
490 return $format;
493 my ( $format ) = @_;
495 $format =~ s/%r/%I:%M:%S %p/;
498 $format =~ s/%r/%H:%M:%S/;
500 return $format;
503 my ( $format ) = @_;
505 $format =~ s/%X/%I:%M:%S %p/;
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Dformat.c91 bfd_check_format (bfd *abfd, bfd_format format) in bfd_check_format() argument
93 return bfd_check_format_matches (abfd, format, NULL); in bfd_check_format()
117 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) in bfd_check_format_matches() argument
127 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end) in bfd_check_format_matches()
133 if (abfd->format != bfd_unknown) in bfd_check_format_matches()
134 return abfd->format == format; in bfd_check_format_matches()
157 abfd->format = format; in bfd_check_format_matches()
201 if (format == bfd_archive && save_targ == &binary_vec) in bfd_check_format_matches()
204 abfd->format = bfd_unknown; in bfd_check_format_matches()
276 abfd->format = bfd_unknown; in bfd_check_format_matches()
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Dformat.c89 bfd_check_format (bfd *abfd, bfd_format format) in bfd_check_format() argument
91 return bfd_check_format_matches (abfd, format, NULL); in bfd_check_format()
115 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) in bfd_check_format_matches() argument
125 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end) in bfd_check_format_matches()
131 if (abfd->format != bfd_unknown) in bfd_check_format_matches()
132 return abfd->format == format; in bfd_check_format_matches()
155 abfd->format = format; in bfd_check_format_matches()
191 if (format == bfd_archive && save_targ == &binary_vec) in bfd_check_format_matches()
194 abfd->format = bfd_unknown; in bfd_check_format_matches()
274 abfd->format = bfd_unknown; in bfd_check_format_matches()
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/po/
H A Dbfd.pot18 #, c-format
23 #, c-format
28 #, c-format
33 #, c-format
38 #, c-format
39 msgid "%s: can not represent section `%s' in a.out object file format"
43 #, c-format
45 "%s: can not represent section for symbol `%s' in a.out object file format"
53 #, c-format
82 msgid "File in wrong format"
[all …]
/openbsd-src/gnu/usr.bin/binutils/gprof/po/
H A Dgprof.pot23 #, c-format
28 #, c-format
33 #, c-format
38 #, c-format
43 #, c-format
49 #, c-format
58 #, c-format
76 #, c-format
81 #, c-format
86 #, c-format
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/
H A Dmessages.c145 as_tsktsk (const char *format, ...) in as_tsktsk() argument
150 va_start (args, format); in as_tsktsk()
151 vfprintf (stderr, format, args); in as_tsktsk()
157 as_tsktsk (format, va_alist) in as_tsktsk() argument
158 const char *format; in as_tsktsk()
165 vfprintf (stderr, format, args);
200 as_warn (const char *format, ...) in as_warn() argument
207 va_start (args, format); in as_warn()
208 vsnprintf (buffer, sizeof (buffer), format, args); in as_warn()
215 as_warn (format, va_alist) in as_warn() argument
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Derrors.c40 warning VPARAMS ((const char *format, ...)) in warning() argument
42 VA_OPEN (ap, format); in warning()
43 VA_FIXEDARG (ap, const char *, format); in warning()
46 vfprintf (stderr, format, ap); in warning()
55 error VPARAMS ((const char *format, ...)) in error() argument
57 VA_OPEN (ap, format); in error()
58 VA_FIXEDARG (ap, const char *, format); in error()
61 vfprintf (stderr, format, ap); in error()
72 fatal VPARAMS ((const char *format, ...)) in fatal() argument
74 VA_OPEN (ap, format); in fatal()
[all …]

12345678910>>...111