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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glBindVertexBuffer.java 1 // C function void glBindVertexBuffer ( GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride )
7 int stride
  /external/libvpx/libvpx/vpx_dsp/arm/
idct16x16_1_add_neon.c 17 static INLINE void idct16x16_1_add_pos_kernel(uint8_t **dest, const int stride,
22 *dest += stride;
25 static INLINE void idct16x16_1_add_neg_kernel(uint8_t **dest, const int stride,
30 *dest += stride;
34 int stride) {
42 idct16x16_1_add_pos_kernel(&dest, stride, dc);
43 idct16x16_1_add_pos_kernel(&dest, stride, dc);
44 idct16x16_1_add_pos_kernel(&dest, stride, dc);
45 idct16x16_1_add_pos_kernel(&dest, stride, dc);
46 idct16x16_1_add_pos_kernel(&dest, stride, dc)
    [all...]
idct8x8_1_add_neon.c 21 static INLINE void idct8x8_1_add_pos_kernel(uint8_t **dest, const int stride,
26 *dest += stride;
29 static INLINE void idct8x8_1_add_neg_kernel(uint8_t **dest, const int stride,
34 *dest += stride;
38 int stride) {
46 idct8x8_1_add_pos_kernel(&dest, stride, dc);
47 idct8x8_1_add_pos_kernel(&dest, stride, dc);
48 idct8x8_1_add_pos_kernel(&dest, stride, dc);
49 idct8x8_1_add_pos_kernel(&dest, stride, dc);
50 idct8x8_1_add_pos_kernel(&dest, stride, dc)
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
idct_blk_neon.c 18 int stride);
19 void idct_dequant_0_2x_neon(short *q, short dq, unsigned char *dst, int stride);
22 int stride, char *eobs) {
28 idct_dequant_full_2x_neon(q, dq, dst, stride);
30 idct_dequant_0_2x_neon(q, dq[0], dst, stride);
35 idct_dequant_full_2x_neon(q + 32, dq, dst + 8, stride);
37 idct_dequant_0_2x_neon(q + 32, dq[0], dst + 8, stride);
40 dst += 4 * stride;
47 unsigned char *dstv, int stride,
51 idct_dequant_full_2x_neon(q, dq, dstu, stride);
    [all...]
  /external/clang/test/CodeGen/
inline-asm-mrv.c 5 int stride, int h) {
9 : "r" ((long)stride));
  /external/libvpx/libvpx/vp8/common/x86/
idct_blk_sse2.c 20 int stride, char *eobs) {
26 vp8_idct_dequant_full_2x_sse2(q, dq, dst, stride);
28 vp8_idct_dequant_0_2x_sse2(q, dq, dst, stride);
33 vp8_idct_dequant_full_2x_sse2(q + 32, dq, dst + 8, stride);
35 vp8_idct_dequant_0_2x_sse2(q + 32, dq, dst + 8, stride);
39 dst += stride * 4;
46 unsigned char *dstv, int stride,
50 vp8_idct_dequant_full_2x_sse2(q, dq, dstu, stride);
52 vp8_idct_dequant_0_2x_sse2(q, dq, dstu, stride);
56 dstu += stride * 4
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
mem_sse2.h 18 static INLINE void load_8bit_4x4(const uint8_t *const s, const ptrdiff_t stride,
20 d[0] = _mm_cvtsi32_si128(*(const int *)(s + 0 * stride));
21 d[1] = _mm_cvtsi32_si128(*(const int *)(s + 1 * stride));
22 d[2] = _mm_cvtsi32_si128(*(const int *)(s + 2 * stride));
23 d[3] = _mm_cvtsi32_si128(*(const int *)(s + 3 * stride));
26 static INLINE void load_8bit_4x8(const uint8_t *const s, const ptrdiff_t stride,
28 load_8bit_4x4(s + 0 * stride, stride, &d[0]);
29 load_8bit_4x4(s + 4 * stride, stride, &d[4])
    [all...]
  /external/libvpx/libvpx/vp8/common/
idct_blk.c 16 int stride);
22 int stride, char *eobs) {
28 vp8_dequant_idct_add_c(q, dq, dst, stride);
30 vp8_dc_only_idct_add_c(q[0] * dq[0], dst, stride, dst, stride);
38 dst += 4 * stride - 16;
43 unsigned char *dstv, int stride,
50 vp8_dequant_idct_add_c(q, dq, dstu, stride);
52 vp8_dc_only_idct_add_c(q[0] * dq[0], dstu, stride, dstu, stride);
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
idct_blk_dspr2.c 17 int stride, char *eobs) {
23 vp8_dequant_idct_add_dspr2(q, dq, dst, stride);
25 vp8_dc_only_idct_add_dspr2(q[0] * dq[0], dst, stride, dst, stride);
33 dst += 4 * stride - 16;
39 unsigned char *dstv, int stride,
46 vp8_dequant_idct_add_dspr2(q, dq, dstu, stride);
48 vp8_dc_only_idct_add_dspr2(q[0] * dq[0], dstu, stride, dstu, stride);
56 dstu += 4 * stride - 8
    [all...]
dequantize_dspr2.c 17 int stride) {
24 vp8_short_idct4x4llm_dspr2(input, dest, stride, dest, stride);
  /external/libvpx/libvpx/vp8/common/mips/mmi/
idct_blk_mmi.c 15 int stride, int8_t *eobs) {
21 vp8_dequant_idct_add_mmi(q, dq, dst, stride);
23 vp8_dc_only_idct_add_mmi(q[0] * dq[0], dst, stride, dst, stride);
31 dst += 4 * stride - 16;
36 uint8_t *dstv, int stride,
43 vp8_dequant_idct_add_mmi(q, dq, dstu, stride);
45 vp8_dc_only_idct_add_mmi(q[0] * dq[0], dstu, stride, dstu, stride);
53 dstu += 4 * stride - 8
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
stride.h 13 cloog_int_t stride; /**< The actual stride. */ member in struct:cloogstride
20 CloogStride *cloog_stride_alloc(cloog_int_t stride, cloog_int_t offset);
21 CloogStride *cloog_stride_alloc_from_constraint(cloog_int_t stride,
23 CloogStride *cloog_stride_copy(CloogStride *stride);
24 void cloog_stride_free(CloogStride *stride);
27 int level, CloogStride *stride);
  /external/libvpx/libvpx/test/
vp8_denoiser_sse2_test.cc 46 const int stride = 16; local
80 mc_avg_block, stride, avg_block_c, stride, sig_block_c, stride,
84 mc_avg_block, stride, avg_block_sse2, stride, sig_block_sse2, stride,
90 EXPECT_EQ(avg_block_c[h * stride + w], avg_block_sse2[h * stride + w]);
96 mc_avg_block, stride, avg_block_c, stride, sig_block_c, stride
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/
padding.h 20 inline int ComputePadding(int stride, int in_size, int filter_size,
22 int padding = ((out_size - 1) * stride + filter_size - in_size) / 2;
  /external/webrtc/webrtc/modules/desktop_capture/
differ_block_sse2.h 24 int stride);
29 int stride);
differ_block.cc 23 int stride) {
29 image1 += stride;
30 image2 += stride;
37 int stride) {
58 return diff_proc(image1, image2, stride);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_prim_vbuf.c 150 int stride )
152 return (cptrf4)((char *)vertex_buffer + index * stride);
164 const unsigned stride = softpipe->vertex_info.size * sizeof(float); local
174 get_vert(vertex_buffer, indices[i-0], stride) );
181 get_vert(vertex_buffer, indices[i-1], stride),
182 get_vert(vertex_buffer, indices[i-0], stride) );
189 get_vert(vertex_buffer, indices[i-1], stride),
190 get_vert(vertex_buffer, indices[i-0], stride) );
197 get_vert(vertex_buffer, indices[i-1], stride),
198 get_vert(vertex_buffer, indices[i-0], stride) );
361 const unsigned stride = softpipe->vertex_info.size * sizeof(float); local
    [all...]
  /external/harfbuzz_ng/util/
