OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstSkip
(Results
1 - 5
of
5
) sorted by null
/external/skia/include/core/
SkPackBits.h
65
/** 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/legacy/include/core/
SkPackBits.h
65
/** 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/legacy/src/core/
SkPackBits.cpp
331
void SkPackBits::Unpack8(uint8_t* SK_RESTRICT dst, size_t
dstSkip
,
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;
/external/skia/src/core/
SkPackBits.cpp
331
void SkPackBits::Unpack8(uint8_t* SK_RESTRICT dst, size_t
dstSkip
,
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;
/external/webkit/Source/WebCore/platform/graphics/wince/
ImageBufferWinCE.cpp
150
int
dstSkip
= (rect.width() - sourceRect.width()) * 4;
174
dst +=
dstSkip
;
207
int
dstSkip
= (bitmap->width() - destRect.width()) * 4;
231
dst +=
dstSkip
;
Completed in 701 milliseconds