Home | History | Annotate | Download | only in libtests

Lines Matching refs:bitWidth

624 row_copy(png_bytep toBuffer, png_const_bytep fromBuffer, unsigned int bitWidth,
627 memcpy(toBuffer, fromBuffer, bitWidth >> 3);
629 if ((bitWidth & 7) != 0)
633 toBuffer += bitWidth >> 3;
634 fromBuffer += bitWidth >> 3;
636 mask = 0xff << (bitWidth & 7);
638 mask = 0xff >> (bitWidth & 7);