Home
last modified time | relevance | path

Searched refs:hexStrTmp (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/commonlibrary/ets_utils/js_api_module/buffer/
H A Dconverter.cpp310 string hexStrTmp = ""; in HexDecode() local
313 hexStrTmp.push_back(hexStr[i * 2]); in HexDecode()
315 hexStrTmp.push_back(hexStr[i * 2 + 1]); in HexDecode()
316 if (!IsValidHex(hexStrTmp)) { in HexDecode()
320 num = stoi(hexStrTmp, nullptr, 16); in HexDecode()