Home | History | Annotate | Download | only in cjkcodecs

Lines Matching refs:decoded

487                 ucs4_t decoded;
516 decoded = dsg->decoder(*inbuf);
517 if (decoded == MAP_UNMAPPABLE)
520 if (decoded < 0x10000) {
521 WRITE1(decoded)
524 else if (decoded < 0x30000) {
525 WRITEUCS4(decoded)
528 WRITE2(decoded >> 16, decoded & 0xffff)