Searched refs:dst (Results 151 - 164 of 164) sorted by relevance

1234567

/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp538 int16_t *dst = (int16_t *)track->sharedBuffer()->pointer(); local
541 *dst++ = (int16_t)(*src++^0x80) << 8;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java757 /*package*/ static boolean native_getFillPath(int native_object, int src, int dst) { argument
768 Path_Delegate dstPath = Path_Delegate.getDelegate(dst);
H A DBitmap_Delegate.java443 /*package*/ static void nativeCopyPixelsToBuffer(int nativeBitmap, Buffer dst) { argument
/frameworks/native/opengl/libagl/
H A Degl.cpp332 ANativeWindowBuffer* dst, void* dst_vaddr,
456 ANativeWindowBuffer* dst, void* dst_vaddr,
460 // NOTE: dst and src must be the same format
466 const size_t dbpr = dst->stride * bpp;
479 uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
455 copyBlt( ANativeWindowBuffer* dst, void* dst_vaddr, ANativeWindowBuffer* src, void const* src_vaddr, const Region& clip) argument
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp1986 sp<ABuffer> *dst, size_t offset, uint64_t size) const {
1990 *dst = buf;
1985 copyBuffer( sp<ABuffer> *dst, size_t offset, uint64_t size) const argument
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp165 void (*mOptKernel)(void *dst, const void *src, const short *coef, uint32_t count);
H A DrsCpuIntrinsicConvolve3x3.cpp87 extern "C" void rsdIntrinsicConvolve3x3_K(void *dst, const void *y0, const void *y1,
H A DrsCpuIntrinsicConvolve5x5.cpp345 extern "C" void rsdIntrinsicConvolve5x5_K(void *dst, const void *y0, const void *y1,
H A DrsCpuIntrinsics_neon.S23 r0 = dst
250 Function called with the following arguments: dst, Y, vu, len, YuvCoeff
251 r0 = dst
331 vst4.8 {d0, d1, d2, d3}, [r0]! @ Writing out 8 RGBA values to dst (r0)
341 Function called with the following arguments: dst, Y, vu, len, YuvCoeff
342 r0 = dst
422 vst4.8 {d0, d1, d2, d3}, [r0]! @ Writing out 8 RGBA values to dst (r0)
432 Function called with the following arguments: dst, Y, v, u, len, YuvCoeff
433 r0 = dst
516 vst4.8 {d0, d1, d2, d3}, [r0]! @ Writing out 8 RGBA values to dst (r
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp82 // NOTE: if this truncates the dst string due to running out of space, no attempt is
84 static void strcpy16_dtoh(uint16_t* dst, const uint16_t* src, size_t avail) argument
86 uint16_t* last = dst + avail - 1;
87 while (*src && (dst < last)) {
89 *dst++ = s;
92 *dst = 0;
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7904 ContentProviderRecord dst = r.pubProviders.get(src.info.name);
7906 Slog.v(TAG_MU, "ContentProviderRecord uid = " + dst.uid);
7907 if (dst != null) {
7908 ComponentName comp = new ComponentName(dst.info.packageName, dst.info.name);
7909 mProviderMap.putProviderByClass(comp, dst);
7910 String names[] = dst.info.authority.split(";");
7912 mProviderMap.putProviderByName(names[j], dst);
7918 if (mLaunchingProviders.get(j) == dst) {
7924 synchronized (dst) {
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java643 RectF dst = new RectF(width - iconWidth + backgroundPadding.left,
648 matrix.setRectToRect(src, dst, Matrix.ScaleToFit.FILL);
/frameworks/av/services/audioflinger/
H A DThreads.cpp4514 int8_t *dst = buffer.i8 + (buffer.frameCount - framesOut) * local
4521 memcpy(dst, src, framesIn * mFrameSize);
4524 upmix_to_stereo_i16_from_mono_i16((int16_t *)dst,
4527 downmix_to_mono_i16_from_stereo_i16((int16_t *)dst,
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp65 GLenum dst; member in struct:android::uirenderer::Blender
2357 // Skia handles the ratio between the dst and src rects as a scale factor
3584 GLenum destMode = swapSrcDst ? gBlendsSwap[mode].dst : gBlends[mode].dst;

Completed in 796 milliseconds

1234567