Searched refs:bmp2 (Results 1 – 3 of 3) sorted by relevance
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
D | bitmask.h | 156 struct bitmask *bitmask_copy(struct bitmask *bmp1, const struct bitmask *bmp2); 174 int bitmask_equal(const struct bitmask *bmp1, const struct bitmask *bmp2); 175 int bitmask_subset(const struct bitmask *bmp1, const struct bitmask *bmp2); 176 int bitmask_disjoint(const struct bitmask *bmp1, const struct bitmask *bmp2); 177 int bitmask_intersects(const struct bitmask *bmp1, const struct bitmask *bmp2); 187 const struct bitmask *bmp2); 189 const struct bitmask *bmp2, unsigned int n); 191 const struct bitmask *bmp2, unsigned int n); 193 struct bitmask *bitmask_and(struct bitmask *bmp1,const struct bitmask *bmp2, 195 struct bitmask *bitmask_andnot(struct bitmask *bmp1, const struct bitmask *bmp2, [all …]
|
D | libbitmask.c | 352 struct bitmask *bitmask_copy(struct bitmask *bmp1, const struct bitmask *bmp2) in bitmask_copy() argument 356 _setbit(bmp1, i, _getbit(bmp2, i)); in bitmask_copy() 474 int bitmask_equal(const struct bitmask *bmp1, const struct bitmask *bmp2) in bitmask_equal() argument 477 for (i = 0; i < bmp1->size || i < bmp2->size; i++) in bitmask_equal() 478 if (_getbit(bmp1, i) != _getbit(bmp2, i)) in bitmask_equal() 484 int bitmask_subset(const struct bitmask *bmp1, const struct bitmask *bmp2) in bitmask_subset() argument 488 if (_getbit(bmp1, i) > _getbit(bmp2, i)) in bitmask_subset() 494 int bitmask_disjoint(const struct bitmask *bmp1, const struct bitmask *bmp2) in bitmask_disjoint() argument 498 if (_getbit(bmp1, i) & _getbit(bmp2, i)) in bitmask_disjoint() 504 int bitmask_intersects(const struct bitmask *bmp1, const struct bitmask *bmp2) in bitmask_intersects() argument [all …]
|
/external/pdfium/xfa/fxgraphics/ |
D | cfx_graphics.cpp | 336 std::unique_ptr<CFX_DIBitmap> bmp2 = bmp1->FlipImage(false, true); in RenderDeviceStretchImage() local 337 std::unique_ptr<CFX_DIBitmap> bmp3 = bmp2->TransformTo(&m2, left, top); in RenderDeviceStretchImage() 516 std::unique_ptr<CFX_DIBitmap> bmp2 = bmp1->TransformTo(&m, left, top); in SetDIBitsWithMatrix() local 517 m_renderDevice->SetDIBits(bmp2.get(), left, top); in SetDIBitsWithMatrix()
|