Home
last modified time | relevance | path

Searched refs:decode_table (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dbin_decoder.cc28 static uint8_t decode_table[] = { variable
58 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]])
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dbin_decoder.cc28 static uint8_t decode_table[] = { variable
58 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]])
/external/virglrenderer/src/
Dvrend_decode.c1574 static const vrend_decode_callback decode_table[VIRGL_MAX_COMMANDS] = { variable
1671 ret = decode_table[cmd](gdctx->grctx, buf, len); in vrend_decode_ctx_submit_cmd()
1710 assert(decode_table[i]); in vrend_decode_ctx_init_base()