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

  /external/skia/src/core/
SkConfig8888.h 17 size_t dstRowBytes,
45 size_t dstRowBytes,
55 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, dstConfig8888, srcPixels, srcRowBytes, SkCanvas::kNative_Premul_Config8888, w, h);
70 size_t dstRowBytes = dstBmp.rowBytes();
73 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, SkCanvas::kNative_Premul_Config8888, srcPixels, srcRowBytes, srcConfig8888, w, h);
SkConfig8888.cpp 152 size_t dstRowBytes,
166 dstPix += dstRowBytes;
173 size_t dstRowBytes,
181 convert_config8888<SkCanvas::kNative_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
184 convert_config8888<SkCanvas::kNative_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
187 convert_config8888<SkCanvas::kBGRA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
190 convert_config8888<SkCanvas::kBGRA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
193 convert_config8888<SkCanvas::kRGBA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
196 convert_config8888<SkCanvas::kRGBA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
207 size_t dstRowBytes,
    [all...]
SkBitmap.cpp 468 int dstRowBytes, bool preserveDstPad) const {
470 if (dstRowBytes == -1)
471 dstRowBytes = fRowBytes;
472 SkASSERT(dstRowBytes >= 0);
475 dstRowBytes < ComputeRowBytes(getConfig(), fWidth) ||
479 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
494 if (ComputeSafeSize(getConfig(), fWidth, fHeight, dstRowBytes) >
504 row++, srcP += fRowBytes, dstP += dstRowBytes) {
    [all...]
  /external/skia/legacy/src/core/
SkConfig8888.h 17 size_t dstRowBytes,
41 size_t dstRowBytes,
62 size_t dstRowBytes,
72 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, dstConfig8888, srcPixels, srcRowBytes, SkCanvas::kNative_Premul_Config8888, w, h);
83 size_t dstRowBytes = dstBmp.rowBytes();
86 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, SkCanvas::kNative_Premul_Config8888, srcPixels, srcRowBytes, srcConfig8888, w, h);
SkConfig8888.cpp 151 size_t dstRowBytes,
165 dstPix += dstRowBytes;
172 size_t dstRowBytes,
180 convert_config8888<SkCanvas::kNative_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
183 convert_config8888<SkCanvas::kNative_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
186 convert_config8888<SkCanvas::kBGRA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
189 convert_config8888<SkCanvas::kBGRA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
192 convert_config8888<SkCanvas::kRGBA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
195 convert_config8888<SkCanvas::kRGBA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
206 size_t dstRowBytes,
    [all...]
SkBitmap.cpp 461 int dstRowBytes, bool preserveDstPad) const {
463 if (dstRowBytes == -1)
464 dstRowBytes = fRowBytes;
465 SkASSERT(dstRowBytes >= 0);
468 dstRowBytes < ComputeRowBytes(getConfig(), fWidth) ||
472 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
487 if (ComputeSafeSize(getConfig(), fWidth, fHeight, dstRowBytes) >
497 row++, srcP += fRowBytes, dstP += dstRowBytes) {
    [all...]
  /external/skia/src/utils/
SkBitmapTransformer.cpp 77 size_t dstRowBytes = this->bytesNeededPerRow();
83 dstBytes += dstRowBytes;
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 206 unsigned dstRowBytes = glyph.rowBytes();
207 unsigned minRowBytes = SkMin32(srcRowBytes, dstRowBytes);
208 unsigned extraRowBytes = dstRowBytes - minRowBytes;
214 dst += dstRowBytes;
  /external/skia/src/gpu/
SkGrFontScaler.cpp 121 int dstRowBytes,
133 dst = reinterpret_cast<INT_TYPE*>(reinterpret_cast<intptr_t>(dst) + dstRowBytes);
  /external/skia/include/core/
SkBitmap.h 270 In the case when the dstRowBytes matches the bitmap's rowBytes, the copy
281 @param dstRowBytes Width of each line in the buffer. If -1, uses
285 bool copyPixelsTo(void* const dst, size_t dstSize, int dstRowBytes = -1,
  /external/skia/legacy/include/core/
SkBitmap.h 241 In the case when the dstRowBytes matches the bitmap's rowBytes, the copy
252 @param dstRowBytes Width of each line in the buffer. If -1, uses
256 bool copyPixelsTo(void* const dst, size_t dstSize, int dstRowBytes = -1,
    [all...]
  /external/skia/legacy/src/ports/
SkFontHost_FreeType.cpp     [all...]
  /external/skia/legacy/src/effects/
SkBlurMask.cpp 511 static void clamp_with_orig(uint8_t dst[], int dstRowBytes,
540 dst += dstRowBytes - sw;
  /external/skia/src/effects/
SkBlurMask.cpp 819 static void clamp_with_orig(uint8_t dst[], int dstRowBytes,
848 dst += dstRowBytes - sw;
    [all...]

Completed in 382 milliseconds