Home | History | Annotate | Download | only in priv

Lines Matching full:uvwxy

414       UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1;   // abcd + 1
417 b1 |= uvwxy >> 2; // uvw
420 b2 |= (uvwxy & 0x3) << 4; // xy
471 UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1; // abcd + 1
475 retval = (uvwxy << 16) | (efghij << 10) | klmnoprst;
512 UInt uvwxy = srcval >> 16;
513 UInt abcd = (uvwxy - 1) & 0xf;
756 UInt uvwxy = (uvw << 2) | xy;
763 UInt abcd = (uvwxy - 1) & 0xf;
772 (uvwxy << 16) | (efgh << 12) | (ij << 10) | (klmn << 6) | opqrst;