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

/external/skia/include/core/
H A DSkPackBits.h65 /** Unpack the data from src[], skip the first dstSkip bytes, then write
70 @param dstSkip Number of bytes of unpacked src to skip before writing
73 skipping dstSkip bytes)
75 static void Unpack8(uint8_t dst[], size_t dstSkip, size_t dstWrite,
/external/skia/src/core/
H A DSkPackBits.cpp331 void SkPackBits::Unpack8(uint8_t* SK_RESTRICT dst, size_t dstSkip, argument
341 while (dstSkip > 0) {
345 if (n > dstSkip) {
347 stateCount = n - dstSkip;
348 n = dstSkip;
355 if (n > dstSkip) {
357 stateCount = n - dstSkip;
358 n = dstSkip;
362 dstSkip -= n;

Completed in 218 milliseconds