Lines Matching defs:str_spec
1070 static const struct printf_spec str_spec = {
1094 p = string_nocheck(p, pend, "io ", str_spec);
1097 p = string_nocheck(p, pend, "mem ", str_spec);
1100 p = string_nocheck(p, pend, "irq ", str_spec);
1103 p = string_nocheck(p, pend, "dma ", str_spec);
1106 p = string_nocheck(p, pend, "bus ", str_spec);
1109 p = string_nocheck(p, pend, "??? ", str_spec);
1114 p = string_nocheck(p, pend, "size ", str_spec);
1125 p = string_nocheck(p, pend, " 64bit", str_spec);
1127 p = string_nocheck(p, pend, " pref", str_spec);
1129 p = string_nocheck(p, pend, " window", str_spec);
1131 p = string_nocheck(p, pend, " disabled", str_spec);
1133 p = string_nocheck(p, pend, " flags ", str_spec);
2143 struct printf_spec str_spec = spec;
2144 str_spec.field_width = -1;
2175 precision = str_spec.precision;
2176 str_spec.precision = strchrnul(p, '@') - p;
2177 buf = string(buf, end, p, str_spec);
2178 str_spec.precision = precision;
2187 buf = string(buf, end, p, str_spec);
2195 buf = string_nocheck(buf, end, tbuf, str_spec);
2200 buf = string(buf, end, p, str_spec);
2206 buf = string_nocheck(buf, end, ",", str_spec);
2207 buf = string_nocheck(buf, end, "\"", str_spec);
2208 buf = string(buf, end, p, str_spec);
2209 buf = string_nocheck(buf, end, "\"", str_spec);
2226 struct printf_spec str_spec = spec;
2229 str_spec.field_width = -1;
2241 buf = string(buf, end, fwnode_get_name(fwnode), str_spec);