Home
last modified time | relevance | path

Searched refs:originChar (Results 1 - 1 of 1) sorted by relevance

/base/telephony/core_service/utils/common/src/
H A Dtelephony_config.cpp71 char originChar = content[index]; in ConvertCharToInt() local
72 if (originChar >= '0' && originChar <= '9') { in ConvertCharToInt()
73 retValue = static_cast<uint32_t>(originChar - '0'); in ConvertCharToInt()
74 } else if (originChar >= 'a' && originChar <= 'f') { in ConvertCharToInt()
75 retValue = static_cast<uint32_t>(originChar - 'a') + ASCII_BASE_OFFSET_VALUE; in ConvertCharToInt()
76 } else if (originChar >= 'A' && originChar <= 'F') { in ConvertCharToInt()
77 retValue = static_cast<uint32_t>(originChar in ConvertCharToInt()
[all...]

Completed in 1 milliseconds