Lines Matching refs:result
36 unsigned long result = 0; in simple_strtoul() local
43 result = result*base + value; in simple_strtoul()
50 return result; in simple_strtoul()
87 unsigned long result = simple_strtoul(cp, endp, base); in ustrtoul() local
90 result *= 1024; in ustrtoul()
93 result *= 1024; in ustrtoul()
97 result *= 1024; in ustrtoul()
105 return result; in ustrtoul()
110 unsigned long long result = simple_strtoull(cp, endp, base); in ustrtoull() local
113 result *= 1024; in ustrtoull()
116 result *= 1024; in ustrtoull()
120 result *= 1024; in ustrtoull()
128 return result; in ustrtoull()
134 unsigned long long result = 0, value; in simple_strtoull() local
140 result = result * base + value; in simple_strtoull()
147 return result; in simple_strtoull()