Home
last modified time | relevance | path

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

/freebsd/contrib/ofed/libmlx4/
H A Dmlx4.c184 context->qp_table_shift = ffs(context->num_qps) - 1 - MLX4_QP_TABLE_BITS; in mlx4_init_context()
185 context->qp_table_mask = (1 << context->qp_table_shift) - 1; in mlx4_init_context()
H A Dqp.c744 int tind = (qpn & (ctx->num_qps - 1)) >> ctx->qp_table_shift; in mlx4_find_qp()
754 int tind = (qpn & (ctx->num_qps - 1)) >> ctx->qp_table_shift; in mlx4_store_qp()
770 int tind = (qpn & (ctx->num_qps - 1)) >> ctx->qp_table_shift; in mlx4_clear_qp()
H A Dmlx4.h140 int qp_table_shift; member