Searched refs:tbl_index (Results 1 – 1 of 1) sorted by relevance
203 uint32_t tbl_index) { in grpc_chttp2_hptbl_lookup() argument205 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()