Symbol: ZEROPAD
arch/alpha/boot/stdio.c
143
case '0': flags |= ZEROPAD; goto repeat;
arch/alpha/boot/stdio.c
218
flags |= ZEROPAD;
arch/alpha/boot/stdio.c
52
type &= ~ZEROPAD;
arch/alpha/boot/stdio.c
55
c = (type & ZEROPAD) ? '0' : ' ';
arch/alpha/boot/stdio.c
85
if (!(type&(ZEROPAD+LEFT)))
arch/powerpc/boot/stdio.c
121
if (!(type&(ZEROPAD+LEFT)))
arch/powerpc/boot/stdio.c
179
case '0': flags |= ZEROPAD; goto repeat;
arch/powerpc/boot/stdio.c
254
flags |= ZEROPAD;
arch/powerpc/boot/stdio.c
88
type &= ~ZEROPAD;
arch/powerpc/boot/stdio.c
91
c = (type & ZEROPAD) ? '0' : ' ';
arch/x86/boot/printf.c
152
flags |= ZEROPAD;
arch/x86/boot/printf.c
221
flags |= ZEROPAD;
arch/x86/boot/printf.c
55
type &= ~ZEROPAD;
arch/x86/boot/printf.c
58
c = (type & ZEROPAD) ? '0' : ' ';
arch/x86/boot/printf.c
88
if (!(type & (ZEROPAD + LEFT)))
drivers/firmware/efi/libstub/vsprintf.c
172
flags |= ZEROPAD;
drivers/firmware/efi/libstub/vsprintf.c
354
flags &= ~ZEROPAD;
drivers/firmware/efi/libstub/vsprintf.c
362
flags &= ~ZEROPAD;
drivers/firmware/efi/libstub/vsprintf.c
483
if ((flags & ZEROPAD) && field_width > precision)
lib/vsprintf.c
1041
.flags = ZEROPAD,
lib/vsprintf.c
1048
.flags = ZEROPAD,
lib/vsprintf.c
1080
.flags = SPECIAL | SMALL | ZEROPAD,
lib/vsprintf.c
1086
.flags = SPECIAL | SMALL | ZEROPAD,
lib/vsprintf.c
1092
.flags = SMALL | ZEROPAD,
lib/vsprintf.c
1244
spec = (struct printf_spec){ .flags = SMALL | ZEROPAD, .base = 16 };
lib/vsprintf.c
1995
.flags = ZEROPAD,
lib/vsprintf.c
2637
SPEC_CHAR('0', ZEROPAD),
lib/vsprintf.c
439
static_assert(ZEROPAD == ('0' - ' '));
lib/vsprintf.c
483
spec.flags &= ~ZEROPAD;
lib/vsprintf.c
528
if (!(spec.flags & (ZEROPAD | LEFT))) {
lib/vsprintf.c
556
char c = ' ' + (spec.flags & ZEROPAD);
lib/vsprintf.c
589
.flags = SPECIAL | SMALL | ZEROPAD, \
lib/vsprintf.c
748
spec.flags |= ZEROPAD;
tools/testing/selftests/kvm/lib/guest_sprintf.c
163
flags |= ZEROPAD;
tools/testing/selftests/kvm/lib/guest_sprintf.c
240
flags |= SPECIAL | SMALL | ZEROPAD;
tools/testing/selftests/kvm/lib/guest_sprintf.c
59
type &= ~ZEROPAD;
tools/testing/selftests/kvm/lib/guest_sprintf.c
62
c = (type & ZEROPAD) ? '0' : ' ';
tools/testing/selftests/kvm/lib/guest_sprintf.c
92
if (!(type & (ZEROPAD + LEFT)))