Home | History | Annotate | Download | only in priv

Lines Matching defs:w32

3119 static UChar* emit32 ( UChar* p, UInt w32 )
3121 *p++ = toUChar((w32 >> 24) & 0x000000FF);
3122 *p++ = toUChar((w32 >> 16) & 0x000000FF);
3123 *p++ = toUChar((w32 >> 8) & 0x000000FF);
3124 *p++ = toUChar((w32) & 0x000000FF);
3131 UInt w32 = 0;
3132 w32 |= ((0xFF & (UInt)p[0]) << 24);
3133 w32 |= ((0xFF & (UInt)p[1]) << 16);
3134 w32 |= ((0xFF & (UInt)p[2]) << 8);
3135 w32 |= ((0xFF & (UInt)p[3]) << 0);
3136 return w32;