Searched refs:lenmod (Results 1 – 1 of 1) sorted by relevance
217 #define va_arg_len_type(args, lenmod, typemod) \ argument218 ((lenmod == 'l') ? va_arg(args, typemod long) : \219 (lenmod == 'h') ? (typemod short)va_arg(args, typemod int) : \220 (lenmod == 'H') ? (typemod char)va_arg(args, typemod int) : \221 (lenmod == 'z') ? va_arg(args, typemod long) : \232 char lenmod; in boot_printk() local253 lenmod = (*fmt == 'h' || *fmt == 'l' || *fmt == 'z') ? *fmt++ : 0; in boot_printk()254 if (lenmod == 'h' && *fmt == 'h') { in boot_printk()255 lenmod = 'H'; in boot_printk()261 if (lenmod) in boot_printk()[all …]
Completed in 3 milliseconds