Lines Matching full:w32
1874 static UChar* emit32 ( UChar* p, UInt w32 )1876 *p++ = toUChar( w32 & 0x000000FF);1877 *p++ = toUChar((w32 >> 8) & 0x000000FF);1878 *p++ = toUChar((w32 >> 16) & 0x000000FF);1879 *p++ = toUChar((w32 >> 24) & 0x000000FF);1885 static Bool fits8bits ( UInt w32 )1887 Int i32 = (Int)w32;