Searched refs:tempBuf (Results 1 – 1 of 1) sorted by relevance
5528 bool parseFloatingPoint(const char16_t* inBuf, size_t inLen, char* tempBuf, in parseFloatingPoint() argument5544 tempBuf[i++] = *inBuf++; in parseFloatingPoint()5551 …if ((tempBuf[0] < '0' || tempBuf[0] > '9') && tempBuf[0] != '.' && tempBuf[0] != '-' && tempBuf[0]… in parseFloatingPoint()5555 tempBuf[i] = 0; in parseFloatingPoint()5557 out = strtof(tempBuf, (char**)outEnd); in parseFloatingPoint()5559 out = strtod(tempBuf, (char**)outEnd); in parseFloatingPoint()