tag | line | file | source code |
---|---|---|---|
ZEROPAD | 75 | kernel/vsprintf.c | if (type&LEFT) type &= ~ZEROPAD; |
ZEROPAD | 78 | kernel/vsprintf.c | c = (type & ZEROPAD) ? '0' : ' ' ; |
ZEROPAD | 95 | kernel/vsprintf.c | if (!(type&(ZEROPAD+LEFT))) |
ZEROPAD | 149 | kernel/vsprintf.c | case '0': flags |= ZEROPAD; goto repeat; |
ZEROPAD | 223 | kernel/vsprintf.c | flags |= ZEROPAD; |