Home | History | Annotate | Download | only in src

Lines Matching defs:c1

1964         uint8_t c1 = *frm_nxt;
1965 if (c1 > Maxcode)
1967 if (c1 < 0x80)
1969 *to_nxt = static_cast<uint16_t>(c1);
1972 else if (c1 < 0xC2)
1976 else if (c1 < 0xE0)
1983 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6) | (c2 & 0x3F));
1989 else if (c1 < 0xF0)
1995 switch (c1)
2012 uint16_t t = static_cast<uint16_t>(((c1 & 0x0F) << 12)
2020 else if (c1 < 0xF5)
2027 switch (c1)
2046 if ((((c1 & 7UL) << 18) +
2052 | (((((c1 & 0x07) << 2) | ((c2 & 0x30) >> 4)) - 1) << 6)
2085 uint8_t c1 = *frm_nxt;
2086 if (c1 > Maxcode)
2088 if (c1 < 0x80)
2090 *to_nxt = static_cast<uint32_t>(c1);
2093 else if (c1 < 0xC2)
2097 else if (c1 < 0xE0)
2104 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6) | (c2 & 0x3F));
2110 else if (c1 < 0xF0)
2116 switch (c1)
2133 uint16_t t = static_cast<uint16_t>(((c1 & 0x0F) << 12)
2141 else if (c1 < 0xF5)
2148 switch (c1)
2167 if ((((c1 & 7UL) << 18) +
2173 | (((((c1 & 0x07) << 2) | ((c2 & 0x30) >> 4)) - 1) << 6)
2205 uint8_t c1 = *frm_nxt;
2206 if (c1 > Maxcode)
2208 if (c1 < 0x80)
2212 else if (c1 < 0xC2)
2216 else if (c1 < 0xE0)
2220 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6) | (frm_nxt[1] & 0x3F));
2225 else if (c1 < 0xF0)
2231 switch (c1)
2248 if ((((c1 & 0x0Fu) << 12) | ((c2 & 0x3Fu) << 6) | (c3 & 0x3Fu)) > Maxcode)
2252 else if (c1 < 0xF5)
2259 switch (c1)
2276 if ((((c1 & 7UL) << 18) +
2362 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2363 if (c1 < 0x80)
2365 if (c1 > Maxcode)
2367 *to_nxt = static_cast<uint32_t>(c1);
2370 else if (c1 < 0xC2)
2374 else if (c1 < 0xE0)
2381 uint32_t t = static_cast<uint32_t>(((c1 & 0x1F) << 6)
2388 else if (c1 < 0xF0)
2394 switch (c1)
2411 uint32_t t = static_cast<uint32_t>(((c1 & 0x0F) << 12)
2419 else if (c1 < 0xF5)
2426 switch (c1)
2443 uint32_t t = static_cast<uint32_t>(((c1 & 0x07) << 18)
2475 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2476 if (c1 < 0x80)
2478 if (c1 > Maxcode)
2482 else if (c1 < 0xC2)
2486 else if (c1 < 0xE0)
2490 if ((((c1 & 0x1Fu) << 6) | (frm_nxt[1] & 0x3Fu)) > Maxcode)
2494 else if (c1 < 0xF0)
2500 switch (c1)
2517 if ((((c1 & 0x0Fu) << 12) | ((c2 & 0x3Fu) << 6) | (c3 & 0x3Fu)) > Maxcode)
2521 else if (c1 < 0xF5)
2528 switch (c1)
2545 if ((((c1 & 0x07u) << 18) | ((c2 & 0x3Fu) << 12) |
2620 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2621 if (c1 < 0x80)
2623 if (c1 > Maxcode)
2625 *to_nxt = static_cast<uint16_t>(c1
2628 else if (c1 < 0xC2)
2632 else if (c1 < 0xE0)
2639 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6)
2646 else if (c1 < 0xF0)
2652 switch (c1)
2669 uint16_t t = static_cast<uint16_t>(((c1 & 0x0F) << 12)
2700 uint8_t c1 = static_cast<uint8_t>(*frm_nxt);
2701 if (c1 < 0x80)
2703 if (c1 > Maxcode)
2707 else if (c1 < 0xC2)
2711 else if (c1 < 0xE0)
2715 if ((((c1 & 0x1Fu) << 6) | (frm_nxt[1] & 0x3Fu)) > Maxcode)
2719 else if (c1 < 0xF0)
2725 switch (c1)
2742 if ((((c1 & 0x0Fu) << 12) | ((c2 & 0x3Fu) << 6) | (c3 & 0x3Fu)) > Maxcode)
2814 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
2815 if ((c1 & 0xFC00) == 0xDC00)
2817 if ((c1 & 0xFC00) != 0xD800)
2819 if (c1 > Maxcode)
2821 *to_nxt = static_cast<uint32_t>(c1);
2832 ((((c1 & 0x03C0) >> 6) + 1) << 16)
2833 | ((c1 & 0x003F) << 10)
2858 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
2859 if ((c1 & 0xFC00) == 0xDC00)
2861 if ((c1 & 0xFC00) != 0xD800)
2863 if (c1 > Maxcode)
2875 ((((c1 & 0x03C0) >> 6) + 1) << 16)
2876 | ((c1 & 0x003F) << 10)
2946 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
2947 if ((c1 & 0xFC00) == 0xDC00)
2949 if ((c1 & 0xFC00) != 0xD800)
2951 if (c1 > Maxcode)
2953 *to_nxt = static_cast<uint32_t>(c1);
2964 ((((c1 & 0x03C0) >> 6) + 1) << 16)
2965 | ((c1 & 0x003F) << 10)
2990 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
2991 if ((c1 & 0xFC00) == 0xDC00)
2993 if ((c1 & 0xFC00) != 0xD800)
2995 if (c1 > Maxcode)
3007 ((((c1 & 0x03C0) >> 6) + 1) << 16)
3008 | ((c1 & 0x003F) << 10)
3061 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
3062 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)
3064 *to_nxt = c1;
3084 uint16_t c1 = static_cast<uint16_t>(frm_nxt[0] << 8 | frm_nxt[1]);
3085 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)
3135 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
3136 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)
3138 *to_nxt = c1;
3159 uint16_t c1 = static_cast<uint16_t>(frm_nxt[1] << 8 | frm_nxt[0]);
3160 if ((c1 & 0xF800) == 0xD800 || c1 > Maxcode)