/external/chromium_org/third_party/skia/src/effects/ |
SkStippleMaskFilter.cpp | 26 size_t dstSize = dst->computeImageSize(); 27 if (0 == dstSize) { 31 dst->fImage = SkMask::AllocImage(dstSize);
|
SkBlurMask.cpp | 540 size_t dstSize = dst->computeImageSize(); 541 if (0 == dstSize) { 548 uint8_t* dp = SkMask::AllocImage(dstSize); 552 SkAutoTMalloc<uint8_t> tmpBuffer(dstSize); 765 size_t dstSize = dst->computeImageSize(); 766 if (0 == dstSize) { 770 uint8_t* dp = SkMask::AllocImage(dstSize); 902 size_t dstSize = dst->computeImageSize(); 903 if (0 == dstSize) { 912 uint8_t* dstPixels = SkMask::AllocImage(dstSize); [all...] |
/external/skia/src/effects/ |
SkStippleMaskFilter.cpp | 26 size_t dstSize = dst->computeImageSize(); 27 if (0 == dstSize) { 31 dst->fImage = SkMask::AllocImage(dstSize);
|
SkBlurMask.cpp | 540 size_t dstSize = dst->computeImageSize(); 541 if (0 == dstSize) { 548 uint8_t* dp = SkMask::AllocImage(dstSize); 552 SkAutoTMalloc<uint8_t> tmpBuffer(dstSize); 765 size_t dstSize = dst->computeImageSize(); 766 if (0 == dstSize) { 770 uint8_t* dp = SkMask::AllocImage(dstSize); 902 size_t dstSize = dst->computeImageSize(); 903 if (0 == dstSize) { 912 uint8_t* dstPixels = SkMask::AllocImage(dstSize); [all...] |
/external/skia/tests/ |
PackBitsTest.cpp | 37 size_t dstSize = SkPackBits::Pack16(gTests[i].fSrc, 40 int srcCount = SkPackBits::Unpack16(dst, dstSize, src); 52 size_t dstSize = SkPackBits::Pack16(src, size, dst); 54 REPORTER_ASSERT(reporter, maxSize >= dstSize); 56 size_t srcCount = SkPackBits::Unpack16(dst, dstSize, src2); 89 size_t dstSize = SkPackBits::Pack8(gTests[i].fSrc, 91 REPORTER_ASSERT(reporter, dstSize <= maxSize); 93 int srcCount = SkPackBits::Unpack8(dst, dstSize, src); 106 size_t dstSize = SkPackBits::Pack8(src, size, dst); 108 REPORTER_ASSERT(reporter, maxSize >= dstSize); [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkBitmapProcState_procs.h | 91 #define DSTSIZE 32 103 #define DSTSIZE 32 122 #define DSTSIZE 32 138 #define DSTSIZE 32 153 #define DSTSIZE 32 167 #define DSTSIZE 32 184 #define DSTSIZE 32 200 #define DSTSIZE 32 219 #define DSTSIZE 32 244 #define DSTSIZE 1 [all...] |
SkBitmapProcState_sample.h | 10 #if DSTSIZE==32 12 #elif DSTSIZE==16 15 #error "need DSTSIZE to be 32 or 16" 18 #if (DSTSIZE == 32) 20 #elif (DSTSIZE == 16) 23 #error "unsupported DSTSIZE" 228 #undef DSTSIZE
|
/external/skia/src/core/ |
SkBitmapProcState_procs.h | 91 #define DSTSIZE 32 103 #define DSTSIZE 32 122 #define DSTSIZE 32 138 #define DSTSIZE 32 153 #define DSTSIZE 32 167 #define DSTSIZE 32 184 #define DSTSIZE 32 200 #define DSTSIZE 32 219 #define DSTSIZE 32 244 #define DSTSIZE 1 [all...] |
SkBitmapProcState_sample.h | 10 #if DSTSIZE==32 12 #elif DSTSIZE==16 15 #error "need DSTSIZE to be 32 or 16" 18 #if (DSTSIZE == 32) 20 #elif (DSTSIZE == 16) 23 #error "unsupported DSTSIZE" 228 #undef DSTSIZE
|
/frameworks/base/media/jni/ |
android_media_MediaMuxer.cpp | 87 jlong dstSize; 104 dstSize = env->GetArrayLength(byteArray); 106 dstSize = env->GetDirectBufferCapacity(byteBuf); 109 if (dstSize < (offset + size)) { 110 ALOGE("writeSampleData saw wrong dstSize %lld, size %d, offset %d", 111 dstSize, size, offset);
|
android_media_MediaExtractor.cpp | 201 jlong dstSize; 222 dstSize = env->GetArrayLength(byteArray); 224 dstSize = env->GetDirectBufferCapacity(byteBuf); 227 if (dstSize < offset) { 235 sp<ABuffer> buffer = new ABuffer((char *)dst + offset, dstSize - offset);
|
/external/chromium_org/third_party/icu/source/common/ |
unistr_cnv.cpp | 132 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; [all...] |
/external/icu4c/common/ |
unistr_cnv.cpp | 132 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; [all...] |
/external/openssh/ |
loginrec.h | 125 char *line_fullname(char *dst, const char *src, u_int dstsize); 126 char *line_stripname(char *dst, const char *src, int dstsize); 127 char *line_abbrevname(char *dst, const char *src, int dstsize);
|
loginrec.c | 561 line_fullname(char *dst, const char *src, u_int dstsize) 563 memset(dst, '\0', dstsize); 564 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) 565 strlcpy(dst, src, dstsize); 567 strlcpy(dst, "/dev/", dstsize); 568 strlcat(dst, src, dstsize); 575 line_stripname(char *dst, const char *src, int dstsize) 577 memset(dst, '\0', dstsize); 579 strlcpy(dst, src + 5, dstsize); 581 strlcpy(dst, src, dstsize); [all...] |
/external/qemu/android/ |
opengles.c | 179 static void extractBaseString(char* dst, const char* src, size_t dstSize) 185 strncpy_safe(dst, src, dstSize); 195 if (end - begin + 1 > dstSize) { 196 end = begin + dstSize - 1;
|
/external/dropbear/ |
loginrec.c | 407 line_fullname(char *dst, const char *src, size_t dstsize) 409 memset(dst, '\0', dstsize); 410 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) { 411 strlcpy(dst, src, dstsize); 413 strlcpy(dst, "/dev/", dstsize); 414 strlcat(dst, src, dstsize); 421 line_stripname(char *dst, const char *src, size_t dstsize) 423 memset(dst, '\0', dstsize); 425 strlcpy(dst, src + 5, dstsize); 427 strlcpy(dst, src, dstsize); [all...] |
loginrec.h | 181 char *line_fullname(char *dst, const char *src, size_t dstsize); 182 char *line_stripname(char *dst, const char *src, size_t dstsize); 183 char *line_abbrevname(char *dst, const char *src, size_t dstsize);
|
/bionic/libc/netbsd/nameser/ |
ns_samedomain.c | 160 * ns_makecanon(src, dst, dstsize) 171 ns_makecanon(const char *src, char *dst, size_t dstsize) { 174 if (n + sizeof "." > dstsize) { /* Note: sizeof == 2 */
|
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/ |
3dfx_regs.h | 55 #define DSTSIZE (0x00100000 + 0x68)
|
SDL_fb3dfx.c | 82 tdfx_out32(DSTSIZE, rect->w | (rect->h << 16)); 156 tdfx_out32(DSTSIZE, dstrect->w | (dstrect->h << 16));
|
/external/opencv/cv/src/ |
cvutils.cpp | 484 CvSize srcsize, dstsize; local 506 dstsize = cvGetMatSize(dst); 517 dst->data.ptr, dststep, dstsize, 523 dst->data.ptr, dststep, dstsize, 531 dst->data.ptr, dststep, dstsize,
|
/external/opencv/cxcore/src/ |
cxcopy.cpp | 997 CvSize srcsize, dstsize; local [all...] |
/external/clang/lib/CodeGen/ |
CGCall.cpp | 618 /// with an in-memory size smaller than DstSize. 622 uint64_t DstSize, CodeGenFunction &CGF) { 632 if (FirstEltSize < DstSize && 643 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF); 680 uint64_t DstSize = DL.getTypeAllocSizeInBits(DestIntTy); 681 if (SrcSize > DstSize) { 682 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits"); 686 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits"); 717 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty); 720 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF) [all...] |
/frameworks/av/media/libstagefright/matroska/ |
MatroskaExtractor.cpp | 548 size_t dstSize = 0; 595 dstSize = dstOffset; 597 buffer = new MediaBuffer(dstSize);
|