Lines Matching refs:input
18 int* symbol, const uint8_t* input, size_t size) {
20 if ((input[0] & 0x80) == 0) {
21 *symbol = input[0];
28 (input[0] & 0xE0) == 0xC0 &&
29 (input[1] & 0xC0) == 0x80) {
30 *symbol = (((input[0] & 0x1F) << 6) |
31 (input[1] & 0x3F));
38 (input[0] & 0xF0) == 0xE0 &&
39 (input[1] & 0xC0) == 0x80 &&
40 (input[2] & 0xC0) == 0x80) {
41 *symbol = (((input[0] & 0x0F) << 12) |
42 ((input[1] & 0x3F) << 6) |
43 (input[2] & 0x3F));
50 (input[0] & 0xF8) == 0xF0 &&
51 (input[1] & 0xC0) == 0x80 &&
52 (input[2] & 0xC0) == 0x80 &&
53 (input[3] & 0xC0) == 0x80) {
54 *symbol = (((input[0] & 0x07) << 18) |
55 ((input[1] & 0x3F) << 12) |
56 ((input[2] & 0x3F) << 6) |
57 (input[3] & 0x3F));
63 *symbol = 0x110000 | input[0];