Lines Matching refs:end
81 char *end; in strtooff() local
88 end = (char *)nptr; in strtooff()
89 while(ISBLANK(end[0])) { in strtooff()
90 end++; in strtooff()
94 if(end[0] == '-') { in strtooff()
96 end++; in strtooff()
98 else if(end[0] == '+') { in strtooff()
99 end++; in strtooff()
101 else if(end[0] == '\0') { in strtooff()
104 *endptr = end; in strtooff()
110 if(end[0] == '0' && end[1] == 'x') { in strtooff()
112 end += 2; in strtooff()
116 else if(end[0] == '0') { in strtooff()
118 end++; in strtooff()
131 for(i = get_char(end[0], base); in strtooff()
133 end++, i = get_char(end[0], base)) { in strtooff()
158 *endptr = end; in strtooff()
215 char *end = NULL; in curlx_strtoofft() local
228 number = strtooff(str, &end, base); in curlx_strtoofft()
230 *endp = end; in curlx_strtoofft()
234 else if(str == end) in curlx_strtoofft()