Home | History | Annotate | Download | only in common

Lines Matching refs:t1

4876     uint8_t b, t1, t2;
4986 (t1=(uint8_t)(*source-0x80)) <= 0x3f
4990 value=SBCS_RESULT_FROM_UTF8(sbcsIndex, results, c, t1);
4996 c=(c<<6)|t1;
5003 (t1=(uint8_t)(source[0]-0x80)) <= 0x3f && t1 >= 0x20 &&
5006 c=t1;
5182 uint8_t b, t1, t2;
5270 (((t1=(uint8_t)(source[0]-0x80), b<0xed) && (t1 <= 0x3f)) ||
5271 (b==0xed && (t1 <= 0x1f))) &&
5274 c=((b&0xf)<<6)|t1;
5287 (t1=(uint8_t)(*source-0x80)) <= 0x3f
5291 value=DBCS_RESULT_FROM_UTF8(mbcsIndex, results, c, t1);
5293 c=(c<<6)|t1;