ZEROPAD            52 arch/alpha/boot/stdio.c 		type &= ~ZEROPAD;
ZEROPAD            55 arch/alpha/boot/stdio.c 	c = (type & ZEROPAD) ? '0' : ' ';
ZEROPAD            85 arch/alpha/boot/stdio.c 	if (!(type&(ZEROPAD+LEFT)))
ZEROPAD           143 arch/alpha/boot/stdio.c 				case '0': flags |= ZEROPAD; goto repeat;
ZEROPAD           218 arch/alpha/boot/stdio.c 				flags |= ZEROPAD;
ZEROPAD            88 arch/powerpc/boot/stdio.c 		type &= ~ZEROPAD;
ZEROPAD            91 arch/powerpc/boot/stdio.c 	c = (type & ZEROPAD) ? '0' : ' ';
ZEROPAD           121 arch/powerpc/boot/stdio.c 	if (!(type&(ZEROPAD+LEFT)))
ZEROPAD           179 arch/powerpc/boot/stdio.c 				case '0': flags |= ZEROPAD; goto repeat;
ZEROPAD           254 arch/powerpc/boot/stdio.c 				flags |= ZEROPAD;
ZEROPAD            55 arch/x86/boot/printf.c 		type &= ~ZEROPAD;
ZEROPAD            58 arch/x86/boot/printf.c 	c = (type & ZEROPAD) ? '0' : ' ';
ZEROPAD            88 arch/x86/boot/printf.c 	if (!(type & (ZEROPAD + LEFT)))
ZEROPAD           152 arch/x86/boot/printf.c 			flags |= ZEROPAD;
ZEROPAD           221 arch/x86/boot/printf.c 				flags |= ZEROPAD;
ZEROPAD           433 lib/vsprintf.c 		spec.flags &= ~ZEROPAD;
ZEROPAD           478 lib/vsprintf.c 	if (!(spec.flags & (ZEROPAD | LEFT))) {
ZEROPAD           506 lib/vsprintf.c 		char c = ' ' + (spec.flags & ZEROPAD);
ZEROPAD           507 lib/vsprintf.c 		BUILD_BUG_ON(' ' + ZEROPAD != '0');
ZEROPAD           543 lib/vsprintf.c 	spec.flags = SPECIAL | SMALL | ZEROPAD;
ZEROPAD           679 lib/vsprintf.c 		spec.flags |= ZEROPAD;
ZEROPAD           959 lib/vsprintf.c 	.flags = ZEROPAD,
ZEROPAD           966 lib/vsprintf.c 	.flags = ZEROPAD,
ZEROPAD           984 lib/vsprintf.c 		.flags = SPECIAL | SMALL | ZEROPAD,
ZEROPAD           990 lib/vsprintf.c 		.flags = SPECIAL | SMALL | ZEROPAD,
ZEROPAD           996 lib/vsprintf.c 		.flags = SMALL | ZEROPAD,
ZEROPAD          1134 lib/vsprintf.c 	spec = (struct printf_spec){ .flags = SMALL | ZEROPAD, .base = 16 };
ZEROPAD          2274 lib/vsprintf.c 		case '0': spec->flags |= ZEROPAD; break;