Searched defs:bmp1 (Results 1 - 1 of 1) sorted by relevance
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
H A D | libbitmask.c | 351 /* Copy bmp2 to bmp1 */ 352 struct bitmask *bitmask_copy(struct bitmask *bmp1, const struct bitmask *bmp2) argument 355 for (i = 0; i < bmp1->size; i++) 356 _setbit(bmp1, i, _getbit(bmp2, i)); 357 return bmp1; 470 * Binary Boolean operations: bmp1 op? bmp2 474 int bitmask_equal(const struct bitmask *bmp1, const struct bitmask *bmp2) argument 477 for (i = 0; i < bmp1->size || i < bmp2->size; i++) 478 if (_getbit(bmp1, i) != _getbit(bmp2, i)) 484 int bitmask_subset(const struct bitmask *bmp1, cons argument 494 bitmask_disjoint(const struct bitmask *bmp1, const struct bitmask *bmp2) argument 504 bitmask_intersects(const struct bitmask *bmp1, const struct bitmask *bmp2) argument 551 bitmask_complement(struct bitmask *bmp1, const struct bitmask *bmp2) argument 561 bitmask_shiftright(struct bitmask *bmp1, const struct bitmask *bmp2, unsigned int n) argument 571 bitmask_shiftleft(struct bitmask *bmp1, const struct bitmask *bmp2, unsigned int n) argument 585 bitmask_and(struct bitmask *bmp1, const struct bitmask *bmp2, const struct bitmask *bmp3) argument 595 bitmask_andnot(struct bitmask *bmp1, const struct bitmask *bmp2, const struct bitmask *bmp3) argument 605 bitmask_or(struct bitmask *bmp1, const struct bitmask *bmp2, const struct bitmask *bmp3) argument 615 bitmask_eor(struct bitmask *bmp1, const struct bitmask *bmp2, const struct bitmask *bmp3) argument [all...] |
Completed in 109 milliseconds