ZEROPAD 57 arch/x86/boot/printf.c type &= ~ZEROPAD;
ZEROPAD 60 arch/x86/boot/printf.c c = (type & ZEROPAD) ? '0' : ' ';
ZEROPAD 90 arch/x86/boot/printf.c if (!(type & (ZEROPAD + LEFT)))
ZEROPAD 154 arch/x86/boot/printf.c flags |= ZEROPAD;
ZEROPAD 223 arch/x86/boot/printf.c flags |= ZEROPAD;
ZEROPAD 387 lib/vsprintf.c type &= ~ZEROPAD;
ZEROPAD 434 lib/vsprintf.c if (!(type & (ZEROPAD+LEFT))) {
ZEROPAD 460 lib/vsprintf.c char c = (type & ZEROPAD) ? '0' : ' ';
ZEROPAD 526 lib/vsprintf.c flags |= SPECIAL | SMALL | ZEROPAD;
ZEROPAD 556 lib/vsprintf.c flags |= ZEROPAD;
ZEROPAD 631 lib/vsprintf.c case '0': flags |= ZEROPAD; goto repeat;