Searched refs:reversedString (Results 1 – 1 of 1) sorted by relevance
1229 char *reversedString = static_cast<char *>(malloc(byteArrayLen * BIT2 + 1)); in ByteToHexString() local1230 if (reversedString == nullptr) { in ByteToHexString()1244 (void)memcpy_s(reversedString + j, BIT8, group, BIT8); in ByteToHexString()1247 reversedString[j] = '\0'; in ByteToHexString()1256 char temp = reversedString[j]; in ByteToHexString()1257 reversedString[j] = reversedString[end]; in ByteToHexString()1258 reversedString[end] = temp; in ByteToHexString()1262 return reversedString; in ByteToHexString()