Searched refs:format (Results 1 - 25 of 159) sorted by relevance

1234567

/barrelfish-2018-10-04/lib/tzcode/zic/
H A Dscheck.c22 scheck(string, format)
24 const char * const format;
34 if (string == NULL || format == NULL)
36 fbuf = imalloc((int) (2 * strlen(format) + 4));
39 fp = format;
65 result = (char *) format;
/barrelfish-2018-10-04/lib/cxx/cxxabi/
H A Dabort_message.h22 void abort_message(const char* format, ...)
23 __attribute__((format(printf, 1, 2)));
H A Dabort_message.cpp44 void abort_message(const char* format, ...) argument
58 va_start(list, format);
59 vfprintf(stderr, format, list);
67 va_start(list2, format);
68 vasprintf(&buffer, format, list2);
74 va_start(list2, format);
75 vasprintf(&buffer, format, list2);
/barrelfish-2018-10-04/usr/eclipseclp/Contrib/
H A Dxml_pp.pl23 format( ' ).~n', [] ).
27 format( ' ).~n', [] ).
30 format( '~s[]', [Indent] ).
33 format( '~s', [Indent] ),
36 format( '~scomment(', [Indent] ), pp_string(Text), put( 0') ). %'
38 format( '~snamespace( ~q, "~s",~n', [Indent,URI,Prefix] ),
40 format( '~n~s)', [[0' |Indent]] ).
42 format( '~selement( ~q,~n', [Indent,Tag] ),
46 format( '~sinstructions( ~q, ', [Indent,Target] ),
49 format( '~sdoctyp
[all...]
/barrelfish-2018-10-04/include/skb/
H A Dskb.h20 errval_t skb_add_fact(char *fmt, ...) __attribute__((format(printf, 1, 2)));
39 errval_t skb_execute_query(char *fmt, ...) __attribute__((format(printf, 1, 2)));
40 errval_t skb_read_output_at(char *output, char *fmt, ...) __attribute__((format(scanf, 2, 3)));
42 errval_t skb_read_output(char *fmt, ...) __attribute__((format(scanf, 1, 2)));
47 __attribute__((format(scanf, 2, 3)));
/barrelfish-2018-10-04/lib/acpica/source/include/platform/
H A Daccygwin.h172 vsnprintf (char *s, size_t n, const char *format, va_list ap);
175 snprintf (char *s, size_t n, const char *format, ...);
/barrelfish-2018-10-04/lib/debug_log/
H A Ddebug_log.c38 void debug_print_to_log(const char *format, ...) argument
52 va_start(argptr, format);
53 len += vsnprintf(str + len, sizeof(log[0]) - len, format, argptr);
66 va_start(argptr, format);
68 for (i = 0; format[i]; i++) {
69 if (format[i] != '%') {
70 str[j++] = format[i];
71 } else if (format[i + 1] == 'x') {
82 } else if (format[i + 1] == 'd') {
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bio/
H A Db_print.c137 const char *format, va_list args);
139 /* format read states */
149 /* format flags - Bits */
175 const char *format,
192 ch = *format++;
204 ch = *format++;
210 ch = *format++;
214 ch = *format++;
218 ch = *format++;
222 ch = *format
169 _dopr( char **sbuffer, char **buffer, size_t *maxlen, size_t *retlen, int *truncated, const char *format, va_list args) argument
768 BIO_printf(BIO *bio, const char *format, ...) argument
781 BIO_vprintf(BIO *bio, const char *format, va_list args) argument
814 BIO_snprintf(char *buf, size_t n, const char *format, ...) argument
827 BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) argument
[all...]
/barrelfish-2018-10-04/kernel/arch/armv7/
H A Da9_scu.c30 #define MSG(format, ...) printk( LOG_NOTE, "CortexA9 SCU: "format, ## __VA_ARGS__ )
H A Domap44xx_spinlock.c23 #define MSG(format, ...) printk( LOG_NOTE, "OMAP44xx spinlock: "format, ## __VA_ARGS__ )
H A Da9_gt.c24 #define MSG(format, ...) \
25 printk( LOG_NOTE, "CortexA9 GT: "format, ## __VA_ARGS__ )
H A Dplat_a15mpcore.c26 #define MSG(format, ...) \
27 printk( LOG_NOTE, "CortexA15 platform: "format, ## __VA_ARGS__ )
H A Dplat_a9mpcore.c28 #define MSG(format, ...) \
29 printk( LOG_NOTE, "CortexA9 platform: "format, ## __VA_ARGS__ )
/barrelfish-2018-10-04/lib/libc/locale/
H A Dwcsftime.c46 * have to duplicate the code of strftime(), we convert the format string to
51 * of the conversions in the format string change conversion state. When
53 * format specifications in the format string.
57 const wchar_t * __restrict format, const struct tm * __restrict timeptr,
72 * Convert the supplied format string to a multibyte representation
76 formatp = format;
119 const wchar_t * __restrict format, const struct tm * __restrict timeptr)
121 return wcsftime_l(wcs, maxsize, format, timeptr, __get_locale());
56 wcsftime_l(wchar_t * __restrict wcs, size_t maxsize, const wchar_t * __restrict format, const struct tm * __restrict timeptr, locale_t locale) argument
118 wcsftime(wchar_t * __restrict wcs, size_t maxsize, const wchar_t * __restrict format, const struct tm * __restrict timeptr) argument
/barrelfish-2018-10-04/lib/skb/
H A Dskb_internal.h18 int skb_vsscanf(const char *str, const char *format, va_list args);
H A Dskb_snprintf.c25 * from the normal C string format, at least as far as I can tell from
134 /* format read states */
144 /* format flags - Bits */
178 static int dopr(char *buffer, size_t maxlen, const char *format,
189 dopr(char *buffer, size_t maxlen, const char *format, va_list args_in) argument
208 ch = *format++;
220 ch = *format++;
226 ch = *format++;
230 ch = *format++;
234 ch = *format
[all...]
/barrelfish-2018-10-04/kernel/include/
H A Dlogging.h68 __attribute__((noreturn, format(printf, 1, 2)));
70 __attribute__ ((format(printf, 2, 3)));
72 __attribute__ ((format(printf, 1, 2)));
96 * \param _fmt The message (printf() format string)
/barrelfish-2018-10-04/lib/libc/stdtime/
H A Dstrftime.c90 strftime_l(char * __restrict s, size_t maxsize, const char * __restrict format, argument
99 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn, loc);
103 if (format == NULL)
104 (void) fputs("NULL strftime format ", stderr);
105 else (void) fprintf_l(stderr, loc, "strftime format \"%s\" ",
106 format);
123 strftime(char * __restrict s, size_t maxsize, const char * __restrict format, argument
126 return strftime_l(s, maxsize, format, t, __get_locale());
130 _fmt(const char *format, cons argument
590 _conv(const int n, const char * const format, char * const pt, const char * const ptlim, locale_t loc) argument
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dasn1_gen.c110 int format; member in struct:__anon1118
121 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype);
154 asn1_tags.format = ASN1_GEN_FORMAT_ASCII;
169 ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype);
366 arg->format = ASN1_GEN_FORMAT_ASCII;
368 arg->format = ASN1_GEN_FORMAT_UTF8;
370 arg->format = ASN1_GEN_FORMAT_HEX;
372 arg->format = ASN1_GEN_FORMAT_BITLIST;
629 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype) argument
661 if (format !
[all...]
/barrelfish-2018-10-04/kernel/arch/arm/
H A Dzynq_uart.c30 #define MSG(port, format, ...) \
31 printk( LOG_NOTE, "ZYNQ serial[%d]: "format, port, ## __VA_ARGS__ )
/barrelfish-2018-10-04/lib/acpica/generate/linux/
H A Dgen-patch.sh56 after=`git log -1 -c ${COMMIT} --format=%H | cut -c1-8`
57 before=`git log -1 -c ${COMMIT}^1 --format=%H | cut -c1-8`
100 AUTHOR_NAME=`git log -c $1 -1 --format="%aN"`
101 AUTHOR_EMAIL=`git log -c $1 -1 --format="%aE"`
114 eval "git log -c $1 -1 --format=\"$GIT_LOG_FORMAT\""
196 git format-patch -1 --stdout >> $GP_acpica_patch
H A Dgen-repo.sh37 version=`git log -1 -c $1 --format=%H | cut -c1-8`
59 echo "[gen-repo.sh] Converting format..."
/barrelfish-2018-10-04/lib/octopus/parser/
H A Dtest_parser.c64 void emit(struct writer* w, const char* format, ...) argument
67 assert(format != NULL);
77 va_start(args, format);
78 int append_len = vsnprintf(NULL, 0, format, args);
87 va_start(args, format);
88 int bytes_written = vsnprintf(w->output+w->pos, append_len+1, format, args);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dapps.h246 X509 *load_cert(BIO *err, const char *file, int format,
248 EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin,
250 EVP_PKEY *load_pubkey(BIO *err, const char *file, int format, int maybe_stdin,
252 STACK_OF(X509) *load_certs(BIO *err, const char *file, int format,
254 STACK_OF(X509_CRL) *load_crls(BIO *err, const char *file, int format,
338 #define FORMAT_PEMRSA 9 /* PEM RSAPubicKey format */
339 #define FORMAT_ASN1RSA 10 /* DER RSAPubicKey format */
340 #define FORMAT_MSBLOB 11 /* MS Key blob format */
341 #define FORMAT_PVK 12 /* MS PVK file format */
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dapps.h246 X509 *load_cert(BIO *err, const char *file, int format,
248 EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin,
250 EVP_PKEY *load_pubkey(BIO *err, const char *file, int format, int maybe_stdin,
252 STACK_OF(X509) *load_certs(BIO *err, const char *file, int format,
254 STACK_OF(X509_CRL) *load_crls(BIO *err, const char *file, int format,
338 #define FORMAT_PEMRSA 9 /* PEM RSAPubicKey format */
339 #define FORMAT_ASN1RSA 10 /* DER RSAPubicKey format */
340 #define FORMAT_MSBLOB 11 /* MS Key blob format */
341 #define FORMAT_PVK 12 /* MS PVK file format */

Completed in 263 milliseconds

1234567