Home
last modified time | relevance | path

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

/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dhpack_table.cc50 uint32_t tbl_index) { in lookup_dynamic_index() argument
52 tbl_index -= (GRPC_CHTTP2_LAST_STATIC_ENTRY + 1); in lookup_dynamic_index()
53 if (tbl_index < tbl->num_ents) { in lookup_dynamic_index()
55 (tbl->num_ents - 1u - tbl_index + tbl->first_ent) % tbl->cap_entries; in lookup_dynamic_index()
67 uint32_t tbl_index) { in grpc_chttp2_hptbl_lookup_dynamic_index() argument
68 return lookup_dynamic_index<false>(tbl, tbl_index); in grpc_chttp2_hptbl_lookup_dynamic_index()
72 const grpc_chttp2_hptbl* tbl, uint32_t tbl_index) { in grpc_chttp2_hptbl_lookup_ref_dynamic_index() argument
73 return lookup_dynamic_index<true>(tbl, tbl_index); in grpc_chttp2_hptbl_lookup_ref_dynamic_index()
Dhpack_table.h97 uint32_t tbl_index);
99 const grpc_chttp2_hptbl* tbl, uint32_t tbl_index);
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dhpack_table.cc203 uint32_t tbl_index) { in grpc_chttp2_hptbl_lookup() argument
205 if (tbl_index <= GRPC_CHTTP2_LAST_STATIC_ENTRY) { in grpc_chttp2_hptbl_lookup()
206 return tbl->static_ents[tbl_index - 1]; in grpc_chttp2_hptbl_lookup()
209 tbl_index -= (GRPC_CHTTP2_LAST_STATIC_ENTRY + 1); in grpc_chttp2_hptbl_lookup()
210 if (tbl_index < tbl->num_ents) { in grpc_chttp2_hptbl_lookup()
212 (tbl->num_ents - 1u - tbl_index + tbl->first_ent) % tbl->cap_entries; in grpc_chttp2_hptbl_lookup()