Searched defs:g_achDigits (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-objid-decode.cpp44 static char const g_achDigits[11] = "0123456789"; variable
73 *--psz = g_achDigits[uValue % 10];
316 *pszObjId++ = g_achDigits[pauComponents[0]];
H A Dasn1-cursor.cpp62 static char const g_achDigits[11] = "0123456789"; variable
/vbox/src/VBox/Runtime/generic/
H A Duuid-generic.cpp64 static const char g_achDigits[17] = "0123456789abcdef"; variable
205 pszString[ 0] = g_achDigits[(u32TimeLow >> 28)/*& 0xf*/];
206 pszString[ 1] = g_achDigits[(u32TimeLow >> 24) & 0xf];
207 pszString[ 2] = g_achDigits[(u32TimeLow >> 20) & 0xf];
208 pszString[ 3] = g_achDigits[(u32TimeLow >> 16) & 0xf];
209 pszString[ 4] = g_achDigits[(u32TimeLow >> 12) & 0xf];
210 pszString[ 5] = g_achDigits[(u32TimeLow >> 8) & 0xf];
211 pszString[ 6] = g_achDigits[(u32TimeLow >> 4) & 0xf];
212 pszString[ 7] = g_achDigits[(u32TimeLow/*>>0*/)& 0xf];
215 pszString[ 9] = g_achDigits[(
[all...]

Completed in 35 milliseconds