Lines Matching refs:e2
18 int ebitmap_or(ebitmap_t * dst, const ebitmap_t * e1, const ebitmap_t * e2)
26 n2 = e2->node;
57 dst->highbit = (e1->highbit > e2->highbit) ? e1->highbit : e2->highbit;
74 int ebitmap_and(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2)
82 n2 = e2->node;
117 int ebitmap_xor(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2)
127 n2 = e2->node;
216 int ebitmap_andnot(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2, unsigned int maxbit)
221 rc = ebitmap_not(&e3, e2, maxbit);
242 int ebitmap_hamming_distance(const ebitmap_t * e1, const ebitmap_t * e2)
247 if (ebitmap_cmp(e1, e2))
249 rc = ebitmap_xor(&tmp, e1, e2);
257 int ebitmap_cmp(const ebitmap_t * e1, const ebitmap_t * e2)
261 if (e1->highbit != e2->highbit)
265 n2 = e2->node;
307 int ebitmap_contains(const ebitmap_t * e1, const ebitmap_t * e2)
311 if (e1->highbit < e2->highbit)
315 n2 = e2->node;
334 int ebitmap_match_any(const ebitmap_t *e1, const ebitmap_t *e2)
337 const ebitmap_node_t *n2 = e2->node;