HomeSort by relevance Sort by last modified time
    Searched refs:decode_table (Results 1 - 2 of 2) sorted by null

  /external/grpc-grpc/src/core/ext/transport/chttp2/transport/
bin_decoder.cc 28 static uint8_t decode_table[] = { variable
58 if (GPR_UNLIKELY((decode_table[input_ptr[i]] & 0xC0) != 0)) {
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]])
  /external/libvterm/src/
encoding.c 187 static void decode_table(VTermEncoding *enc, void *data, function

Completed in 395 milliseconds