Lines Matching defs:nval
80 short nval = val / 10;
81 if (nval)
82 put_int(action, nval, width - 1, neg);
89 send(action, val - (nval * 10) + '0');
94 unsigned short nval = val / 10;
95 if (nval)
96 put_uint(action, nval, width - 1, neg);
103 send(action, val - (nval * 10) + '0');
108 unsigned long nval = val / 10;
109 if (nval)
110 put_luint(action, nval, width - 1, neg);
117 send(action, val - (nval * 10) + '0');