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

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
filters_neon.c 68 const int16_t* y_start = x_start + i; local
71 y_v = vld1q_s16(y_start);
81 y_start += 8;
87 int16x4_t y2_v = vld1_s16(y_start);
91 y_start += 4;
102 prod_tail += *x_start * *y_start;
104 ++y_start;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
adaptive_smooth_no_mmx.cpp 36 y_start = value of y coordinate of type int that specifies the first
87 of pelc0 is specified by x_start and y_start in the 1-D array "Rec_Y" as
90 location of pelc0 = [(y_start+1) * width] + x_start
98 (y_start,x_start) may be specified independently of (y_blk_start, x_blk_start).
100 (y_start,x_start)
214 int y_start, /* i */
248 addr_v = (int32)(y_start + 1) * width; /* y coord of 1st element in the row /
353 addr_v = (y_start + 2) * width; /* advance addr_v to the next row
356 for (row_cntr = (y_blk_start + BLKSIZE) - (y_start + 2); row_cntr > 0; row_cntr--)
  /external/webp/src/dsp/
lossless.h 86 uint32_t* dst, int y_start,
90 uint8_t* dst, int y_start,
100 const struct VP8LTransform* const transform, int y_start, int y_end,
lossless.c 199 int y_start, int y_end,
202 if (y_start == 0) { // First Row follows the L (mode=1) mode.
207 ++y_start;
211 int y = y_start;
290 int y_start, int y_end,
298 int y = y_start;
329 TYPE* dst, int y_start, int y_end, int width) { \
331 for (y = y_start; y < y_end; ++y) { \
339 int y_start, int y_end, const TYPE* src, \
349 for (y = y_start; y < y_end; ++y) {
    [all...]
lossless_mips_dsp_r2.c 25 TYPE* dst, int y_start, int y_end, \
28 for (y = y_start; y < y_end; ++y) { \
    [all...]
  /external/libxcam/xcore/base/
xcam_3a_types.h 123 int32_t y_start; /*!< Y of start point (left-upper corner) */ member in struct:_XCam3AWindow
  /external/webrtc/talk/media/base/
yuvframegenerator.h 88 int y_start,
yuvframegenerator.cc 282 int y_start,
288 for (int y = y_start; y < y_start + height; y++) {
  /external/libxcam/xcore/
handler_interface.cpp 49 _params.window.y_start = 0;
85 window->y_start,
114 window[i].x_start, window[i].y_start, window[i].x_end, window[i].y_end, window[i].weight);
120 _params.window.y_start = window[i].y_start;
128 _params.window.y_start,
289 _params.window.y_start = 0;
  /external/webp/src/dec/
frame_dec.c 432 int y_start = MACROBLOCK_VPOS(mb_y); local
435 y_start -= extra_y_rows;
452 if (dec->alpha_data_ != NULL && y_start < y_end) {
455 io->a = VP8DecompressAlphaRows(dec, io, y_start, y_end - y_start);
461 if (y_start < io->crop_top) {
462 const int delta_y = io->crop_top - y_start;
463 y_start = io->crop_top;
472 if (y_start < y_end) {
479 io->mb_y = y_start - io->crop_top
    [all...]
vp8l_dec.c 668 static int SetCropWindow(VP8Io* const io, int y_start, int y_end,
670 assert(y_start < y_end);
675 if (y_start < io->crop_top) {
676 const int delta = io->crop_top - y_start;
677 y_start = io->crop_top;
680 if (y_start >= y_end) return 0; // Crop window is empty.
684 io->mb_y = y_start - io->crop_top;
686 io->mb_h = y_end - y_start;
    [all...]
  /external/libxcam/modules/isp/
aiq_handler.cpp 427 window.y_end > window.y_start) {
441 XCAM_LOG_DEBUG ("ensure_ae_metering_mode weighted_window x_start = %d, y_start = %d, x_end = %d, y_end = %d ",
442 weighted_window.x_start, weighted_window.y_start, weighted_window.x_end, weighted_window.y_end);
445 weighted_window.y_end > weighted_window.y_start) {
760 uint32_t weighted_grid_height = ((weighted_window.y_end - weighted_window.y_start + 1) +
775 _params.window_list[win_index].x_start, _params.window_list[win_index].y_start,
782 (_params.window_list[win_index].y_start < 0) ||
785 (_params.window_list[win_index].y_start >= _params.window_list[win_index].y_end) ||
787 ((uint32_t)_params.window_list[win_index].y_end - (uint32_t)_params.window_list[win_index].y_start > image_height)) {
794 ((_params.window_list[win_index].y_start + (vert_pixels_per_gird >> 1)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
resize_area_op_test.cc 106 int64 y_start = floor(in_y); local
118 for (int64 i = y_start; i < y_end; ++i) {
resize_area_op.cc 225 const int64 y_start = floor(in_y); local
229 for (int64 i = y_start; i < y_end; ++i) {
  /external/libxcam/cl_kernel/
kernel_bayer_pipe.cl 61 int index, __read_only image2d_t input, uint input_height, int x_start, int y_start
67 int y0 = get_shared_pos_y (index) + y_start;
357 int y_start = get_group_id (1) * WORKGROUP_CELL_HEIGHT;
366 x_start - SLM_CELL_X_OFFSET, y_start - SLM_CELL_Y_OFFSET);
382 (input_x + x_start) * PIXEL_PER_CELL / 4, (input_y + y_start) * PIXEL_PER_CELL, has_denoise, SLM_delta_coef_table, ee_config);
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.cpp 72 uint8_t *y_start, *uv_start, *_y_start, *_uv_start; local
73 y_start = dataOut;
79 memcpy(y_start + h * width, _y_start + h * stride, width);
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.c 160 const int y_start = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)); local
175 scaled_buffer_offset(x_start + x, y_start + y, pre_buf->stride, sf);
  /hardware/intel/common/utils/ISV/base/
isv_worker.cpp 1016 unsigned char *y_start, *uv_start; local
    [all...]
  /external/deqp/external/openglcts/modules/glesext/geometry_shader/
esextcGeometryShaderRendering.cpp 1734 int y_start = 0; local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 522 int y_start = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)); local
531 y0_16 = (y_start + y) << SUBPEL_BITS;
540 y0 = sf->scale_value_y(y_start + y, sf);
    [all...]
  /external/webp/src/mux/
anim_encode.c 719 const int y_start = (rect->y_offset_ + block_size) & ~(block_size - 1); local
727 for (j = y_start; j < y_end; j += block_size) {
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 1524 const int y_start = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)); local
    [all...]

Completed in 343 milliseconds