/external/mesa3d/src/gallium/drivers/i915/ |
i915_blit.c | 98 short dst_x, short dst_y, 103 int dst_x2 = dst_x + w; 111 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); 136 if (dst_y2 < dst_y || dst_x2 < dst_x) { 152 OUT_BATCH((dst_y << 16) | dst_x);
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
msm_rotator.h | 38 unsigned int dst_x; member in struct:msm_rotator_img_info
|
/hardware/qcom/msm8994/original-kernel-headers/linux/ |
msm_rotator.h | 29 unsigned int dst_x; member in struct:msm_rotator_img_info
|
/hardware/qcom/msm8996/original-kernel-headers/linux/ |
msm_rotator.h | 29 unsigned int dst_x; member in struct:msm_rotator_img_info
|
/hardware/qcom/msm8x26/original-kernel-headers/linux/ |
msm_rotator.h | 29 unsigned int dst_x; member in struct:msm_rotator_img_info
|
/hardware/qcom/msm8x27/original-kernel-headers/linux/ |
msm_rotator.h | 29 unsigned int dst_x; member in struct:msm_rotator_img_info
|
/hardware/qcom/msm8x84/original-kernel-headers/linux/ |
msm_rotator.h | 29 unsigned int dst_x; member in struct:msm_rotator_img_info
|
/external/opencv3/modules/imgproc/src/opencl/ |
pyr_down.cl | 221 const int dst_x = (get_group_id(0) * get_local_size(0) + tid2) / 2; 223 if (dst_x < dst_cols) 240 storepix(convertToT(sum), dstData + yin * dst_step + dst_x * PIXSIZE); 246 int dst_x = (get_group_id(0) * LOCAL_SIZE + tid4) / 2; 247 if (dst_x < dst_cols - 1) 257 storepix(convertToT(sum), dstData + mad24(yin, dst_step, dst_x * PIXSIZE)); 259 dst_x ++; 265 storepix(convertToT(sum), dstData + mad24(yin, dst_step, dst_x * PIXSIZE)); 266 dst_x --; 270 else if (dst_x < dst_cols [all...] |
pyr_up.cl | 207 int dst_x = 2*get_global_id(0); 210 if ((dst_x < dst_cols) && (dst_y < dst_rows)) 216 storepix(convertToT(sum), dstData + dst_y * dst_step + dst_x * PIXSIZE); 222 storepix(convertToT(sum), dstData + dst_y * dst_step + (dst_x+1) * PIXSIZE); 227 storepix(convertToT(sum), dstData + (dst_y+1) * dst_step + dst_x * PIXSIZE); 232 storepix(convertToT(sum), dstData + (dst_y+1) * dst_step + (dst_x+1) * PIXSIZE);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_rect.c | 47 unsigned dst_x, 66 dst_x /= blockwidth; 73 dst += dst_x * blocksize; 94 unsigned dst_x, 111 dst_x /= blockwidth; 116 dst += dst_x * blocksize;
|
u_rect.h | 93 unsigned dst_stride, unsigned dst_x, unsigned dst_y, 99 unsigned dst_stride, unsigned dst_x, unsigned dst_y,
|
u_surface.h | 63 unsigned dst_x, unsigned dst_y, unsigned dst_z,
|
/external/libdrm/exynos/ |
exynos_fimg2d.c | 498 * @dst_x: x start position to destination buffer. 506 unsigned int dst_x, unsigned dst_y, unsigned int w, 522 if (dst_x + dst->width > w) 523 dst_w = dst->width - dst_x; 555 pt.data.x = dst_x; 558 pt.data.x = dst_x + w; 581 * @dst_x: x position of destination rectangle. 589 unsigned int dst_x, unsigned dst_y, unsigned int w, 606 if (dst_x + img->width > w) 607 dst_w = img->width - dst_x; [all...] |
exynos_fimg2d.h | 300 unsigned int src_y, unsigned int dst_x, unsigned int dst_y, 303 unsigned int src_x, unsigned int src_y, unsigned int dst_x, 308 unsigned int src_h, unsigned int dst_x, 313 unsigned int src_y, unsigned int dst_x, unsigned int dst_y, 317 unsigned int src_w, unsigned int src_h, unsigned int dst_x,
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
vmw_screen_dri.c | 122 int dst_x, 130 xy1 = ((int)src->x1 > (int)bbox->x1 + dst_x) ? src->x1 : 131 (int)bbox->x1 + dst_x; 132 xy2 = ((int)src->x2 < (int)bbox->x2 + dst_x) ? src->x2 : 133 (int)bbox->x2 + dst_x;
|
/external/opencv3/modules/cudawarping/src/cuda/ |
resize.cu | 59 const int dst_x = blockDim.x * blockIdx.x + threadIdx.x; 62 if (dst_x < dst.cols && dst_y < dst.rows) 64 const float src_x = dst_x * fx; 67 dst(dst_y, dst_x) = src(__float2int_rz(src_y), __float2int_rz(src_x)); 75 const int dst_x = blockDim.x * blockIdx.x + threadIdx.x; 78 if (dst_x < dst.cols && dst_y < dst.rows) 80 const float src_x = dst_x * fx; 104 dst(dst_y, dst_x) = saturate_cast<T>(out); 110 const int dst_x = blockDim.x * blockIdx.x + threadIdx.x; 113 if (dst_x < dst.cols && dst_y < dst.rows [all...] |
/external/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_renderer.h | 58 int dst_x, int dst_y, int dst_w, int dst_h,
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_pixel_read.c | 83 GLint dst_x, dst_y; local 129 &dst_x, &dst_y, 142 dst_x = 0; 157 dst_x, dst_y,
|
intel_blit.c | 102 GLshort dst_x, GLshort dst_y, 108 int dst_x2 = dst_x + w; 145 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); 161 dst_x *= cpp / 4; 192 if (dst_y2 <= dst_y || dst_x2 <= dst_x) { 196 assert(dst_x < dst_x2); 202 OUT_BATCH((dst_y << 16) | dst_x);
|
/hardware/intel/img/psb_video/src/ |
psb_texture.h | 138 int src_h, int dst_x, int dst_y, int dst_w, int dst_h, 144 int src_h, int dst_x, int dst_y, int dst_w, int dst_h, unsigned int subtitle,
|
/external/webrtc/webrtc/modules/desktop_capture/x11/ |
x_server_pixel_buffer.cc | 273 int dst_x = rect.left(), dst_y = rect.top(); local 276 dst_pos += dst_x * DesktopFrame::kBytesPerPixel; 291 int dst_x = rect.left(), dst_y = rect.top(); local 306 dst_pos += dst_x * DesktopFrame::kBytesPerPixel;
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_pixel_read.c | 100 GLint dst_x = 0, dst_y = 0; local 127 if (!_mesa_clip_copytexsubimage(ctx, &dst_x, &dst_y, &x, &y, &width, &height)) { 173 0, /* dst_x */
|
/external/libgdx/gdx/jni/gdx2d/ |
gdx2d.c | 769 int32_t dst_x, int32_t dst_y,
781 int dx = dst_x;
788 for(sx = src_x, dx = dst_x; sx < src_x + width; sx++, dx++) {
810 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) {
824 int dx = dst_x;
840 dx = j + dst_x;
891 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) {
903 int dx = dst_x;
918 dx = j + dst_x;
940 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) { [all...] |
/external/llvm/test/CodeGen/AMDGPU/ |
load.ll | 49 ; R600-DAG: VTX_READ_8 [[DST_X:T[0-9]\.[XYZW]]], [[DST_X]] 51 ; R600-DAG: BFE_INT {{[* ]*}}T{{[0-9].[XYZW]}}, [[DST_X]], 0.0, literal 84 ; R600-DAG: VTX_READ_8 [[DST_X:T[0-9]\.[XYZW]]], [[DST_X]] 88 ; R600-DAG: BFE_INT {{[* ]*}}T{{[0-9].[XYZW]}}, [[DST_X]], 0.0, literal 147 ; R600-DAG: VTX_READ_16 [[DST_X:T[0-9]\.[XYZW]]], [[DST_X]] 149 ; R600-DAG: BFE_INT {{[* ]*}}T{{[0-9].[XYZW]}}, [[DST_X]], 0.0, literal 181 ; R600-DAG: VTX_READ_16 [[DST_X:T[0-9]\.[XYZW]]], [[DST_X] [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i830_texstate.c | 129 GLuint dst_x, dst_y; local 149 &dst_x, &dst_y); 158 i830->state.tex_offset[unit] = dst_x * intelObj->mt->cpp + dst_y * pitch;
|