Home | History | Annotate | Download | only in misc

Lines Matching refs:arg

63 static int int_log2(int arg)
67 arg >>= 1;
68 while (arg) {
70 arg >>= 1;
75 static int int_log10(unsigned long long arg)
79 arg = arg / 10;
80 while (arg) {
82 arg = arg / 10;