Lines Matching defs:str_spec
1069 static const struct printf_spec str_spec = {
1093 p = string_nocheck(p, pend, "io ", str_spec);
1096 p = string_nocheck(p, pend, "mem ", str_spec);
1099 p = string_nocheck(p, pend, "irq ", str_spec);
1102 p = string_nocheck(p, pend, "dma ", str_spec);
1105 p = string_nocheck(p, pend, "bus ", str_spec);
1108 p = string_nocheck(p, pend, "??? ", str_spec);
1113 p = string_nocheck(p, pend, "size ", str_spec);
1124 p = string_nocheck(p, pend, " 64bit", str_spec);
1126 p = string_nocheck(p, pend, " pref", str_spec);
1128 p = string_nocheck(p, pend, " window", str_spec);
1130 p = string_nocheck(p, pend, " disabled", str_spec);
1132 p = string_nocheck(p, pend, " flags ", str_spec);
2017 struct printf_spec str_spec = spec;
2018 str_spec.field_width = -1;
2049 precision = str_spec.precision;
2050 str_spec.precision = strchrnul(p, '@') - p;
2051 buf = string(buf, end, p, str_spec);
2052 str_spec.precision = precision;
2061 buf = string(buf, end, p, str_spec);
2069 buf = string_nocheck(buf, end, tbuf, str_spec);
2074 buf = string(buf, end, p, str_spec);
2080 buf = string_nocheck(buf, end, ",", str_spec);
2081 buf = string_nocheck(buf, end, "\"", str_spec);
2082 buf = string(buf, end, p, str_spec);
2083 buf = string_nocheck(buf, end, "\"", str_spec);
2100 struct printf_spec str_spec = spec;
2103 str_spec.field_width = -1;
2115 buf = string(buf, end, fwnode_get_name(fwnode), str_spec);