Home | History | Annotate | Download | only in Intersection

Lines Matching refs:bitWidth

169 const int bitWidth = 64;
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;
251 if (bitWidth * 2 + 1 >= (int) sizeof(out)) {
258 bits.setConfig(SkBitmap::kARGB_8888_Config, bitWidth * 2, bitHeight);
268 canvas.translate(-bounds1.fLeft + 1 + bitWidth, -bounds1.fTop + 1);
275 for (x = 0; x < bitWidth; ++x) {
279 for (x = bitWidth; x < bitWidth * 2; ++x) {
355 int bitWidth = SkScalarCeil(larger.width()) + 2;
357 bits.setConfig(SkBitmap::kA1_Config, bitWidth * 2, bitHeight);
372 uint8_t* addr2 = bits.getAddr1(bitWidth, y);