Lines Matching defs:num
679 * @num: the number
687 unsigned long long num, unsigned int width)
707 len = num_to_str(m->buf + m->count, m->size - m->count, num, width);
719 unsigned long long num)
721 return seq_put_decimal_ull_width(m, delimiter, num, 0);
771 void seq_put_decimal_ll(struct seq_file *m, const char *delimiter, long long num)
788 if (num < 0) {
790 num = -num;
793 if (num < 10) {
794 m->buf[m->count++] = num + '0';
798 len = num_to_str(m->buf + m->count, m->size - m->count, num, 0);