Home
last modified time | relevance | path

Searched refs:table_elem_size (Results 1 – 2 of 2) sorted by relevance

/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dhpack_encoder.cc177 c->table_elem_size[c->tail_remote_index % c->cap_table_elems]); in evict_entry()
181 c->table_elem_size[c->tail_remote_index % c->cap_table_elems]); in evict_entry()
207 c->table_elem_size[new_index % c->cap_table_elems] = in prepare_space_for_new_elem()
594 c->table_elem_size = static_cast<uint16_t*>( in grpc_chttp2_hpack_compressor_init()
595 gpr_malloc(sizeof(*c->table_elem_size) * c->cap_table_elems)); in grpc_chttp2_hpack_compressor_init()
596 memset(c->table_elem_size, 0, in grpc_chttp2_hpack_compressor_init()
597 sizeof(*c->table_elem_size) * c->cap_table_elems); in grpc_chttp2_hpack_compressor_init()
611 gpr_free(c->table_elem_size); in grpc_chttp2_hpack_compressor_destroy()
622 uint16_t* table_elem_size = in rebuild_elems() local
623 static_cast<uint16_t*>(gpr_malloc(sizeof(*table_elem_size) * new_cap)); in rebuild_elems()
[all …]
Dhpack_encoder.h71 uint16_t* table_elem_size; member