HomeSort by relevance Sort by last modified time
    Searched refs:dst_offset (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/mesa3d/src/gallium/drivers/i915/
i915_blit.h 40 unsigned dst_offset,
50 unsigned dst_offset,
i915_blit.c 41 unsigned dst_offset,
50 __FUNCTION__, dst_buffer, dst_pitch, dst_offset, x, y, w, h);
82 OUT_RELOC_FENCED(dst_buffer, I915_USAGE_2D_TARGET, dst_offset);
96 unsigned dst_offset,
111 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h);
154 OUT_RELOC_FENCED(dst_buffer, I915_USAGE_2D_TARGET, dst_offset);
  /system/core/libmincrypt/
dsa_sig.c 37 int dst_offset; local
45 dst_offset = P256_NBYTES - src_len;
46 memset(dst, 0, dst_offset);
47 memcpy(dst + dst_offset, src, src_len);
  /system/media/audio_utils/
channels.c 77 size_t dst_offset; \
78 for (dst_offset = 0; dst_offset < num_zero_chans; dst_offset++) { \
81 for (; dst_offset < out_buff_chans; dst_offset++) { \
108 size_t dst_offset; \
109 for (dst_offset = 0; dst_offset < num_zero_chans; dst_offset++) {
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_blit.h 45 intptr_t dst_offset,
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_blit.h 45 intptr_t dst_offset,
radeon_pixel_read.c 101 intptr_t dst_offset; local
143 dst_offset = 0;
148 dst_offset = (intptr_t)pixels;
168 dst_offset,
radeon_tex_copy.c 85 intptr_t dst_offset = radeon_miptree_image_offset(timg->mt, face, level); local
90 fprintf(stderr, "to: x %d, y %d, offset %d\n", dstx, dsty, (uint32_t) dst_offset);
130 timg->mt->bo, dst_offset, dst_mesaformat,
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch.c 68 unsigned dst_offset = 0; local
76 dst_offset += 1 * sizeof(float);
79 dst_offset += 8 * sizeof(float);
94 key.element[nr].output_offset = dst_offset;
96 dst_offset += sizeof(uint);
104 key.element[nr].output_offset = dst_offset;
107 dst_offset += 4 * sizeof(int);
115 key.element[nr].output_offset = dst_offset;
118 dst_offset += 4 * sizeof(unsigned);
126 key.element[nr].output_offset = dst_offset;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_blit.h 47 GLuint dst_offset,
61 GLuint dst_offset,
68 unsigned int dst_offset,
intel_pixel_read.c 79 GLuint dst_offset; local
124 dst_offset = (GLintptr)pixels;
125 dst_offset += _mesa_image_offset(2, pack, width, height,
140 x == 0 && dst_offset == 0);
155 rowLength, dst_buffer, dst_offset, false,
intel_blit.c 99 GLuint dst_offset,
113 if (dst_offset & 4095)
145 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h);
206 dst_offset);
401 GLuint dst_offset,
411 if (dst_offset & 4095)
428 dst_buffer, dst_pitch, dst_offset, x, y, w, h, src_size, dwords);
459 dst_offset);
483 unsigned int dst_offset,
499 pitch, dst_bo, dst_offset, I915_TILING_NONE
    [all...]
  /external/opencv3/modules/core/src/opencl/
flip.cl 53 __global uchar * dstptr, int dst_step, int dst_offset,
63 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
64 int dst_index1 = mad24(rows - y0 - 1, dst_step, mad24(x, TSIZE, dst_offset));
84 __global uchar * dstptr, int dst_step, int dst_offset,
94 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
95 int dst_index1 = mad24(rows - y0 - 1, dst_step, mad24(cols - x - 1, TSIZE, dst_offset));
130 __global uchar * dstptr, int dst_step, int dst_offset,
140 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
141 int dst_index1 = mad24(y0, dst_step, mad24(cols - x - 1, TSIZE, dst_offset));
convert.cl 55 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
64 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(dstT), dst_offset));
mulspectrums.cl 58 __global uchar * dstptr, int dst_step, int dst_offset,
68 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(float2), dst_offset));
  /external/sfntly/cpp/src/sfntly/data/
growable_memory_byte_array.h 38 virtual int32_t CopyTo(int32_t dst_offset,
42 return ByteArray::CopyTo(dst_offset, array, src_offset, length);
memory_byte_array.h 50 virtual int32_t CopyTo(int32_t dst_offset,
54 return ByteArray::CopyTo(dst_offset, array, src_offset, length);
  /external/opencv3/modules/imgproc/src/opencl/
blend_linear.cl 60 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols)
71 int dst_index = mad24(y, dst_step, dst_offset + x * cn * (int)sizeof(T));
precornerdetect.cl 51 __global uchar * dstptr, int dst_step, int dst_offset,
64 int dst_index = mad24(dst_step, y, (int)sizeof(float) * x + dst_offset);
threshold.cl 55 __global uchar * dstptr, int dst_step, int dst_offset, int rows, int cols,
64 int dst_index = mad24(gy, dst_step, mad24(gx, (int)sizeof(T), dst_offset));
integral_sum.cl 94 __global uchar *dst_ptr, int dst_step, int dst_offset, int rows, int cols
111 __global sumT *dst = (__global sumT *)(dst_ptr + dst_offset);
116 dst_offset += dst_step;
120 dst = (__global sumT *)(dst_ptr + mad24(x, dst_step, dst_offset));
166 //int dst_index = dst_offset + dst_step * LOCAL_SUM_COLS * gid + sizeof(sumT) * y + sizeof(sumT) * lid;
167 int dst_index = mad24(dst_step, LOCAL_SUM_SIZE * gid, mad24((int)sizeof(sumT), y + lid, dst_offset));
resize.cl 134 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
163 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
170 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
219 storepix(uval, dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
226 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
240 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
249 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
256 int dst_index = mad24(dy, dst_step, dst_offset);
282 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
291 int dst_index = mad24(dy, dst_step, dst_offset);
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_image.c 163 uint dst_offset = jj * dst_stride + ii; local
165 dst32 + dst_offset,
183 uint dst_offset = jj * dst_stride + ii; local
185 dst16 + dst_offset,
252 uint dst_offset = (jj / tile_h * tiles_per_row + ii / tile_w) local
255 dst32 + dst_offset,
272 uint dst_offset = (jj / tile_h * tiles_per_row + ii / tile_w) local
275 dst16 + dst_offset,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
pcm_rate.h 85 snd_pcm_uframes_t dst_offset, unsigned int dst_frames,
139 snd_pcm_uframes_t dst_offset, unsigned int dst_frames,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_rate.h 85 snd_pcm_uframes_t dst_offset, unsigned int dst_frames,
139 snd_pcm_uframes_t dst_offset, unsigned int dst_frames,

Completed in 489 milliseconds

1 2 3 4 5