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

/vbox/src/VBox/Devices/EFI/
H A DDevEFI.cpp942 * @param pfZeroTerm Where to return whether the string is zero
945 static bool efiInfoNvramIsUtf8(PCEFIVAR pEfiVar, bool *pfZeroTerm) argument
950 *pfZeroTerm = pachValue[pEfiVar->cbValue - 1] == 0;
954 if (cchValue != pEfiVar->cbValue - *pfZeroTerm)
979 * @param pfZeroTerm Where to return whether the string is zero
982 static bool efiInfoNvramIsUtf16(PCEFIVAR pEfiVar, bool *pfZeroTerm) argument
989 *pfZeroTerm = pwcValue[cwcValue - 1] == 0;
990 if (!*pfZeroTerm && RTUtf16IsHighSurrogate(pwcValue[cwcValue - 1]))
992 cwcValue -= *pfZeroTerm;

Completed in 49 milliseconds