• Home
  • Raw
  • Download

Lines Matching refs:type

445 	unsigned int	type:8;		/* format_type enum */  member
582 spec.type = FORMAT_TYPE_PTR; in special_hex_number()
2516 if (spec->type == FORMAT_TYPE_WIDTH) { in format_decode()
2521 spec->type = FORMAT_TYPE_NONE; in format_decode()
2526 if (spec->type == FORMAT_TYPE_PRECISION) { in format_decode()
2530 spec->type = FORMAT_TYPE_NONE; in format_decode()
2535 spec->type = FORMAT_TYPE_NONE; in format_decode()
2574 spec->type = FORMAT_TYPE_WIDTH; in format_decode()
2589 spec->type = FORMAT_TYPE_PRECISION; in format_decode()
2615 spec->type = FORMAT_TYPE_CHAR; in format_decode()
2619 spec->type = FORMAT_TYPE_STR; in format_decode()
2623 spec->type = FORMAT_TYPE_PTR; in format_decode()
2627 spec->type = FORMAT_TYPE_PERCENT_CHAR; in format_decode()
2660 spec->type = FORMAT_TYPE_INVALID; in format_decode()
2665 spec->type = FORMAT_TYPE_LONG_LONG; in format_decode()
2668 spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN); in format_decode()
2670 spec->type = FORMAT_TYPE_SIZE_T; in format_decode()
2672 spec->type = FORMAT_TYPE_PTRDIFF; in format_decode()
2675 spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN); in format_decode()
2678 spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN); in format_decode()
2681 spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN); in format_decode()
2759 switch (spec.type) { in vsnprintf()
2831 switch (spec.type) { in vsnprintf()
3047 #define save_arg(type) \ in vbin_printf() argument
3050 if (sizeof(type) == 8) { \ in vbin_printf()
3054 if (str + sizeof(type) <= end) { \ in vbin_printf()
3061 str = PTR_ALIGN(str, sizeof(type)); \ in vbin_printf()
3063 if (str + sizeof(type) <= end) \ in vbin_printf()
3064 *(typeof(type) *)str = (type)(long)val4; \ in vbin_printf()
3067 str += sizeof(type); \ in vbin_printf()
3076 switch (spec.type) { in vbin_printf()
3140 switch (spec.type) { in vbin_printf()
3209 #define get_arg(type) \ in bstr_printf() argument
3211 typeof(type) value; \ in bstr_printf()
3212 if (sizeof(type) == 8) { \ in bstr_printf()
3217 args = PTR_ALIGN(args, sizeof(type)); \ in bstr_printf()
3218 value = *(typeof(type) *)args; \ in bstr_printf()
3220 args += sizeof(type); \ in bstr_printf()
3236 switch (spec.type) { in bstr_printf()
3332 switch (spec.type) { in bstr_printf()