Home | History | Annotate | Download | only in priv

Lines Matching refs:w32

2940 static UChar* emit32 ( UChar* p, UInt w32 )
2942 *p++ = toUChar((w32 >> 24) & 0x000000FF);
2943 *p++ = toUChar((w32 >> 16) & 0x000000FF);
2944 *p++ = toUChar((w32 >> 8) & 0x000000FF);
2945 *p++ = toUChar((w32) & 0x000000FF);
2952 UInt w32 = 0;
2953 w32 |= ((0xFF & (UInt)p[0]) << 24);
2954 w32 |= ((0xFF & (UInt)p[1]) << 16);
2955 w32 |= ((0xFF & (UInt)p[2]) << 8);
2956 w32 |= ((0xFF & (UInt)p[3]) << 0);
2957 return w32;