Home
last modified time | relevance | path

Searched refs:bmp3 (Results 1 – 3 of 3) sorted by relevance

/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dbitmask.h194 const struct bitmask *bmp3);
196 const struct bitmask *bmp3);
198 const struct bitmask *bmp3);
200 const struct bitmask *bmp3);
Dlibbitmask.c586 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()
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_test.py5830 bmp3 = io_ops.read_file(os.path.join(base, "rgb_small_255.bmp"))
5832 image4 = image_ops.decode_bmp(bmp3, channels=4)