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