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

  /external/skia/src/core/
SkCanvasPriv.cpp 44 int flagCount = buffer.readInt();
47 if (flagCount) {
48 lattice->fRectTypes = buffer.skipT<SkCanvas::Lattice::RectType>(flagCount);
49 lattice->fColors = buffer.skipT<SkColor>(flagCount);
56 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0;
59 SkAlign4(flagCount * sizeof(SkCanvas::Lattice::RectType)) +
60 SkAlign4(flagCount * sizeof(SkColor)) +
69 writer.write32(flagCount);
70 writer.writePad(lattice.fRectTypes, flagCount * sizeof(uint8_t));
71 writer.write(lattice.fColors, flagCount * sizeof(SkColor))
    [all...]
SkRecorder.cpp 241 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0;
246 flagCount, this->copy(lattice.fRectTypes, flagCount),
247 this->copy(lattice.fColors, flagCount), *lattice.fBounds, dst);
  /external/skqp/src/core/
SkCanvasPriv.cpp 44 int flagCount = buffer.readInt();
47 if (flagCount) {
48 lattice->fRectTypes = buffer.skipT<SkCanvas::Lattice::RectType>(flagCount);
49 lattice->fColors = buffer.skipT<SkColor>(flagCount);
56 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0;
59 SkAlign4(flagCount * sizeof(SkCanvas::Lattice::RectType)) +
60 SkAlign4(flagCount * sizeof(SkColor)) +
69 writer.write32(flagCount);
70 writer.writePad(lattice.fRectTypes, flagCount * sizeof(uint8_t));
71 writer.write(lattice.fColors, flagCount * sizeof(SkColor))
    [all...]
SkRecorder.cpp 241 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0;
246 flagCount, this->copy(lattice.fRectTypes, flagCount),
247 this->copy(lattice.fColors, flagCount), *lattice.fBounds, dst);
  /frameworks/opt/net/lowpan/libandroid_net_lowpan/
LowpanBeaconInfo.cpp 169 int32_t flagCount = 0;
171 RETURN_IF_FAILED(parcel->readInt32(&flagCount));
173 if (flagCount < 0) {
180 while (flagCount--) {
  /external/skia/tools/debugger/
SkDrawCommand.cpp     [all...]
  /external/skqp/tools/debugger/
SkDrawCommand.cpp     [all...]

Completed in 515 milliseconds