Searched defs:dest (Results 1 - 25 of 33) sorted by relevance

12

/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
H A DExynos_OSAL_Memory.c58 OMX_PTR Exynos_OSAL_Memset(OMX_PTR dest, OMX_S32 c, OMX_S32 n) argument
60 return memset(dest, c, n);
63 OMX_PTR Exynos_OSAL_Memcpy(OMX_PTR dest, OMX_PTR src, OMX_S32 n) argument
65 return memcpy(dest, src, n);
68 OMX_PTR Exynos_OSAL_Memmove(OMX_PTR dest, OMX_PTR src, OMX_S32 n) argument
70 return memmove(dest, src, n);
H A DExynos_OSAL_ETC.c126 OMX_PTR Exynos_OSAL_Strcpy(OMX_PTR dest, OMX_PTR src) argument
128 return strcpy(dest, src);
131 OMX_PTR Exynos_OSAL_Strncpy(OMX_PTR dest, OMX_PTR src, size_t num) argument
133 return strncpy(dest, src, num);
146 OMX_PTR Exynos_OSAL_Strcat(OMX_PTR dest, OMX_PTR src) argument
148 return strcat(dest, src);
151 OMX_PTR Exynos_OSAL_Strncat(OMX_PTR dest, OMX_PTR src, size_t num) argument
153 return strncat(dest, src, num);
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
H A DConnection.cpp76 bool Connection::connect(const char *dest) argument
80 assert(NULL != dest);
82 LOG_I(" Connecting to %s socket", dest);
84 strncpy(remote.sun_path, dest, sizeof(remote.sun_path) - 1);
/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc_fbupdate.cpp71 ovutils::eDest dest = ov.nextPipe(ovutils::OV_MDP_PIPE_ANY, mDpy); local
72 if(dest == ovutils::OV_INVALID) { //None available
78 mDest = dest;
93 ov.setSource(parg, dest);
101 ov.setCrop(dcrop, dest);
106 ov.setTransform(orient, dest);
116 ov.setPosition(dpos, dest);
119 if (!ov.commit(dest)) {
134 ovutils::eDest dest = mDest; local
135 if (!ov.queueBuffer(hnd->fd, hnd->offset, dest)) {
[all...]
H A Dhwc_mdpcomp.cpp807 eDest dest = mdp_info.index; local
810 __FUNCTION__, layer, zOrder, dest); local
812 return configureLowRes(ctx, layer, mDpy, mdpFlags, zOrder, isFg, dest,
916 ovutils::eDest dest = pipe_info.index; local
917 if(dest == ovutils::OV_INVALID) {
918 ALOGE("%s: Invalid pipe index (%d)", __FUNCTION__, dest);
928 hnd, dest ); local
940 if (!ov.queueBuffer(fd, offset, dest)) {
H A Dhwc_utils.cpp888 const eDest& dest) {
889 ov->setSource(parg, dest);
890 ov->setTransform(orient, dest);
895 ov->setCrop(dcrop, dest);
900 ov->setPosition(position, dest);
903 ov->setVisualParams(*metadata, dest);
905 if (!ov->commit(dest)) {
928 const eIsFg& isFg, const eDest& dest, Rotator **rot) {
997 if(configMdp(ctx->mOverlay, parg, orient, crop, dst, metadata, dest) < 0) {
885 configMdp(Overlay *ov, const PipeArgs& parg, const eTransform& orient, const hwc_rect_t& crop, const hwc_rect_t& pos, const MetaData_t *metadata, const eDest& dest) argument
926 configureLowRes(hwc_context_t *ctx, hwc_layer_1_t *layer, const int& dpy, eMdpFlags& mdpFlags, const eZorder& z, const eIsFg& isFg, const eDest& dest, Rotator **rot) argument
/hardware/qcom/display/msm8960/liboverlay/
H A Doverlay.h65 void setSource(const utils::PipeArgs args, utils::eDest dest);
66 void setCrop(const utils::Dim& d, utils::eDest dest);
67 void setTransform(const int orientation, utils::eDest dest);
68 void setPosition(const utils::Dim& dim, utils::eDest dest);
69 void setVisualParams(const MetaData_t& data, utils::eDest dest);
70 bool commit(utils::eDest dest);
71 bool queueBuffer(int fd, uint32_t offset, utils::eDest dest);
122 static utils::eMdpPipeType getPipeType(utils::eDest dest);
123 static const char* getDestStr(utils::eDest dest);
223 inline utils::eMdpPipeType Overlay::PipeBook::getPipeType(utils::eDest dest) { argument
227 getDestStr(utils::eDest dest) argument
[all...]
H A Doverlay.cpp85 eDest dest = OV_INVALID; local
95 dest = (eDest)i;
102 if(dest != OV_INVALID) {
103 int index = (int)dest;
111 PipeBook::getDestStr(dest), dpy);
119 return dest;
122 bool Overlay::commit(utils::eDest dest) { argument
124 int index = (int)dest;
129 PipeBook::setUse((int)dest);
131 PipeBook::resetUse((int)dest);
140 queueBuffer(int fd, uint32_t offset, utils::eDest dest) argument
152 setCrop(const utils::Dim& d, utils::eDest dest) argument
159 setPosition(const utils::Dim& d, utils::eDest dest) argument
166 setTransform(const int orient, utils::eDest dest) argument
177 setSource(const utils::PipeArgs args, utils::eDest dest) argument
198 setVisualParams(const MetaData_t& metadata, utils::eDest dest) argument
[all...]
/hardware/qcom/display/msm8974/libhwcomposer/
H A Dhwc_ad.cpp170 ovutils::eDest dest = ctx->mOverlay->nextPipe(ovutils::OV_MDP_PIPE_VG, local
172 if(dest == OV_INVALID) {
216 dest) < 0) {
222 mDest = dest;
H A Dhwc_fbupdate.cpp92 ovutils::eDest dest = ov.nextPipe(type, mDpy, Overlay::MIXER_DEFAULT); local
93 if(dest == ovutils::OV_INVALID) { //None available
99 mDest = dest;
114 ov.setSource(parg, dest);
122 ov.setCrop(dcrop, dest);
127 ov.setTransform(orient, dest);
142 ov.setPosition(dpos, dest);
145 if (!ov.commit(dest)) {
160 ovutils::eDest dest = mDest; local
161 if (!ov.queueBuffer(hnd->fd, hnd->offset, dest)) {
[all...]
H A Dhwc_mdpcomp.cpp957 eDest dest = mdp_info.index; local
960 __FUNCTION__, layer, zOrder, dest); local
962 return configureLowRes(ctx, layer, mDpy, mdpFlags, zOrder, isFg, dest,
1058 ovutils::eDest dest = pipe_info.index; local
1059 if(dest == ovutils::OV_INVALID) {
1060 ALOGE("%s: Invalid pipe index (%d)", __FUNCTION__, dest);
1070 hnd, dest ); local
1090 if (!ov.queueBuffer(fd, offset, dest)) {
H A Dhwc_utils.cpp830 const eDest& dest) {
831 ov->setSource(parg, dest);
832 ov->setTransform(orient, dest);
837 ov->setCrop(dcrop, dest);
842 ov->setPosition(position, dest);
845 ov->setVisualParams(*metadata, dest);
847 if (!ov->commit(dest)) {
880 const eIsFg& isFg, const eDest& dest, Rotator **rot) {
961 if(configMdp(ctx->mOverlay, parg, orient, crop, dst, metadata, dest) < 0) {
827 configMdp(Overlay *ov, const PipeArgs& parg, const eTransform& orient, const hwc_rect_t& crop, const hwc_rect_t& pos, const MetaData_t *metadata, const eDest& dest) argument
878 configureLowRes(hwc_context_t *ctx, hwc_layer_1_t *layer, const int& dpy, eMdpFlags& mdpFlags, const eZorder& z, const eIsFg& isFg, const eDest& dest, Rotator **rot) argument
/hardware/qcom/display/msm8x26/libhwcomposer/
H A Dhwc_fbupdate.cpp71 ovutils::eDest dest = ov.nextPipe(ovutils::OV_MDP_PIPE_ANY, mDpy); local
72 if(dest == ovutils::OV_INVALID) { //None available
78 mDest = dest;
93 ov.setSource(parg, dest);
101 ov.setCrop(dcrop, dest);
106 ov.setTransform(orient, dest);
116 ov.setPosition(dpos, dest);
119 if (!ov.commit(dest)) {
134 ovutils::eDest dest = mDest; local
135 if (!ov.queueBuffer(hnd->fd, hnd->offset, dest)) {
[all...]
H A Dhwc_mdpcomp.cpp796 eDest dest = mdp_info.index; local
799 __FUNCTION__, layer, zOrder, dest); local
801 return configureLowRes(ctx, layer, mDpy, mdpFlags, zOrder, isFg, dest,
905 ovutils::eDest dest = pipe_info.index; local
906 if(dest == ovutils::OV_INVALID) {
907 ALOGE("%s: Invalid pipe index (%d)", __FUNCTION__, dest);
917 hnd, dest ); local
929 if (!ov.queueBuffer(fd, offset, dest)) {
H A Dhwc_utils.cpp848 const eDest& dest) {
849 ov->setSource(parg, dest);
850 ov->setTransform(orient, dest);
855 ov->setCrop(dcrop, dest);
860 ov->setPosition(position, dest);
863 ov->setVisualParams(*metadata, dest);
865 if (!ov->commit(dest)) {
888 const eIsFg& isFg, const eDest& dest, Rotator **rot) {
943 if(configMdp(ctx->mOverlay, parg, orient, crop, dst, metadata, dest) < 0) {
845 configMdp(Overlay *ov, const PipeArgs& parg, const eTransform& orient, const hwc_rect_t& crop, const hwc_rect_t& pos, const MetaData_t *metadata, const eDest& dest) argument
886 configureLowRes(hwc_context_t *ctx, hwc_layer_1_t *layer, const int& dpy, eMdpFlags& mdpFlags, const eZorder& z, const eIsFg& isFg, const eDest& dest, Rotator **rot) argument
/hardware/qcom/display/msm8x26/liboverlay/
H A Doverlay.h65 void setSource(const utils::PipeArgs args, utils::eDest dest);
66 void setCrop(const utils::Dim& d, utils::eDest dest);
67 void setTransform(const int orientation, utils::eDest dest);
68 void setPosition(const utils::Dim& dim, utils::eDest dest);
69 void setVisualParams(const MetaData_t& data, utils::eDest dest);
70 bool commit(utils::eDest dest);
71 bool queueBuffer(int fd, uint32_t offset, utils::eDest dest);
122 static utils::eMdpPipeType getPipeType(utils::eDest dest);
123 static const char* getDestStr(utils::eDest dest);
223 inline utils::eMdpPipeType Overlay::PipeBook::getPipeType(utils::eDest dest) { argument
227 getDestStr(utils::eDest dest) argument
[all...]
H A Doverlay.cpp85 eDest dest = OV_INVALID; local
95 dest = (eDest)i;
102 if(dest != OV_INVALID) {
103 int index = (int)dest;
111 PipeBook::getDestStr(dest), dpy);
119 return dest;
122 bool Overlay::commit(utils::eDest dest) { argument
124 int index = (int)dest;
129 PipeBook::setUse((int)dest);
131 PipeBook::resetUse((int)dest);
140 queueBuffer(int fd, uint32_t offset, utils::eDest dest) argument
152 setCrop(const utils::Dim& d, utils::eDest dest) argument
159 setPosition(const utils::Dim& d, utils::eDest dest) argument
166 setTransform(const int orient, utils::eDest dest) argument
177 setSource(const utils::PipeArgs args, utils::eDest dest) argument
198 setVisualParams(const MetaData_t& metadata, utils::eDest dest) argument
[all...]
/hardware/qcom/media/mm-video-legacy/vidc/common/src/
H A Dvidc_color_converter.cpp90 ColorConvertFormat src, ColorConvertFormat dest)
96 src, dest, 0, srcStride);
89 open(unsigned int height,unsigned int width, ColorConvertFormat src, ColorConvertFormat dest) argument
/hardware/qcom/media/mm-video-v4l2/vidc/common/src/
H A Dvidc_color_converter.cpp100 ColorConvertFormat src, ColorConvertFormat dest)
106 src,dest,0,0);
99 open(unsigned int height,unsigned int width, ColorConvertFormat src, ColorConvertFormat dest) argument
/hardware/qcom/display/msm8974/liboverlay/
H A Doverlay.cpp87 eDest dest = OV_INVALID; local
99 dest = (eDest)i;
105 if(dest != OV_INVALID) {
106 int index = (int)dest;
113 PipeBook::getDestStr(dest), dpy, mixer);
123 return dest;
136 bool Overlay::commit(utils::eDest dest) { argument
138 int index = (int)dest;
143 PipeBook::setUse((int)dest);
162 utils::eDest dest) {
161 queueBuffer(int fd, uint32_t offset, utils::eDest dest) argument
173 setCrop(const utils::Dim& d, utils::eDest dest) argument
180 setPosition(const utils::Dim& d, utils::eDest dest) argument
187 setTransform(const int orient, utils::eDest dest) argument
198 setSource(const utils::PipeArgs args, utils::eDest dest) argument
219 setVisualParams(const MetaData_t& metadata, utils::eDest dest) argument
[all...]
H A Doverlay.h77 void setSource(const utils::PipeArgs args, utils::eDest dest);
78 void setCrop(const utils::Dim& d, utils::eDest dest);
79 void setTransform(const int orientation, utils::eDest dest);
80 void setPosition(const utils::Dim& dim, utils::eDest dest);
81 void setVisualParams(const MetaData_t& data, utils::eDest dest);
82 bool commit(utils::eDest dest);
83 bool queueBuffer(int fd, uint32_t offset, utils::eDest dest);
144 static utils::eMdpPipeType getPipeType(utils::eDest dest);
145 static const char* getDestStr(utils::eDest dest);
263 inline utils::eMdpPipeType Overlay::PipeBook::getPipeType(utils::eDest dest) { argument
267 getDestStr(utils::eDest dest) argument
[all...]
/hardware/samsung_slsi/exynos5/libswconverter/
H A Dswconvertor.c100 * Interleaves src1, src2 to dest
102 * @param dest
115 unsigned char *dest,
122 dest[i*2] = src1[i];
123 dest[i*2+1] = src2[i];
114 csc_interleave_memcpy( unsigned char *dest, unsigned char *src1, unsigned char *src2, unsigned int src_size) argument
/hardware/ti/omap4xxx/camera/
H A DEncoder_libjpeg.cpp71 libjpeg_destination_mgr* dest = (libjpeg_destination_mgr*)cinfo->dest; local
73 dest->next_output_byte = dest->buf;
74 dest->free_in_buffer = dest->bufsize;
75 dest->jpegsize = 0;
79 libjpeg_destination_mgr* dest = (libjpeg_destination_mgr*)cinfo->dest; local
81 dest
87 libjpeg_destination_mgr* dest = (libjpeg_destination_mgr*)cinfo->dest; local
[all...]
H A DAppCallbackNotifier.cpp693 void *dest = NULL, *src = NULL; local
706 dest = picture->data;
707 if (NULL != dest) {
709 memcpy(dest, src, frame->mLength);
729 void* dest = NULL; local
745 dest = (void*) mPreviewBufs[mPreviewBufCount];
758 if ( NULL != dest ) {
762 memcpy(dest, (void*) frame->mBuffer, frame->mLength);
764 memset(dest, 0, (mPreviewMemory->size / MAX_BUFFERS));
772 copy2Dto1D(dest,
[all...]
/hardware/ti/omap4xxx/camera/V4LCameraAdapter/
H A DV4LCameraAdapter.cpp531 uint16_t* dest = (uint16_t*)ptr; local
538 //*dest = *src;
540 *dest = (((*src & 0xFF000000)>>24)<<16)|(((*src & 0x00FF0000)>>16)<<24) |
543 dest++;
545 dest += 4096/2-width;

Completed in 694 milliseconds

12