Lines Matching defs:indent
165 nvme_print(int indent, char *name, int index, const char *fmt, ...)
167 int align = NVME_PRINT_ALIGN - (indent + strlen(name) + 1);
178 (void) printf("%*s%s", indent, "", name);
211 nvme_print_str(int indent, char *name, int index, const char *value, int len)
216 nvme_print(indent, name, index, "%.*s", nvme_strlen(value, len), value);
224 nvme_print_double(int indent, char *name, double value, int places, char *unit)
229 nvme_print(indent, name, -1, "%.*g%s", places, value, unit);
237 nvme_print_uint64(int indent, char *name, uint64_t value, const char *fmt,
251 nvme_print(indent, name, -1, tmp_fmt, value, unit);
261 nvme_print_uint128(int indent, char *name, nvme_uint128_t value, char *unit,
333 nvme_print(indent, name, -1, "%"PRId64"%s", rem, unit);
352 nvme_print(indent, name, -1, "%.*s%0.*"PRId64"%s",
362 nvme_print_bit(int indent, char *name, int value, char *s_true, char *s_false)
369 nvme_print(indent, name, -1, "%s", value ? s_true : s_false);