Home | History | Annotate | Download | only in bzip2

Lines Matching full:lo32

238 void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 )
244 n->b[3] = (UChar)((lo32 >> 24) & 0xFF);
245 n->b[2] = (UChar)((lo32 >> 16) & 0xFF);
246 n->b[1] = (UChar)((lo32 >> 8) & 0xFF);
247 n->b[0] = (UChar) (lo32 & 0xFF);