Home | History | Annotate | Download | only in cjkcodecs

Lines Matching refs:decoded

488                 Py_UCS4 decoded;
520 decoded = dsg->decoder(*inbuf);
521 if (decoded == MAP_UNMAPPABLE)
524 if (decoded < 0x10000) {
525 OUTCHAR(decoded);
527 else if (decoded < 0x30000) {
528 OUTCHAR(decoded);
531 OUTCHAR2(decoded >> 16, decoded & 0xffff);