Home | History | Annotate | Download | only in priv

Lines Matching full:w32

2058 static UChar* emit32 ( UChar* p, UInt w32 )
2060 *p++ = toUChar((w32) & 0x000000FF);
2061 *p++ = toUChar((w32 >> 8) & 0x000000FF);
2062 *p++ = toUChar((w32 >> 16) & 0x000000FF);
2063 *p++ = toUChar((w32 >> 24) & 0x000000FF);
2076 static Bool fits8bits ( UInt w32 )
2078 Int i32 = (Int)w32;