Lines Matching full:w32
1974 static UChar* emit32 ( UChar* p, UInt w32 )1976 *p++ = toUChar((w32) & 0x000000FF);1977 *p++ = toUChar((w32 >> 8) & 0x000000FF);1978 *p++ = toUChar((w32 >> 16) & 0x000000FF);1979 *p++ = toUChar((w32 >> 24) & 0x000000FF);1992 static Bool fits8bits ( UInt w32 )1994 Int i32 = (Int)w32;