Lines Matching defs:size
165 char *significandArray, char *sciNotationArray, uint32_t size)
167 if (size < MAX_DOUBLE_DIGIT) {
168 std::cerr << "Failed to set the size of buffer, the buffer size provided (" << size
169 << ") is less than the required minimum size (" << MAX_DOUBLE_DIGIT
173 if (snprintf_s(sciNotationArray, size, size - 1, "%.*e", significandBitCount - 1, number) == FAIL_SNPRINTF_S) {
175 << " into scientific notation using snprintf_s. Please check if the buffer size (" << size
881 for (size_t i = 0; i < str.size(); i++) {