Lines Matching refs:end

76 	char *end;  in kstrtoul()  local
78 *res = strtoul(cp, &end, base); in kstrtoul()
81 if (*end == '\n') in kstrtoul()
82 end++; in kstrtoul()
83 if (*cp == 0 || *end != 0) in kstrtoul()
91 char *end; in kstrtol() local
93 *res = strtol(cp, &end, base); in kstrtol()
96 if (*end == '\n') in kstrtol()
97 end++; in kstrtol()
98 if (*cp == 0 || *end != 0) in kstrtol()
106 char *end; in kstrtoint() local
109 *res = temp = strtol(cp, &end, base); in kstrtoint()
112 if (*end == '\n') in kstrtoint()
113 end++; in kstrtoint()
114 if (*cp == 0 || *end != 0) in kstrtoint()
124 char *end; in kstrtouint() local
127 *res = temp = strtoul(cp, &end, base); in kstrtouint()
130 if (*end == '\n') in kstrtouint()
131 end++; in kstrtouint()
132 if (*cp == 0 || *end != 0) in kstrtouint()
142 char *end; in kstrtou8() local
145 *res = temp = strtoul(cp, &end, base); in kstrtou8()
148 if (*end == '\n') in kstrtou8()
149 end++; in kstrtou8()
150 if (*cp == 0 || *end != 0) in kstrtou8()
160 char *end; in kstrtou16() local
163 *res = temp = strtoul(cp, &end, base); in kstrtou16()
166 if (*end == '\n') in kstrtou16()
167 end++; in kstrtou16()
168 if (*cp == 0 || *end != 0) in kstrtou16()
192 char *end; in kstrtos64() local
194 *res = strtoq(cp, &end, base); in kstrtos64()
197 if (*end == '\n') in kstrtos64()
198 end++; in kstrtos64()
199 if (*cp == 0 || *end != 0) in kstrtos64()
213 char *end; in kstrtou64() local
215 *res = strtouq(cp, &end, base); in kstrtou64()
218 if (*end == '\n') in kstrtou64()
219 end++; in kstrtou64()
220 if (*cp == 0 || *end != 0) in kstrtou64()