• Home
  • Raw
  • Download

Lines Matching refs:type

440 	unsigned int	type:8;		/* format_type enum */  member
577 spec.type = FORMAT_TYPE_PTR; in special_hex_number()
2403 if (spec->type == FORMAT_TYPE_WIDTH) { in format_decode()
2408 spec->type = FORMAT_TYPE_NONE; in format_decode()
2413 if (spec->type == FORMAT_TYPE_PRECISION) { in format_decode()
2417 spec->type = FORMAT_TYPE_NONE; in format_decode()
2422 spec->type = FORMAT_TYPE_NONE; in format_decode()
2461 spec->type = FORMAT_TYPE_WIDTH; in format_decode()
2476 spec->type = FORMAT_TYPE_PRECISION; in format_decode()
2502 spec->type = FORMAT_TYPE_CHAR; in format_decode()
2506 spec->type = FORMAT_TYPE_STR; in format_decode()
2510 spec->type = FORMAT_TYPE_PTR; in format_decode()
2514 spec->type = FORMAT_TYPE_PERCENT_CHAR; in format_decode()
2546 spec->type = FORMAT_TYPE_INVALID; in format_decode()
2551 spec->type = FORMAT_TYPE_LONG_LONG; in format_decode()
2554 spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN); in format_decode()
2556 spec->type = FORMAT_TYPE_SIZE_T; in format_decode()
2558 spec->type = FORMAT_TYPE_PTRDIFF; in format_decode()
2561 spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN); in format_decode()
2564 spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN); in format_decode()
2567 spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN); in format_decode()
2645 switch (spec.type) { in vsnprintf()
2717 switch (spec.type) { in vsnprintf()
2931 #define save_arg(type) \ in vbin_printf() argument
2934 if (sizeof(type) == 8) { \ in vbin_printf()
2938 if (str + sizeof(type) <= end) { \ in vbin_printf()
2945 str = PTR_ALIGN(str, sizeof(type)); \ in vbin_printf()
2947 if (str + sizeof(type) <= end) \ in vbin_printf()
2948 *(typeof(type) *)str = (type)(long)val4; \ in vbin_printf()
2951 str += sizeof(type); \ in vbin_printf()
2960 switch (spec.type) { in vbin_printf()
3024 switch (spec.type) { in vbin_printf()
3093 #define get_arg(type) \ in bstr_printf() argument
3095 typeof(type) value; \ in bstr_printf()
3096 if (sizeof(type) == 8) { \ in bstr_printf()
3101 args = PTR_ALIGN(args, sizeof(type)); \ in bstr_printf()
3102 value = *(typeof(type) *)args; \ in bstr_printf()
3104 args += sizeof(type); \ in bstr_printf()
3120 switch (spec.type) { in bstr_printf()
3216 switch (spec.type) { in bstr_printf()