Lines Matching refs:first

36 #define LXB_ENCODING_DECODE_UTF_8_BOUNDARY_SET(first, two, f_lower, s_upper)   \  argument
38 if (ch == first) { \
167 #define LXB_ENCODING_DECODE_UTF_8_BOUNDARY_SET_SINGLE(first, two, f_lower, \ argument
170 if (ch == first) { \
1550 lxb_char_t first, second, third, offset; in lxb_encoding_decode_gb18030() local
1566 if (ctx->u.gb18030.first != 0) { in lxb_encoding_decode_gb18030()
1576 first = ctx->u.gb18030.first; in lxb_encoding_decode_gb18030()
1587 ctx->u.gb18030.first = third; in lxb_encoding_decode_gb18030()
1592 first = third; in lxb_encoding_decode_gb18030()
1601 first = ctx->u.gb18030.first; in lxb_encoding_decode_gb18030()
1609 first = ctx->u.gb18030.first; in lxb_encoding_decode_gb18030()
1610 ctx->u.gb18030.first = 0x00; in lxb_encoding_decode_gb18030()
1623 first = *(*data)++; in lxb_encoding_decode_gb18030()
1627 if (first < 0x80) { in lxb_encoding_decode_gb18030()
1628 LXB_ENCODING_DECODE_APPEND_WO_CHECK(ctx, first); in lxb_encoding_decode_gb18030()
1632 if (first == 0x80) { in lxb_encoding_decode_gb18030()
1638 if ((unsigned) (first - 0x81) > (0xFE - 0x81)) { in lxb_encoding_decode_gb18030()
1648 ctx->u.gb18030.first = first; in lxb_encoding_decode_gb18030()
1667 pointer = (first - 0x81) * 190 + (second - offset); in lxb_encoding_decode_gb18030()
1702 ctx->u.gb18030.first = first; in lxb_encoding_decode_gb18030()
1722 ctx->u.gb18030.first = second; in lxb_encoding_decode_gb18030()
1726 first = second; in lxb_encoding_decode_gb18030()
1732 ctx->u.gb18030.first = first; in lxb_encoding_decode_gb18030()
1753 ctx->u.gb18030.first = 0x01; in lxb_encoding_decode_gb18030()
1766 ctx->u.gb18030.first = 0x01; in lxb_encoding_decode_gb18030()
1773 first = third; in lxb_encoding_decode_gb18030()
1778 pointer = ((first - 0x81) * (10 * 126 * 10)) in lxb_encoding_decode_gb18030()
2983 lxb_char_t first, second, third, offset; in lxb_encoding_decode_gb18030_single() local
2988 if (ctx->u.gb18030.first != 0) { in lxb_encoding_decode_gb18030_single()
2990 first = ctx->u.gb18030.first; in lxb_encoding_decode_gb18030_single()
2998 ctx->u.gb18030.first = third; in lxb_encoding_decode_gb18030_single()
3006 first = ctx->u.gb18030.first; in lxb_encoding_decode_gb18030_single()
3014 first = ctx->u.gb18030.first; in lxb_encoding_decode_gb18030_single()
3015 ctx->u.gb18030.first = 0x00; in lxb_encoding_decode_gb18030_single()
3025 first = *(*data)++; in lxb_encoding_decode_gb18030_single()
3029 if (first < 0x80) { in lxb_encoding_decode_gb18030_single()
3030 return first; in lxb_encoding_decode_gb18030_single()
3033 if (first == 0x80) { in lxb_encoding_decode_gb18030_single()
3038 if ((unsigned) (first - 0x81) > (0xFE - 0x81)) { in lxb_encoding_decode_gb18030_single()
3043 ctx->u.gb18030.first = first; in lxb_encoding_decode_gb18030_single()
3060 pointer = (first - 0x81) * 190 + (second - offset); in lxb_encoding_decode_gb18030_single()
3076 ctx->u.gb18030.first = first; in lxb_encoding_decode_gb18030_single()
3092 ctx->u.gb18030.first = second; in lxb_encoding_decode_gb18030_single()
3098 ctx->u.gb18030.first = first; in lxb_encoding_decode_gb18030_single()
3113 ctx->u.gb18030.first = 0x01; in lxb_encoding_decode_gb18030_single()
3120 pointer = ((first - 0x81) * (10 * 126 * 10)) in lxb_encoding_decode_gb18030_single()