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