Searched refs:decode_table (Results 1 – 4 of 4) sorted by relevance
28 static uint8_t decode_table[] = { variable58 if (GPR_UNLIKELY((decode_table[input_ptr[i]] & 0xC0) != 0)) { in input_is_valid()70 (uint8_t)((decode_table[input_ptr[0]] << 2) | \71 (decode_table[input_ptr[1]] >> 4))74 (uint8_t)((decode_table[input_ptr[1]] << 4) | \75 (decode_table[input_ptr[2]] >> 2))78 (uint8_t)((decode_table[input_ptr[2]] << 6) | decode_table[input_ptr[3]])
2 { .decode = &decode_table },
187 static void decode_table(VTermEncoding *enc, void *data, in decode_table() function