Lines Matching refs:t1
4751 uint8_t b, t1, t2;
4861 (t1=(uint8_t)(*source-0x80)) <= 0x3f
4865 value=SBCS_RESULT_FROM_UTF8(sbcsIndex, results, c, t1);
4871 c=(c<<6)|t1;
4878 (t1=(uint8_t)(source[0]-0x80)) <= 0x3f && t1 >= 0x20 &&
4881 c=t1;
5047 uint8_t b, t1, t2;
5142 (((t1=(uint8_t)(source[0]-0x80), b<0xed) && (t1 <= 0x3f)) ||
5143 (b==0xed && (t1 <= 0x1f))) &&
5146 c=((b&0xf)<<6)|t1;
5159 (t1=(uint8_t)(*source-0x80)) <= 0x3f
5163 value=DBCS_RESULT_FROM_UTF8(mbcsIndex, results, c, t1);
5165 c=(c<<6)|t1;