Searched refs:lenmod (Results 1 – 1 of 1) sorted by relevance
216 #define va_arg_len_type(args, lenmod, typemod) \ argument217 ((lenmod == 'l') ? va_arg(args, typemod long) : \218 (lenmod == 'h') ? (typemod short)va_arg(args, typemod int) : \219 (lenmod == 'H') ? (typemod char)va_arg(args, typemod int) : \220 (lenmod == 'z') ? va_arg(args, typemod long) : \231 char lenmod; in boot_printk() local252 lenmod = (*fmt == 'h' || *fmt == 'l' || *fmt == 'z') ? *fmt++ : 0; in boot_printk()253 if (lenmod == 'h' && *fmt == 'h') { in boot_printk()254 lenmod = 'H'; in boot_printk()260 if (lenmod) in boot_printk()[all …]