Searched refs:bmp3 (Results 1 – 2 of 2) sorted by relevance
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
D | bitmask.h | 194 const struct bitmask *bmp3); 196 const struct bitmask *bmp3); 198 const struct bitmask *bmp3); 200 const struct bitmask *bmp3);
|
D | libbitmask.c | 586 const struct bitmask *bmp3) in bitmask_and() argument 590 _setbit(bmp1, i, _getbit(bmp2, i) & _getbit(bmp3, i)); in bitmask_and() 596 const struct bitmask *bmp3) in bitmask_andnot() argument 600 _setbit(bmp1, i, _getbit(bmp2, i) & ~_getbit(bmp3, i)); in bitmask_andnot() 606 const struct bitmask *bmp3) in bitmask_or() argument 610 _setbit(bmp1, i, _getbit(bmp2, i) | _getbit(bmp3, i)); in bitmask_or() 616 const struct bitmask *bmp3) in bitmask_eor() argument 620 _setbit(bmp1, i, _getbit(bmp2, i) ^ _getbit(bmp3, i)); in bitmask_eor()
|