Lines Matching refs:type
404 unsigned int type:8; /* format_type enum */ member
541 spec.type = FORMAT_TYPE_PTR; in special_hex_number()
2242 if (spec->type == FORMAT_TYPE_WIDTH) { in format_decode()
2247 spec->type = FORMAT_TYPE_NONE; in format_decode()
2252 if (spec->type == FORMAT_TYPE_PRECISION) { in format_decode()
2256 spec->type = FORMAT_TYPE_NONE; in format_decode()
2261 spec->type = FORMAT_TYPE_NONE; in format_decode()
2300 spec->type = FORMAT_TYPE_WIDTH; in format_decode()
2315 spec->type = FORMAT_TYPE_PRECISION; in format_decode()
2341 spec->type = FORMAT_TYPE_CHAR; in format_decode()
2345 spec->type = FORMAT_TYPE_STR; in format_decode()
2349 spec->type = FORMAT_TYPE_PTR; in format_decode()
2353 spec->type = FORMAT_TYPE_PERCENT_CHAR; in format_decode()
2385 spec->type = FORMAT_TYPE_INVALID; in format_decode()
2390 spec->type = FORMAT_TYPE_LONG_LONG; in format_decode()
2393 spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN); in format_decode()
2395 spec->type = FORMAT_TYPE_SIZE_T; in format_decode()
2397 spec->type = FORMAT_TYPE_PTRDIFF; in format_decode()
2400 spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN); in format_decode()
2403 spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN); in format_decode()
2406 spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN); in format_decode()
2484 switch (spec.type) { in vsnprintf()
2556 switch (spec.type) { in vsnprintf()
2770 #define save_arg(type) \ in vbin_printf() argument
2773 if (sizeof(type) == 8) { \ in vbin_printf()
2777 if (str + sizeof(type) <= end) { \ in vbin_printf()
2784 str = PTR_ALIGN(str, sizeof(type)); \ in vbin_printf()
2786 if (str + sizeof(type) <= end) \ in vbin_printf()
2787 *(typeof(type) *)str = (type)(long)val4; \ in vbin_printf()
2790 str += sizeof(type); \ in vbin_printf()
2799 switch (spec.type) { in vbin_printf()
2864 switch (spec.type) { in vbin_printf()
2933 #define get_arg(type) \ in bstr_printf() argument
2935 typeof(type) value; \ in bstr_printf()
2936 if (sizeof(type) == 8) { \ in bstr_printf()
2941 args = PTR_ALIGN(args, sizeof(type)); \ in bstr_printf()
2942 value = *(typeof(type) *)args; \ in bstr_printf()
2944 args += sizeof(type); \ in bstr_printf()
2960 switch (spec.type) { in bstr_printf()
3057 switch (spec.type) { in bstr_printf()