Searched refs:dst (Results 126 - 150 of 219) sorted by relevance

123456789

/frameworks/av/media/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h82 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
/frameworks/base/graphics/java/android/graphics/
H A DRectF.java439 * Set the dst integer Rect by rounding this rectangle's coordinates
442 public void round(Rect dst) { argument
443 dst.set(FastMath.round(left), FastMath.round(top),
448 * Set the dst integer Rect by rounding "out" this rectangle, choosing the
451 public void roundOut(Rect dst) { argument
452 dst.set((int) Math.floor(left), (int) Math.floor(top),
H A DBitmap.java510 public void copyPixelsToBuffer(Buffer dst) { argument
511 int elements = dst.remaining();
513 if (dst instanceof ByteBuffer) {
515 } else if (dst instanceof ShortBuffer) {
517 } else if (dst instanceof IntBuffer) {
530 nativeCopyPixelsToBuffer(mNativePtr, dst);
533 int position = dst.position();
535 dst.position(position);
1718 Buffer dst);
1717 nativeCopyPixelsToBuffer(long nativeBitmap, Buffer dst) argument
H A DRegion.java225 * Set the dst region to the result of translating this region by [dx, dy].
226 * If this region is empty, then dst will be set to empty.
228 public native void translate(int dx, int dy, Region dst); argument
244 * Set the dst region to the result of scaling this region by the given scale amount.
245 * If this region is empty, then dst will be set to empty.
248 public native void scale(float scale, Region dst); argument
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicYuvToRGB.cpp100 extern "C" void rsdIntrinsicYuv_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend);
101 extern "C" void rsdIntrinsicYuvR_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend);
102 extern "C" void rsdIntrinsicYuv2_K(void *dst, const uchar *Y, const uchar *u, const uchar *v, size_t xstart, size_t xend);
/frameworks/rs/
H A DrsAllocation.cpp371 uint8_t *dst, const uint8_t *src, bool dstPadded) {
384 memcpy(dst, src, unpaddedBytes);
386 dst += dstInc;
408 memcpy(dst + dstOffsets[fI], src + srcOffsets[fI], sizeUnpadded[fI]);
411 dst += dstInc;
421 uint8_t *dst = (uint8_t *)rsc->mHal.funcs.allocation.lock1D(rsc, this); local
423 writePackedData(rsc, getType(), dst, src, true);
433 uint8_t *dst = new uint8_t[numItems * unpaddedBytes]; local
435 writePackedData(rsc, getType(), dst, src, false);
436 stream->addByteArray(dst, getPackedSiz
370 writePackedData(Context *rsc, const Type *type, uint8_t *dst, const uint8_t *src, bool dstPadded) argument
871 Allocation *dst = static_cast<Allocation *>(dstAlloc); local
888 Allocation *dst = static_cast<Allocation *>(dstAlloc); local
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dslice.cpp514 uint32 *dst, *dst2, *src; local
516 dst = (uint32*)curL;
523 *dst++ = *src++;
524 *dst++ = *src++;
525 *dst++ = *src++;
526 *dst++ = *src++;
528 dst += offset;
531 dst = (uint32*)curCb;
537 *dst++ = *src++;
538 *dst
[all...]
/frameworks/base/tools/aapt/
H A DZipFile.cpp428 long dst = ftell(mZipFp) - startPosn; local
429 if (dst + (dst / 10) > src) {
430 ALOGD("insufficient compression (src=%ld dst=%ld), storing\n",
431 src, dst);
640 * Copy all of the bytes in "src" to "dst".
671 * Copy all of the bytes in "src" to "dst".
691 * Copy some of the bytes in "src" to "dst".
1046 status_t ZipFile::filemove(FILE* fp, off_t dst, off_t src, size_t n) argument
1048 if (dst
[all...]
H A DStringPool.cpp30 void strcpy16_htod(char16_t* dst, const char16_t* src) argument
34 *dst++ = s;
37 *dst = 0;
41 void strcpy16_htod(uint16_t* dst, const char16_t* src) argument
45 *dst++ = s;
48 *dst = 0;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_MCReconBlock_s.s620 dst RN 1 label
687 LDR dst, [pDst] ;// dst = [dcba]
691 UXTB16 tmp1, dst ;// tmp1 = [0c0a]
692 UXTB16 tmp2, dst, ROR #8 ;// tmp2 = [0d0b]
700 LDR dst, [pDst]
704 UXTB16 tmp1, dst
705 UXTB16 tmp2, dst, ROR #8
/frameworks/av/services/audioflinger/
H A DBufferProviders.cpp235 void DownmixerBufferProvider::copyFrames(void *dst, const void *src, size_t frames) argument
240 mDownmixConfig.outputCfg.buffer.raw = dst;
241 // may be in-place if src == dst.
298 void RemixBufferProvider::copyFrames(void *dst, const void *src, size_t frames) argument
300 memcpy_by_index_array(dst, mOutputChannels,
319 void ReformatBufferProvider::copyFrames(void *dst, const void *src, size_t frames) argument
321 memcpy_by_audio_format(dst, mOutputFormat, src, mInputFormat, frames * mChannelCount);
481 if (*srcFrames < targetSrc) { // limit dst frames to that possible
/frameworks/base/libs/hwui/
H A DSkiaCanvasProxy.cpp128 const SkRect& dst, const SkPaint* paint, SrcRectConstraint) {
132 dst.fLeft, dst.fTop, dst.fRight, dst.fBottom, paint);
136 const SkRect& dst, const SkPaint*) {
127 onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* srcPtr, const SkRect& dst, const SkPaint* paint, SrcRectConstraint) argument
135 onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, const SkPaint*) argument
/frameworks/base/core/java/android/util/
H A DTimeUtils.java66 public static TimeZone getTimeZone(int offset, boolean dst, long when, String country) { argument
81 if (currentOffset == offset && currentDst == dst) {
93 tz.inDaylightTime(d) == dst) {
/frameworks/av/camera/ndk/impl/
H A DACameraManager.cpp381 char* dst = new char[dstSize]; local
382 if (!dst) {
386 strlcpy(dst, src, dstSize);
387 out->cameraIds[i] = dst;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRegion_Delegate.java223 /*package*/ static void translate(Region thisRegion, int dx, int dy, Region dst) { argument
229 Region_Delegate targetRegionDelegate = sManager.getDelegate(dst.mNativeRegion);
245 /*package*/ static void scale(Region thisRegion, float scale, Region dst) { argument
251 Region_Delegate targetRegionDelegate = sManager.getDelegate(dst.mNativeRegion);
/frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
H A DAMRWB_E_SAMPLE.c65 int GetNextBuf(FILE* inFile,unsigned char* dst,int size) argument
67 int size2 = (int)fread(dst, sizeof(signed char), size,inFile);
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp160 uint8_t *dst = outHeader->pBuffer; local
167 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);
/frameworks/base/libs/hwui/tests/unit/
H A DGlopBuilderTests.cpp54 EXPECT_EQ(expectedBlend.dst, builtBlend.dst);
/frameworks/base/rs/java/android/renderscript/
H A DProgramStore.java392 * @param dst specifies how the destination blending factor is
397 public Builder setBlendFunc(BlendSrcFunc src, BlendDstFunc dst) { argument
399 mBlendDst = dst;
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp123 void *dst = ::mmap64(NULL, mapSize, PROT_WRITE, MAP_SHARED, fd, alignedOff); local
124 if (dst == MAP_FAILED) {
129 serializeInto((uint8_t*) dst + pageOff);
130 ::msync(dst, mapSize, MS_SYNC);
131 return ::munmap(dst, mapSize);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java852 private void mapRect(AffineTransform matrix, RectF dst, RectF src) { argument
865 dst.left = Math.min(Math.min(corners[0], corners[2]), Math.min(corners[4], corners[6]));
866 dst.right = Math.max(Math.max(corners[0], corners[2]), Math.max(corners[4], corners[6]));
868 dst.top = Math.min(Math.min(corners[1], corners[3]), Math.min(corners[5], corners[7]));
869 dst.bottom = Math.max(Math.max(corners[1], corners[3]), Math.max(corners[5], corners[7]));
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp338 LVM_INT32 *dst,
343 dst += ((n*2)-1);
347 *dst = *src;
348 dst--;
350 *dst = *src;
351 dst--;
367 LVM_INT32 *dst,
381 *dst = Temp;
382 dst++;
337 MonoTo2I_32( const LVM_INT32 *src, LVM_INT32 *dst, LVM_INT16 n) argument
366 From2iToMono_32( const LVM_INT32 *src, LVM_INT32 *dst, LVM_INT16 n) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.cpp265 uint8_t *dst = outHeader->pBuffer + outHeader->nOffset; local
272 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31Ext.spec20 void glBlendFunciEXT ( GLuint buf, GLenum src, GLenum dst )
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DBasicBitmapDrawable.java417 protected void onDrawBitmap(final Canvas canvas, final Rect src, final Rect dst) { argument
419 canvas.drawBitmap(mBitmap.bmp, src, dst, mPaint);

Completed in 488 milliseconds

123456789