Lines Matching full:uvwxy
459 UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1; // abcd + 1
462 b1 |= uvwxy >> 2; // uvw
465 b2 |= (uvwxy & 0x3) << 4; // xy
516 UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1; // abcd + 1
520 retval = (uvwxy << 16) | (efghij << 10) | klmnoprst;
557 UInt uvwxy = srcval >> 16;
558 UInt abcd = (uvwxy - 1) & 0xf;
801 UInt uvwxy = (uvw << 2) | xy;
808 UInt abcd = (uvwxy - 1) & 0xf;
817 (uvwxy << 16) | (efgh << 12) | (ij << 10) | (klmn << 6) | opqrst;