Searched refs:sciNotationArray (Results 1 – 2 of 2) sorted by relevance
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | helpers.cpp | 165 … char *significandArray, char *sciNotationArray, uint32_t size) in GetScientificNotationForDouble() argument 173 …if (snprintf_s(sciNotationArray, size, size - 1, "%.*e", significandBitCount - 1, number) == FAIL_… in GetScientificNotationForDouble() 182 int32_t exponent = atoi(sciNotationArray + significandBitCount + 1 + (significandBitCount > 1)); in GetScientificNotationForDouble() 188 significandArray[i] = sciNotationArray[i]; in GetScientificNotationForDouble() 201 char sciNotationArray[MAX_DOUBLE_DIGIT] = {0}; in GetIntegerSignificandBitCount() local 206 sciNotationArray, sizeof(sciNotationArray)); in GetIntegerSignificandBitCount() 209 if (std::strtod(sciNotationArray, nullptr) == number) { in GetIntegerSignificandBitCount() 222 sciNotationArray, sizeof(sciNotationArray)); in GetIntegerSignificandBitCount()
|
| D | helpers.h | 131 … char *significandArray, char *sciNotationArray, uint32_t size);
|