Searched refs:snugRB (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkBitmap.cpp1162 buffer->writeUInt(0); // instead of snugRB, signaling no pixels
1166 const size_t snugRB = info.width() * info.bytesPerPixel(); local
1170 buffer->write32(SkToU32(snugRB));
1173 const size_t size = snugRB * info.height();
1177 memcpy(dst, src, snugRB);
1178 dst += snugRB;
1193 const size_t snugRB = buffer->readUInt(); local
1194 if (0 == snugRB) { // no pixels
1208 const size_t snugSize = snugRB * height;
1219 const char* srcRow = dst + snugRB * (heigh
[all...]
/external/skia/src/core/
H A DSkBitmap.cpp1217 buffer->writeUInt(0); // instead of snugRB, signaling no pixels
1221 const size_t snugRB = info.width() * info.bytesPerPixel(); local
1225 buffer->write32(SkToU32(snugRB));
1228 const size_t size = snugRB * info.height();
1232 memcpy(dst, src, snugRB);
1233 dst += snugRB;
1248 const size_t snugRB = buffer->readUInt(); local
1249 if (0 == snugRB) { // no pixels
1258 const size_t snugSize = snugRB * height;
1269 const char* srcRow = dst + snugRB * (heigh
[all...]

Completed in 452 milliseconds