Searched refs:dstSize (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/skia/src/effects/
H A DSkStippleMaskFilter.cpp26 size_t dstSize = dst->computeImageSize(); local
27 if (0 == dstSize) {
31 dst->fImage = SkMask::AllocImage(dstSize);
H A DSkBlurMask.cpp520 size_t dstSize = dst->computeImageSize(); local
521 if (0 == dstSize) {
528 uint8_t* dp = SkMask::AllocImage(dstSize);
532 SkAutoTMalloc<uint8_t> tmpBuffer(dstSize);
751 size_t dstSize = dst->computeImageSize(); local
752 if (0 == dstSize) {
756 uint8_t* dp = SkMask::AllocImage(dstSize);
886 size_t dstSize = dst->computeImageSize(); local
887 if (0 == dstSize) {
896 uint8_t* dstPixels = SkMask::AllocImage(dstSize);
[all...]
/external/skia/src/effects/
H A DSkStippleMaskFilter.cpp26 size_t dstSize = dst->computeImageSize(); local
27 if (0 == dstSize) {
31 dst->fImage = SkMask::AllocImage(dstSize);
H A DSkBlurMask.cpp520 size_t dstSize = dst->computeImageSize(); local
521 if (0 == dstSize) {
528 uint8_t* dp = SkMask::AllocImage(dstSize);
532 SkAutoTMalloc<uint8_t> tmpBuffer(dstSize);
751 size_t dstSize = dst->computeImageSize(); local
752 if (0 == dstSize) {
756 uint8_t* dp = SkMask::AllocImage(dstSize);
886 size_t dstSize = dst->computeImageSize(); local
887 if (0 == dstSize) {
896 uint8_t* dstPixels = SkMask::AllocImage(dstSize);
[all...]
/external/skia/tests/
H A DPackBitsTest.cpp36 size_t dstSize = SkPackBits::Pack16(gTests[i].fSrc, local
39 int srcCount = SkPackBits::Unpack16(dst, dstSize, src);
51 size_t dstSize = SkPackBits::Pack16(src, size, dst); local
53 REPORTER_ASSERT(reporter, maxSize >= dstSize);
55 size_t srcCount = SkPackBits::Unpack16(dst, dstSize, src2);
88 size_t dstSize = SkPackBits::Pack8(gTests[i].fSrc, local
90 REPORTER_ASSERT(reporter, dstSize <= maxSize);
92 int srcCount = SkPackBits::Unpack8(dst, dstSize, src);
105 size_t dstSize = SkPackBits::Pack8(src, size, dst); local
107 REPORTER_ASSERT(reporter, maxSize >= dstSize);
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dunistr_cnv.cpp132 uint32_t dstSize) const {
133 return extract(start, length, target, dstSize, 0);
143 uint32_t dstSize,
147 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
154 // We need to cast dstSize to int32_t for all subsequent code.
156 // Also, dstSize==0xffffffff means "unlimited" but if we use target+dstSize
160 if(dstSize < 0x7fffffff) {
162 capacity = (int32_t)dstSize;
140 extract(int32_t start, int32_t length, char *target, uint32_t dstSize, const char *codepage) const argument
[all...]
H A Dunistr.cpp812 char *target, uint32_t dstSize) const {
814 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
817 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff);
/external/icu4c/common/
H A Dunistr_cnv.cpp132 uint32_t dstSize) const {
133 return extract(start, length, target, dstSize, 0);
143 uint32_t dstSize,
147 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
154 // We need to cast dstSize to int32_t for all subsequent code.
156 // Also, dstSize==0xffffffff means "unlimited" but if we use target+dstSize
160 if(dstSize < 0x7fffffff) {
162 capacity = (int32_t)dstSize;
140 extract(int32_t start, int32_t length, char *target, uint32_t dstSize, const char *codepage) const argument
[all...]
H A Dunistr.cpp858 char *target, uint32_t dstSize) const {
860 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
863 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff);
/external/qemu/android/
H A Dopengles.c179 static void extractBaseString(char* dst, const char* src, size_t dstSize) argument
185 strncpy_safe(dst, src, dstSize);
195 if (end - begin + 1 > dstSize) {
196 end = begin + dstSize - 1;
/external/chromium_org/third_party/skia/include/core/
H A DSkBitmap.h276 @param dstSize Size of destination buffer. Must be large enough to hold
282 bool copyPixelsTo(void* const dst, size_t dstSize, size_t dstRowBytes = 0,
/external/skia/include/core/
H A DSkBitmap.h276 @param dstSize Size of destination buffer. Must be large enough to hold
282 bool copyPixelsTo(void* const dst, size_t dstSize, size_t dstRowBytes = 0,
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmap.cpp467 bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize, argument
480 if (safeSize > dstSize || safeSize == 0)
494 dstSize)
/external/skia/src/core/
H A DSkBitmap.cpp467 bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize, argument
480 if (safeSize > dstSize || safeSize == 0)
494 dstSize)

Completed in 1049 milliseconds