Searched defs:dst (Results 51 - 75 of 165) sorted by relevance

1234567

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Didct_vca.cpp40 void idctrow1(int16 *blk, uint8 *pred, uint8 *dst, int width) argument
50 dst -= width;
71 *((uint32*)(dst += width)) = dst_word; /* save 4 bytes to dst */
85 *((uint32*)(dst += 4)) = dst_word; /* save 4 bytes to dst */
97 void idctrow2(int16 *blk, uint8 *pred, uint8 *dst, int width) argument
106 dst -= width;
139 *((uint32*)(dst += width)) = dst_word; /* save 4 bytes to dst */
185 idctrow3(int16 *blk, uint8 *pred, uint8 *dst, int width) argument
294 idctrow4(int16 *blk, uint8 *pred, uint8 *dst, int width) argument
[all...]
H A Dblock_idct.cpp123 static void idctrow(int16 *blk, uint8 *pred, uint8 *dst, int width);
323 void Copy_Blk_to_Vop(uint8 *dst, uint8 *pred, int width) argument
327 *((uint32*)dst) = *((uint32*)pred);
328 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
329 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
330 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
331 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
332 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
333 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
334 *((uint32*)(dst
348 BlockIDCT( uint8 *dst, uint8 *pred, int16 *coeff_in, int width, int nz_coefs, uint8 *bitmapcol, uint8 bitmaprow ) argument
509 idctrow( int16 *blk, uint8 *pred, uint8 *dst, int width ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp40 Short *dst; local
50 dst = out + 64 ;
51 ColTh = *dst;
108 dst[0] = k0;
109 dst[4] = k1; /* col. 4 */
127 dst[2] = k2; /* col. 2 */
129 dst[6] = k3; /* col. 6 */
151 dst[5] = k4; /* col. 5 */
153 dst[1] = k5; /* col. 1 */
154 dst[
269 Short *dst; local
475 Short *dst; local
654 Short *dst; local
865 Short *dst; local
1052 Short *dst; local
[all...]
H A Dme_utils.cpp220 UChar *src, *dst; local
239 dst = src - (pitch << 4);
241 *((ULong*)(dst - 16)) = temp1;
242 *((ULong*)(dst - 12)) = temp1;
243 *((ULong*)(dst - 8)) = temp1;
244 *((ULong*)(dst - 4)) = temp1;
246 M4VENC_MEMCPY(dst, src, width);
248 *((ULong*)(dst += width)) = temp2;
249 *((ULong*)(dst + 4)) = temp2;
250 *((ULong*)(dst
[all...]
/frameworks/base/core/jni/android/graphics/
H A DNinePatch.cpp98 SkRect dst; local
99 GraphicsJNI::jrect_to_rect(env, dstRect, &dst);
109 SkLatticeIter iter(lattice, dst);
H A DPathMeasure.cpp123 SkPath* dst = reinterpret_cast<SkPath*>(dstHandle); local
124 bool result = pair->fMeasure.getSegment(startF, stopF, dst, startWithMoveTo);
/frameworks/base/graphics/java/android/graphics/
H A DPathMeasure.java112 * Given a start and stop distance, return in dst the intervening
115 * If startD >= stopD then return false (and leave dst untouched).
121 * such as <code>dst.rLineTo(0, 0)</code>.</p>
123 public boolean getSegment(float startD, float stopD, Path dst, boolean startWithMoveTo) { argument
137 return native_getSegment(native_instance, startD, stopD, dst.mutateNI(), startWithMoveTo);
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),
/frameworks/base/tools/aapt/
H A DStringPool.cpp26 void strcpy16_htod(char16_t* dst, const char16_t* src) argument
30 *dst++ = s;
33 *dst = 0;
37 void strcpy16_htod(uint16_t* dst, const char16_t* src) argument
41 *dst++ = s;
44 *dst = 0;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBlendComposite.java200 public abstract int[] blend(int[] src, int[] dst, int[] result); argument
207 public int[] blend(int[] src, int[] dst, int[] result) {
209 result[i] = Math.min(255, src[i] + dst[i]);
217 public int[] blend(int[] src, int[] dst, int[] result) {
219 result[i] = Math.min(src[i], dst[i]);
221 result[3] = Math.min(255, src[3] + dst[3]);
228 public int[] blend(int[] src, int[] dst, int[] result) {
230 result[i] = Math.max(src[i], dst[i]);
232 result[3] = Math.min(255, src[3] + dst[3]);
239 public int[] blend(int[] src, int[] dst, in
[all...]
/frameworks/native/opengl/libagl/
H A Dmipmap.cpp59 uint16_t* dst = (uint16_t*)cur.data; local
74 dst[x + y*stride] = rgb;
82 uint16_t* dst = (uint16_t*)cur.data; local
94 dst[x + y*stride] = (r<<11)|(g<<6)|(b<<1)|a;
102 uint32_t* dst = (uint32_t*)cur.data; local
121 dst[x + y*stride] = rgba;
138 uint8_t* dst = (uint8_t*)cur.data; local
149 dst[x + y*stride + c] = (p00 + p10 + p01 + p11) >> 2;
158 uint16_t* dst = (uint16_t*)cur.data; local
172 dst[
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DCircularBitmapDrawable.java94 final Rect dst) {
95 onDrawCircularBitmap(getBitmap().bmp, canvas, src, dst, 1f);
123 final Rect src, final Rect dst) {
124 onDrawCircularBitmap(bitmap, canvas, src, dst, 1f);
132 final Rect src, final Rect dst, final float alpha) {
142 float scale = Math.max((float) dst.width() / src.width(),
143 (float) dst.height() / src.height());
145 // Translate bitmap to dst bounds.
146 mMatrix.postTranslate(dst.left, dst
93 onDrawBitmap(final Canvas canvas, final Rect src, final Rect dst) argument
122 onDrawCircularBitmap(final Bitmap bitmap, final Canvas canvas, final Rect src, final Rect dst) argument
131 onDrawCircularBitmap(final Bitmap bitmap, final Canvas canvas, final Rect src, final Rect dst, final float alpha) argument
[all...]
/frameworks/av/media/libaudioprocessing/
H A DBufferProviders.cpp276 void DownmixerBufferProvider::copyFrames(void *dst, const void *src, size_t frames) argument
282 mOutBuffer->setExternalData(dst);
283 if (dst != src) {
285 // with the dst data.
288 // may be in-place if src == dst.
353 void RemixBufferProvider::copyFrames(void *dst, const void *src, size_t frames) argument
355 memcpy_by_index_array(dst, mOutputChannels,
374 void ReformatBufferProvider::copyFrames(void *dst, const void *src, size_t frames) argument
376 memcpy_by_audio_format(dst, mOutputFormat, src, mInputFormat, frames * mChannelCount);
539 if (*srcFrames < targetSrc) { // limit dst frame
[all...]
/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/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/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/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp232 void *dst; local
234 buf->handle, GRALLOC_USAGE_SW_WRITE_OFTEN, bounds, &dst));
243 dst,
255 uint8_t *dst_y = (uint8_t *)dst;
287 uint8_t *dst_y = (uint8_t *)dst;
318 uint8_t* dstPtr = (uint8_t*)dst;
333 dstPtr = (uint8_t*)dst + buf->stride * 4 * y;
347 uint8_t* dstPtr = (uint8_t*)dst;
/frameworks/av/media/libstagefright/foundation/
H A DMetaData.cpp248 void *dst = allocateStorage(from.mSize); local
249 if (dst) {
250 memcpy(dst, from.storage(), mSize);
259 void *dst = allocateStorage(from.mSize); local
260 if (dst) {
261 memcpy(dst, from.storage(), mSize);
280 void *dst = allocateStorage(size); local
281 if (dst) {
282 memcpy(dst, data, size);
/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp280 void set(std::unique_ptr<int> &dst, std::unique_ptr<int> &&src) { argument
281 dst = std::move(src);
284 void set(std::unique_ptr<int> &dst, std::unique_ptr<int> &src) { argument
285 dst = std::move(src);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCallbackProcessor.cpp453 uint8_t *dst,
467 uint8_t *yDst = dst;
452 convertFromFlexibleYuv(int32_t previewFormat, uint8_t *dst, const CpuConsumer::LockedBuffer &src, uint32_t dstYStride, uint32_t dstCStride) const argument
/frameworks/base/core/java/android/util/
H A DTimeUtils.java65 public static TimeZone getTimeZone(int offset, boolean dst, long when, String country) { argument
80 if (currentOffset == offset && currentDst == dst) {
92 tz.inDaylightTime(d) == dst) {
/frameworks/base/libs/hwui/
H A DGlop.h165 GLenum dst; member in struct:android::uirenderer::Glop::Blend
H A DGradientCache.cpp189 float amount, uint8_t*& dst) const {
192 *dst++ = uint8_t(OECF(start.r * oppAmount + end.r * amount) * 255.0f);
193 *dst++ = uint8_t(OECF(start.g * oppAmount + end.g * amount) * 255.0f);
194 *dst++ = uint8_t(OECF(start.b * oppAmount + end.b * amount) * 255.0f);
195 *dst++ = uint8_t(a * 255.0f);
199 float amount, uint8_t*& dst) const {
202 float* d = (float*) dst;
214 dst += 4 * sizeof(float);
241 uint8_t* dst = pixels; local
255 (this->*mix)(start, end, amount, dst);
[all...]
H A DVertexBuffer.h95 TYPE* dst = alloc<TYPE>(verticesToCopy); local
99 TYPE::copyWithOffset(&dst[i], src[i], xOffset, yOffset);

Completed in 3100 milliseconds

1234567