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

/vbox/src/VBox/Runtime/common/string/
H A Dstrformat.cpp71 static int rtStrFormatNumber(char *psz, KSIZE64 ullValue, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, unsigned int fFlags);
164 * @param ullValue Value. Using the high part is optional.
170 static int rtStrFormatNumber(char *psz, KSIZE64 ullValue, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, argument
198 if (ullValue.ulHi || (fFlags & RTSTR_F_64BIT))
200 uint64_t u64 = *(uint64_t *)(void *)&ullValue;
201 if ((fFlags & RTSTR_F_VALSIGNED) && (ullValue.ulHi & 0x80000000))
211 ul = (fFlags & RTSTR_F_VALSIGNED) && (ullValue.ulLo & 0x80000000) ? -(int32_t)ullValue.ulLo : ullValue.ulLo;
232 if ((ullValue
[all...]

Completed in 51 milliseconds