/external/skia/tests/ |
D | PackBitsTest.cpp | 37 size_t dstSize = SkPackBits::Pack16(gTests[i].fSrc, in test_pack16() local 40 int srcCount = SkPackBits::Unpack16(dst, dstSize, src); in test_pack16() 52 size_t dstSize = SkPackBits::Pack16(src, size, dst); in test_pack16() local 54 REPORTER_ASSERT(reporter, maxSize >= dstSize); in test_pack16() 56 size_t srcCount = SkPackBits::Unpack16(dst, dstSize, src2); in test_pack16() 89 size_t dstSize = SkPackBits::Pack8(gTests[i].fSrc, in test_pack8() local 91 REPORTER_ASSERT(reporter, dstSize <= maxSize); in test_pack8() 93 int srcCount = SkPackBits::Unpack8(dst, dstSize, src); in test_pack8() 106 size_t dstSize = SkPackBits::Pack8(src, size, dst); in test_pack8() local 108 REPORTER_ASSERT(reporter, maxSize >= dstSize); in test_pack8() [all …]
|
/external/skia/src/effects/ |
D | SkStippleMaskFilter.cpp | 26 size_t dstSize = dst->computeImageSize(); in filterMask() local 27 if (0 == dstSize) { in filterMask() 31 dst->fImage = SkMask::AllocImage(dstSize); in filterMask()
|
D | SkBlurMask.cpp | 540 size_t dstSize = dst->computeImageSize(); in BoxBlur() local 541 if (0 == dstSize) { in BoxBlur() 548 uint8_t* dp = SkMask::AllocImage(dstSize); in BoxBlur() 552 SkAutoTMalloc<uint8_t> tmpBuffer(dstSize); in BoxBlur() 765 size_t dstSize = dst->computeImageSize(); in BlurRect() local 766 if (0 == dstSize) { in BlurRect() 770 uint8_t* dp = SkMask::AllocImage(dstSize); in BlurRect() 902 size_t dstSize = dst->computeImageSize(); in BlurGroundTruth() local 903 if (0 == dstSize) { in BlurGroundTruth() 912 uint8_t* dstPixels = SkMask::AllocImage(dstSize); in BlurGroundTruth()
|
/external/chromium_org/third_party/skia/src/effects/ |
D | SkStippleMaskFilter.cpp | 26 size_t dstSize = dst->computeImageSize(); in filterMask() local 27 if (0 == dstSize) { in filterMask() 31 dst->fImage = SkMask::AllocImage(dstSize); in filterMask()
|
D | SkBlurMask.cpp | 540 size_t dstSize = dst->computeImageSize(); in BoxBlur() local 541 if (0 == dstSize) { in BoxBlur() 548 uint8_t* dp = SkMask::AllocImage(dstSize); in BoxBlur() 552 SkAutoTMalloc<uint8_t> tmpBuffer(dstSize); in BoxBlur() 765 size_t dstSize = dst->computeImageSize(); in BlurRect() local 766 if (0 == dstSize) { in BlurRect() 770 uint8_t* dp = SkMask::AllocImage(dstSize); in BlurRect() 902 size_t dstSize = dst->computeImageSize(); in BlurGroundTruth() local 903 if (0 == dstSize) { in BlurGroundTruth() 912 uint8_t* dstPixels = SkMask::AllocImage(dstSize); in BlurGroundTruth()
|
/external/chromium_org/third_party/icu/source/common/ |
D | unistr_cnv.cpp | 132 uint32_t dstSize) const { in extract() 133 return extract(start, length, target, dstSize, 0); in extract() 143 uint32_t dstSize, in extract() argument 147 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) { in extract() 160 if(dstSize < 0x7fffffff) { in extract() 162 capacity = (int32_t)dstSize; in extract()
|
D | unistr.cpp | 812 char *target, uint32_t dstSize) const { in extract() 814 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) { in extract() 817 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff); in extract()
|
/external/icu4c/common/ |
D | unistr_cnv.cpp | 132 uint32_t dstSize) const { in extract() 133 return extract(start, length, target, dstSize, 0); in extract() 143 uint32_t dstSize, in extract() argument 147 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) { in extract() 160 if(dstSize < 0x7fffffff) { in extract() 162 capacity = (int32_t)dstSize; in extract()
|
D | unistr.cpp | 858 char *target, uint32_t dstSize) const { in extract() 860 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) { in extract() 863 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff); in extract()
|
/external/qemu/android/ |
D | opengles.c | 179 static void extractBaseString(char* dst, const char* src, size_t dstSize) in extractBaseString() argument 185 strncpy_safe(dst, src, dstSize); in extractBaseString() 195 if (end - begin + 1 > dstSize) { in extractBaseString() 196 end = begin + dstSize - 1; in extractBaseString()
|
/external/skia/include/core/ |
D | SkBitmap.h | 290 bool copyPixelsTo(void* const dst, size_t dstSize, size_t dstRowBytes = 0,
|
/external/chromium_org/third_party/skia/include/core/ |
D | SkBitmap.h | 290 bool copyPixelsTo(void* const dst, size_t dstSize, size_t dstRowBytes = 0,
|
/external/skia/src/core/ |
D | SkBitmap.cpp | 565 bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize, in copyPixelsTo() argument 578 if (safeSize > dstSize || safeSize == 0) in copyPixelsTo() 592 dstSize) in copyPixelsTo()
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkBitmap.cpp | 565 bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize, in copyPixelsTo() argument 578 if (safeSize > dstSize || safeSize == 0) in copyPixelsTo() 592 dstSize) in copyPixelsTo()
|