Lines Matching defs:cur
688 struct mlx5_cache_ent *cur;
693 cur = rb_entry(*new, struct mlx5_cache_ent, node);
695 cmp = cache_ent_key_cmp(cur->rb_key, ent->rb_key);
718 struct mlx5_cache_ent *cur, *smallest = NULL;
725 cur = rb_entry(node, struct mlx5_cache_ent, node);
726 cmp = cache_ent_key_cmp(cur->rb_key, rb_key);
728 smallest = cur;
734 return cur;
863 debugfs_create_ulong("cur", 0400, dir, &ent->stored);
938 struct rb_node *cur;
943 cur = rb_last(&cache->rb_root);
944 while (cur) {
945 ent = rb_entry(cur, struct mlx5_cache_ent, node);
946 cur = rb_prev(cur);