Lines Matching defs:format
175 fm_printf(int depth, int c, int cols, const char *format, ...)
181 va_start(ap, format);
182 width = vsnprintf(&c1, sizeof (c1), format, ap);
188 if (format[0] != ' ' && depth > 0) {
194 va_start(ap, format);
195 console_vprintf(format, ap);
204 * below. We generically format the entire nvpair using hexadecimal
373 fm_panic(const char *format, ...)
377 (void) atomic_cas_ptr((void *)&fm_panicstr, NULL, (void *)format);
381 va_start(ap, format);
382 vpanic(format, ap);
1151 fm_ena_generate_cpu(uint64_t timestamp, processorid_t cpuid, uchar_t format)
1155 switch (format) {
1158 ena = (uint64_t)((format & ENA_FORMAT_MASK) |
1164 ena = (uint64_t)((format & ENA_FORMAT_MASK) |
1172 ena = (uint64_t)((format & ENA_FORMAT_MASK) |
1183 fm_ena_generate(uint64_t timestamp, uchar_t format)
1185 return (fm_ena_generate_cpu(timestamp, CPU->cpu_id, format));