Searched refs:sciNotationArray (Results 1 – 2 of 2) sorted by relevance
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | helpers.cpp | 162 … char *significandArray, char *sciNotationArray, uint32_t size) in GetScientificNotationForDouble() argument 168 …if (snprintf_s(sciNotationArray, size, size - 1, "%.*e", significandBitCount - 1, number) == FAIL_… in GetScientificNotationForDouble() 175 int32_t exponent = atoi(sciNotationArray + significandBitCount + 1 + (significandBitCount > 1)); in GetScientificNotationForDouble() 181 significandArray[i] = sciNotationArray[i]; in GetScientificNotationForDouble() 194 char sciNotationArray[MAX_DOUBLE_DIGIT] = {0}; in GetIntegerSignificandBitCount() local 199 sciNotationArray, sizeof(sciNotationArray)); in GetIntegerSignificandBitCount() 202 if (std::strtod(sciNotationArray, nullptr) == number) { in GetIntegerSignificandBitCount() 215 sciNotationArray, sizeof(sciNotationArray)); in GetIntegerSignificandBitCount()
|
| D | helpers.h | 78 … char *significandArray, char *sciNotationArray, uint32_t size);
|