Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 10 of 10) sorted by relevance

/hardware/msm7k/libcopybit/
Dcopybit.cpp159 const struct copybit_rect_t *dst, in set_rects() argument
163 intersect(&clip, scissor, dst); in set_rects()
172 e->src_rect.x = (clip.t - dst->t) + src->t; in set_rects()
173 e->src_rect.y = (dst->r - clip.r) + src->l; in set_rects()
176 W = dst->b - dst->t; in set_rects()
177 H = dst->r - dst->l; in set_rects()
179 e->src_rect.x = (clip.l - dst->l) + src->l; in set_rects()
180 e->src_rect.y = (clip.t - dst->t) + src->t; in set_rects()
183 W = dst->r - dst->l; in set_rects()
184 H = dst->b - dst->t; in set_rects()
[all …]
/hardware/ti/omap4xxx/camera/
DEncoder_libjpeg.cpp102 static void nv21_to_yuv(uint8_t* dst, uint8_t* y, uint8_t* uv, int width) { in nv21_to_yuv() argument
103 if (!dst || !y || !uv) { in nv21_to_yuv()
111 dst[0] = y0; in nv21_to_yuv()
112 dst[1] = u0; in nv21_to_yuv()
113 dst[2] = v0; in nv21_to_yuv()
114 dst += 3; in nv21_to_yuv()
120 static void uyvy_to_yuv(uint8_t* dst, uint32_t* src, int width) { in uyvy_to_yuv() argument
121 if (!dst || !src) { in uyvy_to_yuv()
136 dst[0] = y0; in uyvy_to_yuv()
137 dst[1] = u0; in uyvy_to_yuv()
[all …]
DAppCallbackNotifier.cpp84 exif->insertExifThumbnailImage((const char*)thumb_param->dst, in EncoderDoneCb()
137 if (((Encoder_libjpeg::params *) thumb_jpeg)->dst) { in EncoderDoneCb()
138 free(((Encoder_libjpeg::params *) thumb_jpeg)->dst); in EncoderDoneCb()
433 static void copy2Dto1D(void *dst, in copy2Dto1D() argument
459 bufferDst = ( unsigned char * ) dst; in copy2Dto1D()
460 bufferDstEnd = ( unsigned char * ) dst + width*height*bytesPerPixel; in copy2Dto1D()
486 bufferDst_UV = (uint16_t *) (((uint8_t*)dst)+row*height); in copy2Dto1D()
525 : [dst] "+r" (bufferDst_UV), [src] "+r" (bufferSrc_UV), [n] "+r" (n) in copy2Dto1D()
539 bufferDst_V = (uint16_t *) (((uint8_t*)dst)+row*height); in copy2Dto1D()
540 bufferDst_U = (uint16_t *) (((uint8_t*)dst)+row*height+row*height/4); in copy2Dto1D()
[all …]
/hardware/broadcom/wlan/bcm4329/dhdutil/include/
Dbcmutils.h25 #define bcm_strcpy_s(dst, noOfElements, src) strcpy((dst), (src)) argument
26 #define bcm_strncpy_s(dst, noOfElements, src, count) strncpy((dst), (src), (count)) argument
27 #define bcm_strcat_s(dst, noOfElements, src) strcat((dst), (src)) argument
608 xor_128bit_block(const uint8 *src1, const uint8 *src2, uint8 *dst) in xor_128bit_block() argument
614 (((uintptr)src1 | (uintptr)src2 | (uintptr)dst) & 3) == 0) { in xor_128bit_block()
617 ((uint32 *)dst)[0] = ((const uint32 *)src1)[0] ^ ((const uint32 *)src2)[0]; in xor_128bit_block()
618 ((uint32 *)dst)[1] = ((const uint32 *)src1)[1] ^ ((const uint32 *)src2)[1]; in xor_128bit_block()
619 ((uint32 *)dst)[2] = ((const uint32 *)src1)[2] ^ ((const uint32 *)src2)[2]; in xor_128bit_block()
620 ((uint32 *)dst)[3] = ((const uint32 *)src1)[3] ^ ((const uint32 *)src2)[3]; in xor_128bit_block()
625 dst[k] = src1[k] ^ src2[k]; in xor_128bit_block()
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcmutils.h25 #define bcm_strcpy_s(dst, noOfElements, src) strcpy((dst), (src)) argument
26 #define bcm_strncpy_s(dst, noOfElements, src, count) strncpy((dst), (src), (count)) argument
27 #define bcm_strcat_s(dst, noOfElements, src) strcat((dst), (src)) argument
608 xor_128bit_block(const uint8 *src1, const uint8 *src2, uint8 *dst) in xor_128bit_block() argument
614 (((uintptr)src1 | (uintptr)src2 | (uintptr)dst) & 3) == 0) { in xor_128bit_block()
617 ((uint32 *)dst)[0] = ((const uint32 *)src1)[0] ^ ((const uint32 *)src2)[0]; in xor_128bit_block()
618 ((uint32 *)dst)[1] = ((const uint32 *)src1)[1] ^ ((const uint32 *)src2)[1]; in xor_128bit_block()
619 ((uint32 *)dst)[2] = ((const uint32 *)src1)[2] ^ ((const uint32 *)src2)[2]; in xor_128bit_block()
620 ((uint32 *)dst)[3] = ((const uint32 *)src1)[3] ^ ((const uint32 *)src2)[3]; in xor_128bit_block()
625 dst[k] = src1[k] ^ src2[k]; in xor_128bit_block()
/hardware/msm7k/libgralloc/
Dframebuffer.cpp403 blit.req.dst.width = width; in msm_copy_buffer()
404 blit.req.dst.height = height; in msm_copy_buffer()
405 blit.req.dst.offset = 0; in msm_copy_buffer()
406 blit.req.dst.memory_id = fd; in msm_copy_buffer()
407 blit.req.dst.format = MDP_RGB_565; in msm_copy_buffer()
/hardware/msm7k/libgralloc-qsd8k/
Dframebuffer.cpp440 blit.req.dst.width = width; in msm_copy_buffer()
441 blit.req.dst.height = height; in msm_copy_buffer()
442 blit.req.dst.offset = 0; in msm_copy_buffer()
443 blit.req.dst.memory_id = fd; in msm_copy_buffer()
444 blit.req.dst.format = format; in msm_copy_buffer()
/hardware/ti/omap4xxx/camera/inc/
DEncoder_libjpeg.h93 uint8_t* dst; member
/hardware/qcom/media/mm-video/vidc/vdec/test/
Domx_vdec_test.cpp2386 e->dst.width = vinfo.xres; in render_fb()
2387 e->dst.height = vinfo.yres; in render_fb()
2388 e->dst.format = MDP_RGB_565; in render_fb()
2389 e->dst.offset = 0; in render_fb()
2390 e->dst.memory_id = fb_fd; in render_fb()
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
DOMX_VPP_Utils.c92 #define OMX_VPP_STRNCPY(dst, src, size) strncpy(dst, src, size) argument