Searched refs:ZEROPAD (Results 1 - 6 of 6) sorted by relevance

/linux-master/arch/powerpc/boot/
H A Dstdio.c71 #define ZEROPAD 1 /* pad with zero */ macro
88 type &= ~ZEROPAD;
91 c = (type & ZEROPAD) ? '0' : ' ';
121 if (!(type&(ZEROPAD+LEFT)))
179 case '0': flags |= ZEROPAD; goto repeat;
254 flags |= ZEROPAD;
/linux-master/arch/x86/boot/
H A Dprintf.c27 #define ZEROPAD 1 /* pad with zero */ macro
55 type &= ~ZEROPAD;
58 c = (type & ZEROPAD) ? '0' : ' ';
88 if (!(type & (ZEROPAD + LEFT)))
152 flags |= ZEROPAD;
221 flags |= ZEROPAD;
/linux-master/arch/alpha/boot/
H A Dstdio.c35 #define ZEROPAD 1 /* pad with zero */ macro
52 type &= ~ZEROPAD;
55 c = (type & ZEROPAD) ? '0' : ' ';
85 if (!(type&(ZEROPAD+LEFT)))
143 case '0': flags |= ZEROPAD; goto repeat;
218 flags |= ZEROPAD;
/linux-master/tools/testing/selftests/kvm/lib/
H A Dguest_sprintf.c26 #define ZEROPAD 1 /* pad with zero */ macro
59 type &= ~ZEROPAD;
62 c = (type & ZEROPAD) ? '0' : ' ';
92 if (!(type & (ZEROPAD + LEFT)))
163 flags |= ZEROPAD;
240 flags |= SPECIAL | SMALL | ZEROPAD;
/linux-master/drivers/firmware/efi/libstub/
H A Dvsprintf.c143 #define ZEROPAD 1 /* pad with zero */ macro
172 flags |= ZEROPAD;
354 flags &= ~ZEROPAD;
362 flags &= ~ZEROPAD;
483 if ((flags & ZEROPAD) && field_width > precision)
/linux-master/lib/
H A Dvsprintf.c414 #define ZEROPAD 16 /* pad with zero, must be 16 == '0' - ' ' */ macro
419 static_assert(ZEROPAD == ('0' - ' '));
474 spec.flags &= ~ZEROPAD;
519 if (!(spec.flags & (ZEROPAD | LEFT))) {
547 char c = ' ' + (spec.flags & ZEROPAD);
584 spec.flags = SPECIAL | SMALL | ZEROPAD;
739 spec.flags |= ZEROPAD;
1032 .flags = ZEROPAD,
1039 .flags = ZEROPAD,
1057 .flags = SPECIAL | SMALL | ZEROPAD,
[all...]

Completed in 475 milliseconds