Home | History | Annotate | Download | only in priv

Lines Matching refs:srcval

407 s390_do_cu21(UInt srcval, UInt low_surrogate)
412 srcval &= 0xffff;
415 if (srcval <= 0x007f)
417 else if (srcval >= 0x0080 && srcval <= 0x07ff)
419 else if ((srcval >= 0x0800 && srcval <= 0xd7ff) ||
420 (srcval >= 0xdc00 && srcval <= 0xffff))
428 retval = srcval;
434 b1 |= srcval >> 6;
437 b2 |= srcval & 0x3f;
445 b1 |= srcval >> 12;
448 b2 |= (srcval >> 6) & 0x3f;
451 b3 |= srcval & 0x3f;
458 UInt high_surrogate = srcval;
503 s390_do_cu24(UInt srcval, UInt low_surrogate)
508 srcval &= 0xffff;
510 if ((srcval >= 0x0000 && srcval <= 0xd7ff) ||
511 (srcval >= 0xdc00 && srcval <= 0xffff)) {
512 retval = srcval;
515 UInt high_surrogate = srcval;
547 s390_do_cu42(UInt srcval)
552 if ((srcval >= 0x0000 && srcval <= 0xd7ff) ||
553 (srcval >= 0xdc00 && srcval <= 0xffff)) {
554 retval = srcval;
556 } else if (srcval >= 0x00010000 && srcval <= 0x0010FFFF) {
557 UInt uvwxy = srcval >> 16;
559 UInt efghij = (srcval >> 10) & 0x3f;
562 UInt low_surrogate = (0xdc << 8) | (srcval & 0x3ff);
594 s390_do_cu41(UInt srcval)
599 if (srcval <= 0x7f) {
600 retval = srcval;
602 } else if (srcval >= 0x80 && srcval <= 0x7ff) {
603 UInt fghij = srcval >> 6;
604 UInt klmnop = srcval & 0x3f;
610 } else if ((srcval >= 0x800 && srcval <= 0xd7ff) ||
611 (srcval >= 0xdc00 && srcval <= 0xffff)) {
612 UInt abcd = srcval >> 12;
613 UInt efghij = (srcval >> 6) & 0x3f;
614 UInt klmnop = srcval & 0x3f;
621 } else if (srcval >= 0x10000 && srcval <= 0x10ffff) {
622 UInt uvw = (srcval >> 18) & 0x7;
623 UInt xy = (srcval >> 16) & 0x3;
624 UInt efgh = (srcval >> 12) & 0xf;
625 UInt ijklmn = (srcval >> 6) & 0x3f;
626 UInt opqrst = srcval & 0x3f;