Home | History | Annotate | Download | only in priv

Lines Matching full:w32

1787 static UChar* emit32 ( UChar* p, UInt w32 )
1789 *p++ = toUChar( w32 & 0x000000FF);
1790 *p++ = toUChar((w32 >> 8) & 0x000000FF);
1791 *p++ = toUChar((w32 >> 16) & 0x000000FF);
1792 *p++ = toUChar((w32 >> 24) & 0x000000FF);
1798 static Bool fits8bits ( UInt w32 )
1800 Int i32 = (Int)w32;