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

1 2

  /external/opencv3/modules/cudev/include/opencv2/cudev/block/
block.hpp 77 uint STRIDE = Block::blockSize();
80 for(; t < end; t += STRIDE)
87 uint STRIDE = Block::blockSize();
91 for(OutIt t = beg + tid; t < end; t += STRIDE, value += STRIDE)
98 uint STRIDE = Block::blockSize();
102 for(; t < end; t += STRIDE, o += STRIDE)
109 uint STRIDE = Block::blockSize();
113 for(; t < end; t += STRIDE, o += STRIDE
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
warp.hpp 60 STRIDE = WARP_SIZE
74 for(It t = beg + laneId(); t < end; t += STRIDE)
81 for(InIt t = beg + laneId(); t < end; t += STRIDE, out += STRIDE)
89 for(InIt t = beg + laneId(); t < end; t += STRIDE, out += STRIDE)
101 for(; t1 < end1; t1 += STRIDE, t2 += STRIDE, out += STRIDE)
131 for(OutIt t = beg + lane; t < end; t += STRIDE, value += STRIDE
    [all...]
block.hpp 61 static __device__ __forceinline__ unsigned int stride() function in struct:cv::cuda::device::Block
79 int STRIDE = stride();
82 for(; t < end; t += STRIDE)
89 int STRIDE = stride();
93 for(OutIt t = beg + tid; t < end; t += STRIDE, value += STRIDE)
100 int STRIDE = stride();
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CreateBitmap.java 36 private static final int STRIDE = 64; // must be >= WIDTH
39 int[] colors = new int[STRIDE * HEIGHT];
46 colors[y * STRIDE + x] = (a << 24) | (r << 16) | (g << 8) | b;
77 mBitmaps[0] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
79 mBitmaps[1] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
81 mBitmaps[2] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
92 mBitmaps[i].setPixels(colors, 0, STRIDE, 0, 0, WIDTH, HEIGHT);
118 canvas.drawBitmap(mColors, 0, STRIDE, 0, 0, WIDTH, HEIGHT,
121 canvas.drawBitmap(mColors, 0, STRIDE, 0, 0, WIDTH, HEIGHT,
PurgeableBitmapView.java 47 private static final int STRIDE = 320; // must be >= WIDTH
59 Bitmap src = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
68 int[] colors = new int[STRIDE * HEIGHT];
75 colors[y * STRIDE + x] = (a << 24) | (r << 16) | (g << 8) | b;
MeasureText.java 34 private static final int STRIDE = 64; // must be >= WIDTH
37 int[] colors = new int[STRIDE * HEIGHT];
44 colors[y * STRIDE + x] = (a << 24) | (r << 16) | (g << 8) | b;
  /frameworks/av/services/audioflinger/
AudioResamplerFirProcess.h 177 template <int CHANNELS, int STRIDE, typename TFUNC, typename TC, typename TI, typename TO,
249 template <int CHANNELS, int STRIDE, typename TC, typename TI, typename TO>
259 ProcessBase<CHANNELS, STRIDE, InterpNull>(out, count, coefsP, coefsN, sP, sN, 0, volumeLR);
295 template <int CHANNELS, int STRIDE, typename TC, typename TI, typename TO, typename TINTERP>
308 ProcessBase<CHANNELS, STRIDE, InterpCompute>(out, count, coefsP, coefsN, sP, sN, lerpP,
374 template<int CHANNELS, bool LOCKED, int STRIDE, typename TC, typename TI, typename TO>
397 ProcessL<CHANNELS, STRIDE>(out,
425 Process<CHANNELS, STRIDE>(out,
431 Process<CHANNELS, STRIDE>(out,
AudioResamplerFirProcessNeon.h 73 template <int CHANNELS, int STRIDE, bool FIXED>
88 sP -= CHANNELS*((STRIDE>>1)-1);
181 template <int CHANNELS, int STRIDE, bool FIXED>
196 sP -= CHANNELS*((STRIDE>>1)-1);
356 template <int CHANNELS, int STRIDE, bool FIXED>
371 sP -= CHANNELS*((STRIDE>>1)-1);
539 const int STRIDE = 16;
540 sP -= CHANNELS*((STRIDE>>1)-1);
596 const int STRIDE = 16;
597 sP -= CHANNELS*((STRIDE>>1)-1)
    [all...]
AudioResamplerDyn.h 113 template<int CHANNELS, bool LOCKED, int STRIDE>
AudioResamplerDyn.cpp 405 // stride is the minimum number of filter coefficients processed per loop iteration.
406 // We currently only allow a stride of 16 to match with SIMD processing.
410 // Note: A stride of 2 is achieved with non-SIMD processing.
411 int stride = ((c.mHalfNumCoefs & 7) == 0) ? 16 : 2; local
412 LOG_ALWAYS_FATAL_IF(stride < 16, "Resampler stride must be 16 or more");
415 // stride 16 (falls back to stride 2 for machines that do not support NEON)
472 printf("channels:%d %s stride:%d %s coef:%d shift:%d\n",
474 stride, useS32 ? "S32" : "S16", 2*c.mHalfNumCoefs, c.mShift)
    [all...]
  /external/skia/src/gpu/
GrPathUtils.h 72 * STRIDE is the size of each vertex.
76 template <int N, size_t STRIDE, size_t UV_OFFSET>
91 xyPtr += STRIDE;
92 uvPtr += STRIDE;
  /external/mesa3d/src/mesa/x86/
sse_normal.S 43 #define STRIDE REGOFF(12, ESI)
66 MOV_L ( STRIDE, EAX ) /* stride */
128 MOV_L ( STRIDE, EAX ) /* stride */
221 MOV_L ( STRIDE, EAX ) /* stride */
3dnow_normal.S 39 #define STRIDE REGOFF(12, ESI)
127 ADD_L ( STRIDE, EDX ) /* next normal */
158 ADD_L ( STRIDE, EDX ) /* next normal */
279 ADD_L ( STRIDE, EDX ) /* next normal */
323 ADD_L ( STRIDE, EDX ) /* next normal */
407 ADD_L ( STRIDE, EDX ) /* next normal */
501 ADD_L ( STRIDE, EDX ) /* next normal */
570 ADD_L ( STRIDE, EDX) /* next normal */
658 ADD_L ( STRIDE, EDX ) /* next normal */
722 ADD_L ( STRIDE, ECX ) /* next normal *
    [all...]
  /external/opencv3/modules/cudalegacy/src/cuda/
bm_fast.cu 62 STRIDE = CTA_SIZE
96 for (int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
132 for (int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
163 for(int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
187 for (int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
  /external/boringssl/src/crypto/bn/asm/
x86_64-mont5.pl 113 $STRIDE=2**5*8; # 5 is "window size"
114 $N=$STRIDE/4; # should match cache line size
128 movq `0*$STRIDE/4-96`($bp),%xmm0
129 movq `1*$STRIDE/4-96`($bp),%xmm1
131 movq `2*$STRIDE/4-96`($bp),%xmm2
133 movq `3*$STRIDE/4-96`($bp),%xmm3
138 lea $STRIDE($bp),$bp
149 movq `0*$STRIDE/4-96`($bp),%xmm0
150 movq `1*$STRIDE/4-96`($bp),%xmm1
152 movq `2*$STRIDE/4-96`($bp),%xmm
    [all...]
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Material.java 31 public static final int STRIDE = 8;
38 public byte[] mColor = new byte[SIZE * STRIDE]; // table contain r, g, b, A, S, D
88 int p = STRIDE * (off);
248 int p = STRIDE * (i & 0xFFFF);
260 int p = STRIDE * (i & 0xFFFF);
291 int p = STRIDE * (i & 0xFFFF);
  /external/webp/src/dec/
buffer.c 38 #define MIN_BUFFER_SIZE(WIDTH, HEIGHT, STRIDE) \
39 (uint64_t)(STRIDE) * ((HEIGHT) - 1) + (WIDTH)
76 const int stride = abs(buf->stride); local
77 const uint64_t size = MIN_BUFFER_SIZE(width, height, stride);
79 ok &= (stride >= width * kModeBpp[mode]);
101 const int stride = w * kModeBpp[mode]; local
102 const uint64_t size = (uint64_t)stride * h;
124 buf->y_stride = stride;
140 buf->stride = stride
    [all...]
  /external/opencv3/modules/photo/src/cuda/
nlm.cu 276 STRIDE = CTA_SIZE
299 for(int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
345 for(int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
376 for(int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
407 for(int index = threadIdx.x; index < search_window * search_window; index += STRIDE)
  /hardware/ti/omap4-aah/camera/
NV12_resize.cpp 24 #define STRIDE 4096
100 CAMHAL_LOGE("idx or idy less then 1 idx = %d idy = %d stride = %d", idx, idy, i_img_ptr->uStride);
  /hardware/ti/omap4xxx/camera/
NV12_resize.c 8 #define STRIDE 4096
98 ALOGE("idx or idy less then 1 idx = %d idy = %d stride = %d", idx, idy, i_img_ptr->uStride);
  /external/libhevc/test/decoder/
main.c 340 #define STRIDE 0
    [all...]
  /external/mesa3d/src/glx/
indirect_vertex_array.c 1087 #define COMMON_ARRAY_DATA_INIT(a, PTR, TYPE, STRIDE, COUNT, NORMALIZED, HDR_SIZE, OPCODE) \
1091 (a)->user_stride = STRIDE; \
1096 (a)->true_stride = (STRIDE == 0) \
1097 ? (a)->element_size : STRIDE; \
    [all...]
  /external/libavc/test/decoder/
main.c 346 #define STRIDE 0
    [all...]
  /external/libmpeg2/test/decoder/
main.c 357 #define STRIDE 0
    [all...]
  /external/boringssl/src/crypto/sha/asm/
sha512-x86_64.pl 168 my $STRIDE=$SZ;
169 $STRIDE += 16 if ($i%(16/$SZ)==(16/$SZ-1));
207 lea $STRIDE($Tbl),$Tbl # round++
    [all...]

Completed in 751 milliseconds

1 2