Home | History | Annotate | Download | only in libtests

Lines Matching refs:bitWidth

621 row_copy(png_bytep toBuffer, png_const_bytep fromBuffer, unsigned int bitWidth,
624 memcpy(toBuffer, fromBuffer, bitWidth >> 3);
626 if ((bitWidth & 7) != 0)
630 toBuffer += bitWidth >> 3;
631 fromBuffer += bitWidth >> 3;
633 mask = 0xff << (bitWidth & 7);
635 mask = 0xff >> (bitWidth & 7);