Home | History | Annotate | Download | only in bzip2

Lines Matching full:hi32

238 void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 )
240 n->b[7] = (UChar)((hi32 >> 24) & 0xFF);
241 n->b[6] = (UChar)((hi32 >> 16) & 0xFF);
242 n->b[5] = (UChar)((hi32 >> 8) & 0xFF);
243 n->b[4] = (UChar) (hi32 & 0xFF);