Home | History | Annotate | Download | only in src

Lines Matching defs:c1

1894         uint8_t c1 = *frm_nxt;
1895 if (c1 > Maxcode)
1897 if (c1 < 0x80)
1899 *to_nxt = static_cast<uint16_t>(c1);
1902 else if (c1 < 0xC2)
1906 else if (c1 < 0xE0)
1913 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6) | (c2 & 0x3F));
1919 else if (c1 < 0xF0)
1925 switch (c1)
1942 uint16_t t = static_cast<uint16_t>(((c1 & 0x0F) << 12)
1950 else if (c1 < 0xF5)
1957 switch (c1)
1976 if ((((c1 & 7UL) << 18) +
1982 | (((((c1 & 0x07) << 2) | ((c2 & 0x30) >> 4)) - 1) << 6)
2015 uint8_t c1 = *frm_nxt;
2016 if (c1 > Maxcode)
2018 if (c1 < 0x80)
2020 *to_nxt = static_cast<uint32_t>(c1);
2023 else if (c1 < 0xC2)
2027 else if (c1 < 0xE0)
2034 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6) | (c2 & 0x3F));
2040 else if (c1 < 0xF0)
2046 switch (c1)
2063 uint16_t t = static_cast<uint16_t>(((c1 & 0x0F) << 12)
2071 else if (c1 < 0xF5)
2078 switch (c1)
2097 if ((((c1 & 7UL) << 18) +
2103 | (((((c1 & 0x07) << 2) | ((c2 & 0x30) >> 4)) - 1) << 6)
2135 uint8_t c1 = *frm_nxt;
2136 if (c1 > Maxcode)
2138 if (c1 < 0x80)
2142 else if (c1 < 0xC2)
2146 else if (c1 < 0xE0)
2150 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6) | (frm_nxt[1] & 0x3F));
2155 else if (c1 < 0xF0)
2161 switch (c1)
2178 if ((((c1 & 0x0Fu) << 12) | ((c2 & 0x3Fu) << 6) | (c3 & 0x3Fu)) > Maxcode)
2182 else if (c1 < 0xF5)
2189 switch (c1)
2206 if ((((c1 & 7UL) << 18) +
2292 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2293 if (c1 < 0x80)
2295 if (c1 > Maxcode)
2297 *to_nxt = static_cast<uint32_t>(c1);
2300 else if (c1 < 0xC2)
2304 else if (c1 < 0xE0)
2311 uint32_t t = static_cast<uint32_t>(((c1 & 0x1F) << 6)
2318 else if (c1 < 0xF0)
2324 switch (c1)
2341 uint32_t t = static_cast<uint32_t>(((c1 & 0x0F) << 12)
2349 else if (c1 < 0xF5)
2356 switch (c1)
2373 uint32_t t = static_cast<uint32_t>(((c1 & 0x07) << 18)
2405 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2406 if (c1 < 0x80)
2408 if (c1 > Maxcode)
2412 else if (c1 < 0xC2)
2416 else if (c1 < 0xE0)
2420 if ((((c1 & 0x1Fu) << 6) | (frm_nxt[1] & 0x3Fu)) > Maxcode)
2424 else if (c1 < 0xF0)
2430 switch (c1)
2447 if ((((c1 & 0x0Fu) << 12) | ((c2 & 0x3Fu) << 6) | (c3 & 0x3Fu)) > Maxcode)
2451 else if (c1 < 0xF5)
2458 switch (c1)
2475 if ((((c1 & 0x07u) << 18) | ((c2 & 0x3Fu) << 12) |
2550 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2551 if (c1 < 0x80)
2553 if (c1 > Maxcode)
2555 *to_nxt = static_cast<uint16_t>(c1);
2558 else if (c1 < 0xC2)
2562 else if (c1 < 0xE0)
2569 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6)
2576 else if (c1 < 0xF0)
2582 switch (c1)
2599 uint16_t t = static_cast<uint16_t>(((c1 & 0x0F) << 12)
2630 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2631 if (c1 < 0x80)
2633 if (c1 > Maxcode)
2637 else if (c1 < 0xC2)
2641 else if (c1 < 0xE0)
2645 if ((((c1 & 0x1Fu) << 6) | (frm_nxt[1] & 0x3Fu)) > Maxcode)
2649 else if (c1 < 0xF0)
2655 switch (c1)
2672 if ((((c1 & 0x0Fu) << 12) | ((c2 & 0x3Fu) << 6) | (c3 & 0x3Fu)) > Maxcode)
2744 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
2745 if ((c1 & 0xFC00) == 0xDC00)
2747 if ((c1 & 0xFC00) != 0xD800)
2749 if (c1 > Maxcode)
2751 *to_nxt = static_cast<uint32_t>(c1);
2762 ((((c1 & 0x03C0) >> 6) + 1) << 16)
2763 | ((c1 & 0x003F) << 10)
2788 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
2789 if ((c1 & 0xFC00) == 0xDC00)
2791 if ((c1 & 0xFC00) != 0xD800)
2793 if (c1 > Maxcode)
2805 ((((c1 & 0x03C0) >> 6) + 1) << 16)
2806 | ((c1 & 0x003F) << 10)
2876 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
2877 if ((c1 & 0xFC00) == 0xDC00)
2879 if ((c1 & 0xFC00) != 0xD800)
2881 if (c1 > Maxcode)
2883 *to_nxt = static_cast<uint32_t>(c1);
2894 ((((c1 & 0x03C0) >> 6) + 1) << 16)
2895 | ((c1 & 0x003F) << 10)
2920 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
2921 if ((c1 & 0xFC00) == 0xDC00)
2923 if ((c1 & 0xFC00) != 0xD800)
2925 if (c1 > Maxcode)
2937 ((((c1 & 0x03C0) >> 6) + 1) << 16)
2938 | ((c1 & 0x003F) << 10)
2991 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
2992 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)
2994 *to_nxt = c1;
3014 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
3015 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)
3065 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
3066 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)
3068 *to_nxt = c1;
3089 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
3090 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)