HomeSort by relevance Sort by last modified time
    Searched refs:cur_u (Results 1 - 20 of 20) sorted by null

  /external/opencv/cv/src/
cvemd.cpp 591 CvNode1D u0_head, u1_head, *cur_u, *prev_u; local
634 for( cur_u = u0_head.next; cur_u != 0; )
636 i = (int)(cur_u - u);
640 cur_u->val = cost[i][j] - cur_v_val;
642 prev_u->next = cur_u->next;
643 cur_u->next = u1_head.next;
644 u1_head.next = cur_u;
645 cur_u = prev_u->next;
649 prev_u = cur_u;
912 CvNode1D u_head, *cur_u, *prev_u; local
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
upsampling_sse2.c 134 const uint8_t* cur_u, const uint8_t* cur_v, \
144 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
150 const int u0_b = (cur_u[0] + u_diag) >> 1; \
157 UPSAMPLE_32PIXELS(top_u + uv_pos, cur_u + uv_pos, r_u); \
164 UPSAMPLE_LAST_BLOCK(top_u + uv_pos, cur_u + uv_pos, left_over, r_u); \
upsampling_neon.c 183 const uint8_t *cur_u, const uint8_t *cur_v, \
195 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
211 const int u0 = (cur_u[0] + u_diag) >> 1; \
217 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
222 cur_u += 8; \
227 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
upsampling.c 40 const uint8_t* cur_u, const uint8_t* cur_v, \
45 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \
57 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \
dsp.h 194 const uint8_t* cur_u, const uint8_t* cur_v,
  /external/webp/src/dsp/
upsampling_sse2.c 134 const uint8_t* cur_u, const uint8_t* cur_v, \
144 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
150 const int u0_b = (cur_u[0] + u_diag) >> 1; \
157 UPSAMPLE_32PIXELS(top_u + uv_pos, cur_u + uv_pos, r_u); \
164 UPSAMPLE_LAST_BLOCK(top_u + uv_pos, cur_u + uv_pos, left_over, r_u); \
upsampling_neon.c 183 const uint8_t *cur_u, const uint8_t *cur_v, \
195 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
211 const int u0 = (cur_u[0] + u_diag) >> 1; \
217 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
222 cur_u += 8; \
227 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
upsampling.c 40 const uint8_t* cur_u, const uint8_t* cur_v, \
45 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \
57 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \
dsp.h 194 const uint8_t* cur_u, const uint8_t* cur_v,
  /external/chromium_org/third_party/libwebp/enc/
picture_csp.c 293 const uint8_t *cur_u = picture->u, *cur_v = picture->v, *cur_y = picture->y; local
297 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width);
302 const uint8_t* const top_u = cur_u;
304 cur_u += picture->uv_stride;
306 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v,
313 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width);
  /external/webp/src/enc/
picture_csp.c 293 const uint8_t *cur_u = picture->u, *cur_v = picture->v, *cur_y = picture->y; local
297 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width);
302 const uint8_t* const top_u = cur_u;
304 cur_u += picture->uv_stride;
306 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v,
313 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width);
  /external/chromium_org/third_party/freetype/src/pshinter/
pshalgo.c     [all...]
pshalgo.h 173 FT_Pos cur_u; member in struct:PSH_PointRec_
  /external/freetype/src/pshinter/
pshalgo.c     [all...]
pshalgo.h 173 FT_Pos cur_u; member in struct:PSH_PointRec_
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
pshalgo.c     [all...]
pshalgo.h 173 FT_Pos cur_u; member in struct:PSH_PointRec_
  /external/chromium_org/third_party/libwebp/dec/
io.c 94 const uint8_t* cur_u = io->u; local
105 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, mb_w);
108 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v,
114 top_u = cur_u;
116 cur_u += io->uv_stride;
121 top_u, top_v, cur_u, cur_v,
129 memcpy(p->tmp_u, cur_u, uv_w * sizeof(*p->tmp_u));
137 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v
    [all...]
  /external/webp/src/dec/
io.c 94 const uint8_t* cur_u = io->u; local
105 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, mb_w);
108 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v,
114 top_u = cur_u;
116 cur_u += io->uv_stride;
121 top_u, top_v, cur_u, cur_v,
129 memcpy(p->tmp_u, cur_u, uv_w * sizeof(*p->tmp_u));
137 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v
    [all...]
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 163 void UpsampleRgbaLinePairNEON(const uint8_t *top_y, const uint8_t *bottom_y, const uint8_t *top_u, const uint8_t *top_v, const uint8_t *cur_u, const uint8_t *cur_v, uint8_t *top_dst, uint8_t *bottom_dst, int len)
172 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1;
182 uint8x8_t c = vld1_u8(cur_u);
183 uint8x8_t d = vld1_u8(cur_u + 1);

Completed in 483 milliseconds