Home
last modified time | relevance | path

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

12345678910>>...48

/dflybsd-src/sys/dev/drm/
H A Ddrm_fourcc.c86 const char *drm_get_format_name(uint32_t format, struct drm_format_name_buf *buf) in drm_get_format_name() argument
90 printable_char(format & 0xff), in drm_get_format_name()
91 printable_char((format >> 8) & 0xff), in drm_get_format_name()
92 printable_char((format >> 16) & 0xff), in drm_get_format_name()
93 printable_char((format >> 24) & 0x7f), in drm_get_format_name()
94 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little", in drm_get_format_name()
95 format); in drm_get_format_name()
105 const struct drm_format_info *__drm_format_info(u32 format) in __drm_format_info() argument
108 …{ .format = DRM_FORMAT_C8, .depth = 8, .num_planes = 1, .cpp = { 1, 0, 0 }, .hsub = 1, .vsub = 1… in __drm_format_info()
109 …{ .format = DRM_FORMAT_RGB332, .depth = 8, .num_planes = 1, .cpp = { 1, 0, 0 }, .hsub = 1, .vsub… in __drm_format_info()
[all …]
/dflybsd-src/contrib/binutils-2.27/gold/
H A Derrors.cc79 Errors::fatal(const char* format, va_list args) in fatal() argument
82 vfprintf(stderr, format, args); in fatal()
90 Errors::fallback(const char* format, va_list args) in fallback() argument
93 vfprintf(stderr, format, args); in fallback()
101 Errors::error(const char* format, va_list args) in error() argument
104 vfprintf(stderr, format, args); in error()
113 Errors::warning(const char* format, va_list args) in warning() argument
116 vfprintf(stderr, format, args); in warning()
125 Errors::info(const char* format, va_list args) in info() argument
127 vfprintf(stderr, format, args); in info()
[all …]
/dflybsd-src/contrib/binutils-2.34/gold/
H A Derrors.cc79 Errors::fatal(const char* format, va_list args) in fatal() argument
82 vfprintf(stderr, format, args); in fatal()
90 Errors::fallback(const char* format, va_list args) in fallback() argument
93 vfprintf(stderr, format, args); in fallback()
101 Errors::error(const char* format, va_list args) in error() argument
104 vfprintf(stderr, format, args); in error()
113 Errors::warning(const char* format, va_list args) in warning() argument
116 vfprintf(stderr, format, args); in warning()
125 Errors::info(const char* format, va_list args) in info() argument
127 vfprintf(stderr, format, args); in info()
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dfold-const-call.c89 const real_format *format) in do_mpfr_ckconv() argument
101 real_from_mpfr (&tmp, m, format, GMP_RNDN); in do_mpfr_ckconv()
110 real_convert (result, format, &tmp); in do_mpfr_ckconv()
124 const real_value *arg, const real_format *format) in do_mpfr_arg1() argument
128 if (format->b != 2 || !real_isfinite (arg)) in do_mpfr_arg1()
131 int prec = format->p; in do_mpfr_arg1()
132 mp_rnd_t rnd = format->round_towards_zero ? GMP_RNDZ : GMP_RNDN; in do_mpfr_arg1()
139 bool ok = do_mpfr_ckconv (result, m, inexact, format); in do_mpfr_arg1()
154 const real_value *arg, const real_format *format) in do_mpfr_sincos() argument
158 if (format->b != 2 || !real_isfinite (arg)) in do_mpfr_sincos()
[all …]
H A Derrors.c44 warning (const char *format, ...) in warning() argument
48 va_start (ap, format); in warning()
50 vfprintf (stderr, format, ap); in warning()
59 error (const char *format, ...) in error() argument
63 va_start (ap, format); in error()
65 vfprintf (stderr, format, ap); in error()
76 fatal (const char *format, ...) in fatal() argument
80 va_start (ap, format); in fatal()
82 vfprintf (stderr, format, ap); in fatal()
91 internal_error (const char *format, ...) in internal_error() argument
[all …]
H A Dgengenrtl.c26 const char *const enumname, *const name, *const format; member
177 if (special_format (defs[i].format)) in find_formats()
181 if (! strcmp (*f, defs[i].format)) in find_formats()
185 *f = defs[i].format; in find_formats()
216 for (p = defs[idx].format, i = 0; *p != 0; p++) in genmacro()
224 defs[idx].format, defs[idx].enumname, in genmacro()
227 for (p = defs[idx].format, i = 0; *p != 0; p++) in genmacro()
238 gendef (const char *format) in gendef() argument
246 printf ("static inline rtx\ngen_rtx_fmt_%s_stat (RTX_CODE code, machine_mode mode", format); in gendef()
247 for (p = format, i = 0; *p != 0; p++) in gendef()
[all …]
/dflybsd-src/contrib/gdb-7/bfd/
H A Dformat.c93 bfd_check_format (bfd *abfd, bfd_format format) in bfd_check_format() argument
95 return bfd_check_format_matches (abfd, format, NULL); in bfd_check_format()
204 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) in bfd_check_format_matches() argument
218 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end) in bfd_check_format_matches()
224 if (abfd->format != bfd_unknown) in bfd_check_format_matches()
225 return abfd->format == format; in bfd_check_format_matches()
238 abfd->format = format; in bfd_check_format_matches()
265 if (format == bfd_archive && save_targ == &binary_vec) in bfd_check_format_matches()
313 if (abfd->format != bfd_archive in bfd_check_format_matches()
443 abfd->format = bfd_unknown; in bfd_check_format_matches()
[all …]
/dflybsd-src/contrib/binutils-2.27/bfd/
H A Dformat.c92 bfd_check_format (bfd *abfd, bfd_format format) in bfd_check_format() argument
94 return bfd_check_format_matches (abfd, format, NULL); in bfd_check_format()
203 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) in bfd_check_format_matches() argument
220 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end) in bfd_check_format_matches()
226 if (abfd->format != bfd_unknown) in bfd_check_format_matches()
227 return abfd->format == format; in bfd_check_format_matches()
240 abfd->format = format; in bfd_check_format_matches()
267 if (format == bfd_archive && save_targ == &binary_vec) in bfd_check_format_matches()
325 if (abfd->format != bfd_archive in bfd_check_format_matches()
475 abfd->format = bfd_unknown; in bfd_check_format_matches()
[all …]
/dflybsd-src/contrib/ncurses/ncurses/base/
H A Dvsscanf.c165 vsscanf(const char *str, const char *format, va_list ap) in vsscanf() argument
179 return (vfscanf(&strbuf, format, ap)); in vsscanf()
181 return (_doscan(&strbuf, format, ap)); in vsscanf()
191 _nc_visbuf2(2, format))); in vsscanf()
212 size_t len_fmt = strlen(format) + 32; in vsscanf()
230 while (*format != '\0') { in vsscanf()
236 for (n = 0; format[n] != 0 && state != sFinal; ++n) { in vsscanf()
237 my_fmt[n] = format[n]; in vsscanf()
240 if (format[n] == '%') in vsscanf()
244 if (format[n] == '%') { in vsscanf()
[all …]
H A Dsafe_sprintf.c58 char *format; in _nc_printf_length() local
66 if ((format = typeMalloc(char, fmt_len)) == 0) in _nc_printf_length()
69 free(format); in _nc_printf_length()
87 format[f++] = *fmt; in _nc_printf_length()
89 format[f++] = *fmt; in _nc_printf_length()
117 if ((format = _nc_doalloc(format, fmt_len)) == 0) { in _nc_printf_length()
122 _nc_STRCPY(&format[f], fmt_arg, fmt_len - f); in _nc_printf_length()
123 f = strlen(format); in _nc_printf_length()
166 free(format); in _nc_printf_length()
190 format[f] = '\0'; in _nc_printf_length()
[all …]
/dflybsd-src/sys/dev/drm/amd/display/dc/calcs/
H A Dcustom_float.c31 const struct custom_float_format *format, in build_custom_float() argument
36 uint32_t exp_offset = (1 << (format->exponenta_bits - 1)) - 1; in build_custom_float()
40 (1LL << (format->mantissa_bits + 1)) - 1, in build_custom_float()
41 1LL << format->mantissa_bits); in build_custom_float()
57 *negative = format->sign; in build_custom_float()
115 format->mantissa_bits); in build_custom_float()
123 const struct custom_float_format *format, in setup_custom_float() argument
139 (1 << (format->mantissa_bits + 1)) - 1; in setup_custom_float()
142 (1 << (format->exponenta_bits + 1)) - 1; in setup_custom_float()
156 while (i < format->mantissa_bits) { in setup_custom_float()
[all …]
/dflybsd-src/gnu/usr.bin/rcs/lib/
H A Drcslex.c1245 error(char const *format,...) in error() argument
1247 /*VARARGS1*/ void error(format, va_alist) char const *format; va_dcl in error()
1253 vararg_start(args, format);
1254 fvfprintf(stderr, format, args);
1262 rcserror(char const *format,...) in rcserror() argument
1264 /*VARARGS1*/ void rcserror(format, va_alist) char const *format; va_dcl in rcserror()
1270 vararg_start(args, format);
1271 fvfprintf(stderr, format, args);
1279 workerror(char const *format,...) in workerror() argument
1281 /*VARARGS1*/ void workerror(format, va_alist) char const *format; va_dcl in workerror()
[all …]
/dflybsd-src/contrib/binutils-2.34/bfd/
H A Dformat.c92 bfd_check_format (bfd *abfd, bfd_format format) in bfd_check_format() argument
94 return bfd_check_format_matches (abfd, format, NULL); in bfd_check_format()
210 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) in bfd_check_format_matches() argument
228 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end) in bfd_check_format_matches()
234 if (abfd->format != bfd_unknown) in bfd_check_format_matches()
235 return abfd->format == format; in bfd_check_format_matches()
248 abfd->format = format; in bfd_check_format_matches()
278 if (format == bfd_archive && save_targ == &binary_vec) in bfd_check_format_matches()
341 if (abfd->format != bfd_archive in bfd_check_format_matches()
503 abfd->format = bfd_unknown; in bfd_check_format_matches()
[all …]
/dflybsd-src/gnu/usr.bin/grep/libgreputils/
H A Dstdio.h648 _GL_FUNCDECL_RPL (dprintf, int, (int fd, const char *format, ...)
651 _GL_CXXALIAS_RPL (dprintf, int, (int fd, const char *format, ...));
654 _GL_FUNCDECL_SYS (dprintf, int, (int fd, const char *format, ...)
658 _GL_CXXALIAS_SYS (dprintf, int, (int fd, const char *format, ...));
799 _GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)
803 _GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)
807 _GL_CXXALIAS_RPL (fprintf, int, (FILE *fp, const char *format, ...));
809 _GL_CXXALIAS_SYS (fprintf, int, (FILE *fp, const char *format, ...));
935 _GL_FUNCDECL_RPL (fscanf, int, (FILE *stream, const char *format, ...)
938 _GL_CXXALIAS_RPL (fscanf, int, (FILE *stream, const char *format, ...));
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Derrors.c44 warning (const char *format, ...) in warning() argument
48 va_start (ap, format); in warning()
50 vfprintf (stderr, format, ap); in warning()
59 error (const char *format, ...) in error() argument
63 va_start (ap, format); in error()
65 vfprintf (stderr, format, ap); in error()
76 fatal (const char *format, ...) in fatal() argument
80 va_start (ap, format); in fatal()
82 vfprintf (stderr, format, ap); in fatal()
91 internal_error (const char *format, ...) in internal_error() argument
[all …]
H A Dgengenrtl.c27 const char *const enumname, *const name, *const format; member
160 if (special_format (defs[i].format)) in find_formats()
164 if (! strcmp (*f, defs[i].format)) in find_formats()
168 *f = defs[i].format; in find_formats()
192 for (p = defs[idx].format, i = 0; *p != 0; p++) in genmacro()
197 defs[idx].format, defs[idx].enumname); in genmacro()
199 for (p = defs[idx].format, i = 0; *p != 0; p++) in genmacro()
210 gendef (const char *format) in gendef() argument
218 printf ("static inline rtx\ngen_rtx_fmt_%s_stat (RTX_CODE code, enum machine_mode mode", format); in gendef()
219 for (p = format, i = 0; *p != 0; p++) in gendef()
[all …]
/dflybsd-src/contrib/gdb-7/gdb/
H A Dprintcmd.c62 char format; member
143 struct format_data format; member
199 val.format = '?'; in decode_format()
221 val.format = *p++; in decode_format()
231 if (val.format == '?') in decode_format()
236 val.format = oformat; in decode_format()
242 val.format = oformat == 'i' ? 'x' : oformat; in decode_format()
245 switch (val.format) in decode_format()
299 switch (options->format) in print_formatted()
323 if (options->format == 0 || options->format == 's' in print_formatted()
[all …]
/dflybsd-src/contrib/cryptsetup/tests/
H A Dalign-test40 format() # key_bits expected [forced] function
72 format 256 2112
73 format 128 1088
74 format 256 8192 8192
75 format 128 8192 8192
81 format 256 2119
82 format 128 1095
88 format 256 2560
89 format 128 1536
98 format 256 2112
[all …]
/dflybsd-src/crypto/libressl/crypto/bio/
H A Db_print.c8 BIO_printf(BIO *bio, const char *format, ...) in BIO_printf() argument
13 va_start(args, format); in BIO_printf()
14 ret = BIO_vprintf(bio, format, args); in BIO_printf()
27 BIO_vprintf(BIO *bio, const char *format, va_list args) in BIO_vprintf() argument
37 ret = vfprintf(fp, format, args); in BIO_vprintf()
46 BIO_vprintf(BIO *bio, const char *format, va_list args) in BIO_vprintf() argument
51 ret = vasprintf(&buf, format, args); in BIO_vprintf()
82 BIO_snprintf(char *buf, size_t n, const char *format, ...) in BIO_snprintf() argument
87 va_start(args, format); in BIO_snprintf()
88 ret = vsnprintf(buf, n, format, args); in BIO_snprintf()
[all …]
/dflybsd-src/sys/dev/drm/include/drm/
H A Ddrm_fourcc.h43 u32 format; member
59 const struct drm_format_info *__drm_format_info(u32 format);
60 const struct drm_format_info *drm_format_info(u32 format);
65 int drm_format_num_planes(uint32_t format);
66 int drm_format_plane_cpp(uint32_t format, int plane);
67 int drm_format_horz_chroma_subsampling(uint32_t format);
68 int drm_format_vert_chroma_subsampling(uint32_t format);
69 int drm_format_plane_width(int width, uint32_t format, int plane);
70 int drm_format_plane_height(int height, uint32_t format, int plane);
71 const char *drm_get_format_name(uint32_t format, struct drm_format_name_buf *buf);
/dflybsd-src/contrib/gdb-7/readline/
H A Dutil.c234 _rl_ttymsg (const char *format, ...) in _rl_ttymsg() argument
242 char *format; in _rl_ttymsg() local
246 va_start (args, format); in _rl_ttymsg()
249 format = va_arg (args, char *); in _rl_ttymsg()
253 vfprintf (stderr, format, args); in _rl_ttymsg()
264 _rl_errmsg (const char *format, ...) in _rl_errmsg() argument
272 char *format; in _rl_errmsg() local
276 va_start (args, format); in _rl_errmsg()
279 format = va_arg (args, char *); in _rl_errmsg()
283 vfprintf (stderr, format, args); in _rl_errmsg()
[all …]
/dflybsd-src/contrib/cvs-1.12/diff/
H A Difdef.c66 char *format; local
71 format = deletes ? group_format[CHANGED] : group_format[NEW];
73 format = group_format[OLD];
86 format_ifdef (format, first0, next_line, first1, last1 + 1);
94 format_ifdef (format, beg0, end0, beg1, end1) in format_ifdef() argument
95 char *format; in format_ifdef()
106 format_group (1, format, '\0', groups);
116 format_group (doit, format, endchar, groups) in format_group() argument
118 char *format;
123 register char *f = format;
[all …]
/dflybsd-src/contrib/cryptsetup/po/
H A Dcryptsetup.pot24 #, c-format
29 #, c-format
34 #, c-format
43 #, c-format
48 #, c-format
57 #, c-format
62 #, c-format
67 #, c-format
72 #, c-format
81 #, c-format
[all …]
/dflybsd-src/contrib/tcp_wrappers/
H A Ddiag.c31 tcpd_diag(int severity, const char *tag, const char *format, va_list ap) in tcpd_diag() argument
37 tag, tcpd_context.file, tcpd_context.line, format); in tcpd_diag()
39 sprintf(fmt, "%s: %s", tag, format); in tcpd_diag()
46 tcpd_warn(const char *format, ...) in tcpd_warn() argument
50 va_start(ap, format); in tcpd_warn()
51 tcpd_diag(LOG_ERR, "warning", format, ap); in tcpd_warn()
58 tcpd_jump(const char *format, ...) in tcpd_jump() argument
62 va_start(ap, format); in tcpd_jump()
63 tcpd_diag(LOG_ERR, "error", format, ap); in tcpd_jump()
/dflybsd-src/contrib/binutils-2.27/gas/
H A Dmessages.c129 as_tsktsk (const char *format, ...) in as_tsktsk() argument
134 va_start (args, format); in as_tsktsk()
135 vfprintf (stderr, format, args); in as_tsktsk()
172 as_warn (const char *format, ...) in as_warn() argument
179 va_start (args, format); in as_warn()
180 vsnprintf (buffer, sizeof (buffer), format, args); in as_warn()
191 as_warn_where (const char *file, unsigned int line, const char *format, ...) in as_warn_where() argument
198 va_start (args, format); in as_warn_where()
199 vsnprintf (buffer, sizeof (buffer), format, args); in as_warn_where()
237 as_bad (const char *format, ...) in as_bad() argument
[all …]

12345678910>>...48