Lines Matching refs:cuckoo_params
906 struct rte_table_hash_cuckoo_params cuckoo_params = { in test_table_hash_cuckoo() local
921 cuckoo_params.key_size = 0; in test_table_hash_cuckoo()
923 table = rte_table_hash_cuckoo_ops.f_create(&cuckoo_params, in test_table_hash_cuckoo()
928 cuckoo_params.key_size = 32; in test_table_hash_cuckoo()
929 cuckoo_params.n_keys = 0; in test_table_hash_cuckoo()
931 table = rte_table_hash_cuckoo_ops.f_create(&cuckoo_params, in test_table_hash_cuckoo()
936 cuckoo_params.n_keys = 1 << 24; in test_table_hash_cuckoo()
937 cuckoo_params.f_hash = NULL; in test_table_hash_cuckoo()
939 table = rte_table_hash_cuckoo_ops.f_create(&cuckoo_params, in test_table_hash_cuckoo()
944 cuckoo_params.f_hash = pipeline_test_hash_cuckoo; in test_table_hash_cuckoo()
945 cuckoo_params.name = NULL; in test_table_hash_cuckoo()
947 table = rte_table_hash_cuckoo_ops.f_create(&cuckoo_params, in test_table_hash_cuckoo()
952 cuckoo_params.name = "CUCKOO"; in test_table_hash_cuckoo()
954 table = rte_table_hash_cuckoo_ops.f_create(&cuckoo_params, in test_table_hash_cuckoo()
975 table = rte_table_hash_cuckoo_ops.f_create(&cuckoo_params, 0, 1); in test_table_hash_cuckoo()