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