Home | History | Annotate | Download | only in stdlib

Lines Matching refs:W2

440 				Uint16 W1, W2;
463 W2 = ((Uint16)p[0] << 8) |
467 if ( W2 < 0xDC00 || W2 > 0xDFFF ) {
475 (Uint32)(W2 & 0x3FF)) + 0x10000;
481 Uint16 W1, W2;
504 W2 = ((Uint16)p[1] << 8) |
508 if ( W2 < 0xDC00 || W2 > 0xDFFF ) {
516 (Uint32)(W2 & 0x3FF)) + 0x10000;
684 Uint16 W1, W2;
690 W2 = 0xDC00 | (Uint16)(ch & 0x3FF);
693 p[2] = (Uint8)(W2 >> 8);
694 p[3] = (Uint8)W2;
715 W2;
721 W2 = 0xDC00 | (Uint16)(ch & 0x3FF);
724 p[3] = (Uint8)(W2 >> 8);
725 p[2] = (Uint8)W2;