Lines Matching defs:e_count
80 * @e_count: number of elements allowed to be active simultaneously
89 unsigned e_count, size_t e_size, size_t e_off)
102 /* e_count too big; would probably fail the allocation below anyways.
103 * for typical use cases, e_count should be few thousand at most. */
104 if (e_count > LC_MAX_ACTIVE)
107 slot = kcalloc(e_count, sizeof(struct hlist_head), GFP_KERNEL);
110 element = kcalloc(e_count, sizeof(struct lc_element *), GFP_KERNEL);
126 lc->nr_elements = e_count;
133 for (i = 0; i < e_count; i++) {
145 if (i == e_count)