Lines Matching defs:endptr
1145 char *endptr = NULL;
1146 long int ret = strtol(non_number_buf, &endptr, 10);
1148 assert(endptr == non_number_buf);
1154 ret = strtol(buf, &endptr, base);
1156 assert(endptr == buf + 10);
1162 ret = strtol(buf, &endptr, 10);
1164 assert(endptr == buf + 10);
1171 char *endptr = NULL;
1172 long long int ret = strtoll(non_number_buf, &endptr, 10);
1174 assert(endptr == non_number_buf);
1180 ret = strtoll(buf, &endptr, base);
1182 assert(endptr == buf + 10);
1188 ret = strtoll(buf, &endptr, 10);
1190 assert(endptr == buf + 10);
1197 char *endptr = NULL;
1198 long unsigned int ret = strtoul(non_number_buf, &endptr, 16);
1200 assert(endptr == non_number_buf);
1206 ret = strtoul(buf, &endptr, base);
1208 assert(endptr == buf + 14);
1214 ret = strtoul(buf, &endptr, 16);
1216 assert(endptr == buf + 14);
1223 char *endptr = NULL;
1224 long long unsigned int ret = strtoull(non_number_buf, &endptr, 16);
1226 assert(endptr == non_number_buf);
1232 ret = strtoull(buf, &endptr, base);
1234 assert(endptr == buf + 16);
1240 ret = strtoull(buf, &endptr, 16);
1242 assert(endptr == buf + 16);
1249 char *endptr = NULL;
1250 double ret = strtod(non_number_buf, &endptr);
1252 assert(endptr == non_number_buf);
1258 ret = strtod(buf, &endptr);
1260 assert(endptr == buf + 8);