Lines Matching refs:e2
31 int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2)
35 if (e1->highbit != e2->highbit)
39 n2 = e2->node;
81 int ebitmap_and(struct ebitmap *dst, struct ebitmap *e1, struct ebitmap *e2)
89 if (ebitmap_get_bit(e2, bit)) {
216 * Check to see if all the bits set in e2 are also set in e1. Optionally,
217 * if last_e2bit is non-zero, the highest set bit in e2 cannot exceed
220 int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2, u32 last_e2bit)
225 if (e1->highbit < e2->highbit)
229 n2 = e2->node;