Home
last modified time | relevance | path

Searched refs:grpc_chttp2_huffsyms (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/tools/codegen/core/
Dgen_hpack_tables.cc243 if (((grpc_chttp2_huffsyms[i].bits >> in build_dec_tbl()
244 (grpc_chttp2_huffsyms[i].length - bitofs - 1)) & in build_dec_tbl()
247 if (grpc_chttp2_huffsyms[i].length == bitofs + 1) { in build_dec_tbl()
322 printf("{0x%x, %d},", grpc_chttp2_huffsyms[(unsigned char)alphabet[i]].bits, in generate_base64_huff_encoder_table()
323 grpc_chttp2_huffsyms[(unsigned char)alphabet[i]].length); in generate_base64_huff_encoder_table()
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dbin_encoder.cc106 nbits += grpc_chttp2_huffsyms[*in].length; in grpc_chttp2_huffman_compress()
114 temp <<= grpc_chttp2_huffsyms[sym].length; in grpc_chttp2_huffman_compress()
115 temp |= grpc_chttp2_huffsyms[sym].bits; in grpc_chttp2_huffman_compress()
116 temp_length += grpc_chttp2_huffsyms[sym].length; in grpc_chttp2_huffman_compress()
Dhuffsyms.cc26 const grpc_chttp2_huffsym grpc_chttp2_huffsyms[GRPC_CHTTP2_NUM_HUFFSYMS] = { variable
Dhuffsyms.h31 extern const grpc_chttp2_huffsym grpc_chttp2_huffsyms[GRPC_CHTTP2_NUM_HUFFSYMS];