ansi-print.hh 37 unsigned int stride);
  /external/libvpx/libvpx/vp9/common/
vp9_idct.h 41 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
43 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
45 void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride,
47 void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride,
49 void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride,
53 int stride, int eob);
55 int stride, int eob);
57 int stride, int eob);
60 void vp9_highbd_iwht4x4_add(const tran_low_t *input, uint16_t *dest, int stride,
62 void vp9_highbd_idct4x4_add(const tran_low_t *input, uint16_t *dest, int stride,
    [all...]
vp9_idct.c 20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride,
46 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i],
59 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride,
79 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i],
92 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride,
112 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i],
119 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
    [all...]
  /external/v4l2_codec2/vda/
native_pixmap_handle.cc 11 : stride(0), offset(0), size(0), modifier(0) {}
13 NativePixmapPlane::NativePixmapPlane(int stride,
17 : stride(stride), offset(offset), size(size), modifier(modifier) {}
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
BitmapComparer.java 25 * @param stride how much to skip between two different rows
30 public abstract boolean verifySame(int[] ideal, int[] given, int offset, int stride, int width,
36 protected static int indexFromXAndY(int x, int y, int stride, int offset) {
37 return x + (y * stride) + offset;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_vbuf.c 127 int stride )
129 return (const_float4_ptr)((char *)vertex_buffer + index * stride);
139 const unsigned stride = setup->vertex_info->size * sizeof(float); local
153 get_vert(vertex_buffer, indices[i-0], stride) );
160 get_vert(vertex_buffer, indices[i-1], stride),
161 get_vert(vertex_buffer, indices[i-0], stride) );
168 get_vert(vertex_buffer, indices[i-1], stride),
169 get_vert(vertex_buffer, indices[i-0], stride) );
176 get_vert(vertex_buffer, indices[i-1], stride),
177 get_vert(vertex_buffer, indices[i-0], stride) );
338 const unsigned stride = setup->vertex_info->size * sizeof(float); local
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSUtils.java 37 int stride, int skip) {
39 for (int i = 0; i < array.length / stride; i++) {
40 for (int j = 0; j < stride; j++) {
41 if (j >= stride - skip)
42 array[i * stride + j] = 0;
44 array[i * stride + j] = r.nextFloat() * factor + offset;
57 int stride, int skip) {
59 for (int i = 0; i < array.length / stride; i++) {
60 for (int j = 0; j < stride; j++) {
61 if (j >= stride - skip
    [all...]
  /frameworks/ml/nn/runtime/test/specs/V1_0/
conv_float.mod.py 23 stride = Int32Scalar("stride", 1) variable
28 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)

Completed in 736 milliseconds

1 2 3 4 5 6 7 8 91011>>