Home | History | Annotate | Download | only in priv

Lines Matching refs:srcval

362 s390_do_cu21(UInt srcval, UInt low_surrogate)
367 srcval &= 0xffff;
370 if (srcval <= 0x007f)
372 else if (srcval >= 0x0080 && srcval <= 0x07ff)
374 else if ((srcval >= 0x0800 && srcval <= 0xd7ff) ||
375 (srcval >= 0xdc00 && srcval <= 0xffff))
383 retval = srcval;
389 b1 |= srcval >> 6;
392 b2 |= srcval & 0x3f;
400 b1 |= srcval >> 12;
403 b2 |= (srcval >> 6) & 0x3f;
406 b3 |= srcval & 0x3f;
413 UInt high_surrogate = srcval;
458 s390_do_cu24(UInt srcval, UInt low_surrogate)
463 srcval &= 0xffff;
465 if ((srcval >= 0x0000 && srcval <= 0xd7ff) ||
466 (srcval >= 0xdc00 && srcval <= 0xffff)) {
467 retval = srcval;
470 UInt high_surrogate = srcval;
502 s390_do_cu42(UInt srcval)
507 if ((srcval >= 0x0000 && srcval <= 0xd7ff) ||
508 (srcval >= 0xdc00 && srcval <= 0xffff)) {
509 retval = srcval;
511 } else if (srcval >= 0x00010000 && srcval <= 0x0010FFFF) {
512 UInt uvwxy = srcval >> 16;
514 UInt efghij = (srcval >> 10) & 0x3f;
517 UInt low_surrogate = (0xdc << 8) | (srcval & 0x3ff);
549 s390_do_cu41(UInt srcval)
554 if (srcval <= 0x7f) {
555 retval = srcval;
557 } else if (srcval >= 0x80 && srcval <= 0x7ff) {
558 UInt fghij = srcval >> 6;
559 UInt klmnop = srcval & 0x3f;
565 } else if ((srcval >= 0x800 && srcval <= 0xd7ff) ||
566 (srcval >= 0xdc00 && srcval <= 0xffff)) {
567 UInt abcd = srcval >> 12;
568 UInt efghij = (srcval >> 6) & 0x3f;
569 UInt klmnop = srcval & 0x3f;
576 } else if (srcval >= 0x10000 && srcval <= 0x10ffff) {
577 UInt uvw = (srcval >> 18) & 0x7;
578 UInt xy = (srcval >> 16) & 0x3;
579 UInt efgh = (srcval >> 12) & 0xf;
580 UInt ijklmn = (srcval >> 6) & 0x3f;
581 UInt opqrst = srcval & 0x3f;