HomeSort by relevance Sort by last modified time
    Searched full:dstsize (Results 26 - 50 of 79) sorted by null

12 3 4

  /external/chromium_org/third_party/skia/src/gpu/
SkGpuDevice.cpp     [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp     [all...]
  /frameworks/base/media/jni/
android_media_MediaExtractor.cpp 208 size_t dstSize;
229 dstSize = (size_t) env->GetArrayLength(byteArray);
231 dstSize = (size_t) env->GetDirectBufferCapacity(byteBuf);
234 if (dstSize < offset) {
242 sp<ABuffer> buffer = new ABuffer((char *)dst + offset, dstSize - offset);
  /frameworks/av/media/libstagefright/omx/
SoftVideoEncoderOMXComponent.cpp 478 uint8_t *dst, size_t dstSize,
538 if (dstSize < neededSize) {
539 ALOGE("destination buffer is too small (%zu vs %zu)", dstSize, neededSize);
  /external/clang/lib/CodeGen/
CGCall.cpp 659 /// with an in-memory size smaller than DstSize.
663 uint64_t DstSize, CodeGenFunction &CGF) {
673 if (FirstEltSize < DstSize &&
684 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
721 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
723 if (SrcSize > DstSize) {
724 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
728 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
759 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
762 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF)
    [all...]
  /external/libnl/lib/
attr.c 712 * @arg dstsize Size of destination buffer in bytes.
714 * Copies at most dstsize - 1 bytes to the destination buffer.
720 size_t nla_strlcpy(char *dst, const struct nlattr *nla, size_t dstsize)
728 if (dstsize > 0) {
729 size_t len = (srclen >= dstsize) ? dstsize - 1 : srclen;
731 memset(dst, 0, dstsize);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 401 float calculateLod (const Vec2& texScale, const Vec2& dstSize, int textureNdx) const;
539 float Vertex2DTextureCase::calculateLod (const Vec2& texScale, const Vec2& dstSize, int textureNdx) const
543 const Vec2 sizeRatio = texScale*srcSize / dstSize;
704 float calculateLod (const Vec2& texScale, const Vec2& dstSize, int textureNdx) const;
857 float VertexCubeTextureCase::calculateLod (const Vec2& texScale, const Vec2& dstSize, int textureNdx) const
861 const Vec2 sizeRatio = texScale*srcSize / dstSize;
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 616 size_t dstSize = 0;
663 dstSize = dstOffset;
665 buffer = new MediaBuffer(dstSize);
  /frameworks/native/cmds/installd/
utils.c 1024 const size_t dstSize = dst->len + 1;
1025 dst->path = (char*) malloc(dstSize);
1028 || snprintf(dst->path, dstSize, "%s%s", src->path, suffix)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
InstCombineShifts.cpp 382 unsigned DstSize = TI->getType()->getScalarSizeInBits();
383 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
AutoScrollHelper.java 538 int direction, float coordinate, float srcSize, float dstSize) {
550 final float targetVelocity = relativeVelocity * dstSize;
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unistr.cpp 854 char *target, uint32_t dstSize) const {
856 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
859 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff);
    [all...]
  /external/icu/icu4c/source/common/
unistr.cpp 854 char *target, uint32_t dstSize) const {
856 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
859 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff);
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Renderer9.cpp     [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmap.cpp 433 bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize,
447 if (safeSize > dstSize || safeSize == 0)
460 if (fInfo.getSafeSize(dstRowBytes) > dstSize) {
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 493 bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize,
507 if (safeSize > dstSize || safeSize == 0)
520 if (fInfo.getSafeSize(dstRowBytes) > dstSize) {
    [all...]
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device_aura.cc 404 yuv_readback_pipeline_->scaler()->DstSize() != region_in_frame.size()) {
  /external/chromium_org/content/common/gpu/client/
gl_helper.h 289 virtual const gfx::Size& DstSize() = 0;
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 328 @param dstSize Size of destination buffer. Must be large enough to hold
334 bool copyPixelsTo(void* const dst, size_t dstSize, size_t dstRowBytes = 0,
    [all...]
  /external/skia/include/core/
SkBitmap.h 376 @param dstSize Size of destination buffer. Must be large enough to hold
382 bool copyPixelsTo(void* const dst, size_t dstSize, size_t dstRowBytes = 0,
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AutoScrollHelper.java 537 int direction, float coordinate, float srcSize, float dstSize) {
549 final float targetVelocity = relativeVelocity * dstSize;
    [all...]
  /external/opencv/cxcore/src/
cxmatmul.cpp     [all...]
cxmatrix.cpp 1401 CvSize dstsize = cvGetMatSize( dst ); local
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 618 uint64_t DstSize =
628 LinkFromSrc = SrcSize > DstSize;
630 if (SrcSize != DstSize)
    [all...]

Completed in 3018 milliseconds

12 3 4