Searched refs:cnv_end (Results 1 – 2 of 2) sorted by relevance
213 char* cnv_end = 0; in str_to_d() local214 ldbl_type result = strtold(str, &cnv_end); in str_to_d()215 bool good = result != -HUGE_VALL && result != HUGE_VALL && *cnv_end == 0; //C3 in str_to_d()
50 char* cnv_end = 0;51 long int result = ::strtol(str_in, &cnv_end, base_);53 if (INT_MIN <= result && result <= INT_MAX && cnv_end == str_end)