Searched defs:bitWidth (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/tests/
H A DPathOpsTightBoundsTest.cpp52 const int bitWidth = 32; local
58 bits.allocN32Pixels(bitWidth, bitHeight);
90 for (int x = 0; x < bitWidth; ++x) {
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libico.cpp240 int bitWidth = w*bitCount; local
241 int test = bitWidth & 0x1F;
243 int lineBitWidth = (bitWidth & 0xFFFFFFE0) + (0x20 & mask);
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp249 int bitWidth = w*bitCount; local
250 int test = bitWidth & 0x1F;
252 int lineBitWidth = (bitWidth & 0xFFFFFFE0) + (0x20 & mask);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeWalker_TestUtility.cpp169 const int bitWidth = 64; variable
183 SkScalar hScale = (bitWidth - 2) / largerWidth;
192 bits.setConfig(SkBitmap::kARGB_8888_Config, bitWidth * 2, bitHeight);
204 canvas.translate(-bounds1.fLeft + 1 + bitWidth, -bounds1.fTop + 1);
212 uint32_t* addr3 = bits.getAddr32(bitWidth, y);
213 uint32_t* addr4 = bits.getAddr32(bitWidth, y + 1);
214 for (int x = 0; x < bitWidth - 1; ++x) {
250 int bitWidth = SkScalarCeil(larger.width()) + 2; local
251 if (bitWidth * 2 + 1 >= (int) sizeof(out)) {
258 bits.setConfig(SkBitmap::kARGB_8888_Config, bitWidth *
355 int bitWidth = SkScalarCeil(larger.width()) + 2; local
[all...]
/external/skia/experimental/Intersection/
H A DEdgeWalker_TestUtility.cpp169 const int bitWidth = 64; variable
183 SkScalar hScale = (bitWidth - 2) / largerWidth;
192 bits.setConfig(SkBitmap::kARGB_8888_Config, bitWidth * 2, bitHeight);
204 canvas.translate(-bounds1.fLeft + 1 + bitWidth, -bounds1.fTop + 1);
212 uint32_t* addr3 = bits.getAddr32(bitWidth, y);
213 uint32_t* addr4 = bits.getAddr32(bitWidth, y + 1);
214 for (int x = 0; x < bitWidth - 1; ++x) {
250 int bitWidth = SkScalarCeil(larger.width()) + 2; local
251 if (bitWidth * 2 + 1 >= (int) sizeof(out)) {
258 bits.setConfig(SkBitmap::kARGB_8888_Config, bitWidth *
355 int bitWidth = SkScalarCeil(larger.width()) + 2; local
[all...]
/external/libpng/contrib/libtests/
H A Dpngvalid.c504 row_copy(png_bytep toBuffer, png_const_bytep fromBuffer, unsigned int bitWidth) argument
506 memcpy(toBuffer, fromBuffer, bitWidth >> 3);
508 if ((bitWidth & 7) != 0)
512 toBuffer += bitWidth >> 3;
513 fromBuffer += bitWidth >> 3;
517 mask = 0xff >> (bitWidth & 7);

Completed in 370 milliseconds