HomeSort by relevance Sort by last modified time
    Searched refs:bitWidth (Results 1 - 7 of 7) sorted by null

  /external/skia/tests/
PathOpsTightBoundsTest.cpp 51 const int bitWidth = 32;
57 bits.allocN32Pixels(bitWidth, bitHeight);
89 for (int x = 0; x < bitWidth; ++x) {
PathOpsExtendedTest.cpp 167 const int bitWidth = 64;
181 SkScalar hScale = (bitWidth - 2) / largerWidth;
199 bits.allocN32Pixels(bitWidth * 2, bitHeight);
210 canvas.translate(-bounds1.fLeft + 1 + bitWidth, -bounds1.fTop + 1);
218 uint32_t* addr3 = bits.getAddr32(bitWidth, y);
219 uint32_t* addr4 = bits.getAddr32(bitWidth, y + 1);
220 for (int x = 0; x < bitWidth - 1; ++x) {
253 int bitWidth = SkScalarCeilToInt(larger.width()) + 2;
254 if (bitWidth * 2 + 1 >= (int) sizeof(out)) {
261 bits.allocN32Pixels(bitWidth * 2, bitHeight)
    [all...]
  /external/skia/src/pathops/
SkPathOpsOp.cpp 348 const int bitWidth = 64;
362 SkScalar hScale = (bitWidth - 2) / largerWidth;
379 bits.allocN32Pixels(bitWidth * 2, bitHeight);
390 canvas.translate(-bounds1.fLeft + 1 + bitWidth, -bounds1.fTop + 1);
397 uint32_t* addr3 = bits.getAddr32(bitWidth, y);
398 uint32_t* addr4 = bits.getAddr32(bitWidth, y + 1);
399 for (int x = 0; x < bitWidth - 1; ++x) {
  /external/skia/src/images/
SkImageDecoder_libico.cpp 234 int bitWidth = w*bitCount;
235 int test = bitWidth & 0x1F;
237 int lineBitWidth = (bitWidth & 0xFFFFFFE0) + (0x20 & mask);
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 100 unsigned Indentation, unsigned BitWidth,
331 unsigned BitWidth;
347 BitWidth(BW), Emitter(E) {
358 Parent(&parent), BestIndex(-1), BitWidth(parent.BitWidth),
363 unsigned getBitWidth() const { return BitWidth; }
378 for (unsigned i = 0; i < BitWidth; ++i) {
501 assert(StartBit + NumBits - 1 < Owner->BitWidth);
698 unsigned BitWidth,
701 << BitWidth << "[] = {\n"
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 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);
    [all...]

Completed in 1631 milliseconds