/third_party/ffmpeg/libavfilter/ |
H A D | vf_find_rect.c | 37 int xmin, ymin, xmax, ymax; member 53 { "ymin", "", OFFSET(ymin), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, FLAGS }, 146 static float search(FOCContext *foc, int pass, int maxpass, int xmin, int xmax, int ymin, int ymax, int *best_x, int *best_y, float best_score) in search() argument 152 search(foc, pass+1, maxpass, xmin>>1, (xmax+1)>>1, ymin>>1, (ymax+1)>>1, &sub_x, &sub_y, 2.0); in search() 155 ymin = FFMAX(ymin, 2*sub_y - 4); in search() 159 for (y = ymin; y <= ymax; y++) { in search() 189 FFMAX(foc->ymin, foc->last_y - 8), in filter_frame() 193 best_score = search(foc, 0, foc->mipmaps - 1, foc->xmin, foc->xmax, foc->ymin, fo in filter_frame() [all...] |
/third_party/mesa3d/src/intel/common/ |
H A D | intel_guardband.h | 31 float *ymin, float *ymax) in intel_calculate_guardband_size() 77 *ymin = -1.0f; in intel_calculate_guardband_size() 107 *ymin = MIN2(ndc_gb_ymin, ndc_gb_ymax); in intel_calculate_guardband_size() 113 *ymin = 0.0f; in intel_calculate_guardband_size() 27 intel_calculate_guardband_size(uint32_t x_min, uint32_t x_max, uint32_t y_min, uint32_t y_max, float m00, float m11, float m30, float m31, float *xmin, float *xmax, float *ymin, float *ymax) intel_calculate_guardband_size() argument
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
H A D | WaveformView.java | 91 float ymin = mOffsetY; in onDraw() 97 canvas.drawLine(x0, ymin, x0, ymax, mWavePaint); in onDraw() 99 ymin = mOffsetY; in onDraw() 103 ymin = Math.min(ymin, y1); in onDraw()
|
/third_party/ffmpeg/libavcodec/ |
H A D | motion_est.c | 117 av_assert2(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)); in cmp_direct_inline() 118 if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){ in cmp_direct_inline() 423 my > ymin && my < ymax) { in sad_hpel_motion_search() 537 c->ymin = - y - 16; in get_limits() 543 c->ymin = (y > 15) ? - 15 : 0; in get_limits() 548 c->ymin = - y; in get_limits() 557 c->ymin = FFMAX(c->ymin,-range); in get_limits() 755 c->ymin>>=1; in interlaced_search() 844 c->ymin * in interlaced_search() 1261 const int ymin= c->ymin * (1 << shift); bidir_refine() local 1400 int mx, my, xmin, xmax, ymin, ymax; direct_search() local [all...] |
H A D | pcx.c | 77 int compressed, xmin, ymin, xmax, ymax; in pcx_decode_frame() local 98 ymin = bytestream2_get_le16u(&gb); in pcx_decode_frame() 104 if (xmax < xmin || ymax < ymin) { in pcx_decode_frame() 110 h = ymax - ymin + 1; in pcx_decode_frame()
|
H A D | motion_est_template.c | 34 const int av_unused ymin= c->ymin;\ 83 my > ymin && my < ymax) { in hpel_motion_search() 146 av_assert2(bx >= xmin*2 && bx <= xmax*2 && by >= ymin*2 && by <= ymax*2); in hpel_motion_search() 245 my > ymin && my < ymax) { in qpel_motion_search() 348 av_assert2(bx >= xmin*4 && bx <= xmax*4 && by >= ymin*4 && by <= ymax*4); in qpel_motion_search() 367 av_assert2((y) >= ymin);\ 383 const int Ly2= FFMAX(ymin, FFMIN(Ly, ymax));\ 408 if( (y)<(ymin<<(S)) ) av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d ymin" # [all...] |
H A D | dvdsubenc.c | 291 int ymin = h->rects[0]->y, ymax = ymin + h->rects[0]->h; in encode_dvd_subtitles() local 294 ymin = FFMIN(ymin, h->rects[i]->y); in encode_dvd_subtitles() 299 vrect.y = ymin; in encode_dvd_subtitles() 301 vrect.h = ymax - ymin; in encode_dvd_subtitles()
|
H A D | exr.c | 164 int32_t ymax, ymin; member 1231 if (tile_y && s->tile_attr.ySize + (int64_t)FFMAX(s->ymin, 0) >= INT_MAX / tile_y ) in decode_block() 1234 line = s->ymin + s->tile_attr.ySize * tile_y; in decode_block() 1237 if (line < s->ymin || line > s->ymax || in decode_block() 1259 if (line < s->ymin || line > s->ymax) in decode_block() 1562 s->ymin = ~0; in decode_header() 1798 int xmin, ymin, xmax, ymax; in decode_header() local 1805 ymin = bytestream2_get_le32(gb); in decode_header() 1809 if (xmin > xmax || ymin > ymax || in decode_header() 1812 (unsigned)ymax - ymin > in decode_header() [all...] |
H A D | motion_est.h | 76 int ymin; member
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | ssim.c | 67 const int ymin = (yo - VP8_SSIM_KERNEL < 0) ? 0 : yo - VP8_SSIM_KERNEL; in SSIMGetClipped_C() local 74 src1 += ymin * stride1; in SSIMGetClipped_C() 75 src2 += ymin * stride2; in SSIMGetClipped_C() 76 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) { in SSIMGetClipped_C()
|
/third_party/skia/third_party/externals/libwebp/extras/ |
H A D | get_disto.c | 138 const int ymin = (yo - SSIM_KERNEL < 0) ? 0 : yo - SSIM_KERNEL; in SSIMGetClipped() local 143 src1 += ymin * stride1; in SSIMGetClipped() 144 src2 += ymin * stride2; in SSIMGetClipped() 145 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) { in SSIMGetClipped()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | image.c | 638 * specified by [xmin, xmax) and [ymin, ymax). 642 _mesa_clip_to_region(GLint xmin, GLint ymin, in _mesa_clip_to_region() argument 661 if (*y < ymin) { in _mesa_clip_to_region() 662 *height -= (ymin - *y); in _mesa_clip_to_region() 663 *y = ymin; in _mesa_clip_to_region()
|
H A D | image.h | 119 _mesa_clip_to_region(GLint xmin, GLint ymin,
|
/third_party/mesa3d/src/imgui/ |
H A D | imstb_textedit.h | 366 float ymin,ymax; // height of row above and below baseline member 404 r.ymin = r.ymax = 0; in stb_text_locate_coord() 413 if (i==0 && y < base_y + r.ymin) in stb_text_locate_coord() 464 y = r.ymin; in stb_textedit_click() 484 y = r.ymin; in stb_textedit_drag() 531 find->height = r.ymax - r.ymin; in stb_textedit_find_charpos() 563 find->height = r.ymax - r.ymin; in stb_textedit_find_charpos()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imstb_textedit.h | 368 float ymin,ymax; // height of row above and below baseline member 406 r.ymin = r.ymax = 0; in stb_text_locate_coord() 415 if (i==0 && y < base_y + r.ymin) in stb_text_locate_coord() 466 y = r.ymin; in stb_textedit_click() 486 y = r.ymin; in stb_textedit_drag() 533 find->height = r.ymax - r.ymin; in stb_textedit_find_charpos() 565 find->height = r.ymax - r.ymin; in stb_textedit_find_charpos()
|
/third_party/backends/backend/ |
H A D | coolscan3.c | 222 unsigned long xmin, xmax, ymin, ymax; member 1029 s->ymin = 0; in sane_open() 1177 *(SANE_Word *) v = s->ymin; in sane_control_option() 1360 s->ymin = *(SANE_Word *) v; in sane_control_option() 2784 unsigned long xmin, xmax, ymin, ymax; in cs3_convert_options() local 2827 if (s->ymin < s->ymax) { in cs3_convert_options() 2828 ymin = s->ymin; in cs3_convert_options() 2831 ymin = s->ymax; in cs3_convert_options() 2832 ymax = s->ymin; in cs3_convert_options() [all...] |
H A D | coolscan2.c | 257 unsigned long xmin, xmax, ymin, ymax; member 1034 s->ymin = 0; in sane_open() 1183 *(SANE_Word *) v = s->ymin; in sane_control_option() 1348 s->ymin = *(SANE_Word *) v; in sane_control_option() 2633 unsigned long xmin, xmax, ymin, ymax; in cs2_convert_options() local 2674 if (s->ymin < s->ymax) in cs2_convert_options() 2676 ymin = s->ymin; in cs2_convert_options() 2681 ymin = s->ymax; in cs2_convert_options() 2682 ymax = s->ymin; in cs2_convert_options() [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
H A D | font_header_table.cc | 197 void FontHeaderTable::Builder::SetYMin(int32_t ymin) { in SetYMin() argument 198 InternalWriteData()->WriteShort(Offset::kYMin, ymin); in SetYMin()
|
H A D | font_header_table.h | 75 virtual void SetYMin(int32_t ymin);
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_cb_bitmap.c | 357 cache->ymin = 1000000; in reset_cache() 434 cache->ymax - cache->ymin, in st_flush_bitmap_cache() 517 if (y < cache->ymin) in accum_bitmap() 518 cache->ymin = y; in accum_bitmap()
|
H A D | st_context.h | 63 GLint xmin, ymin, xmax, ymax; member
|
/third_party/ffmpeg/libavformat/ |
H A D | swfenc.c | 103 int xmin, int xmax, int ymin, int ymax) in put_swf_rect() 114 max_nbits(&nbits, ymin); in put_swf_rect() 122 put_bits(&p, nbits, ymin & mask); in put_swf_rect() 102 put_swf_rect(AVIOContext *pb, int xmin, int xmax, int ymin, int ymax) put_swf_rect() argument
|
H A D | swfdec.c | 81 int len, xmin, xmax, ymin, ymax; in swf_probe() local 103 ymin = get_bits_long(&gb, len); in swf_probe() 105 if (xmin || ymin || !xmax || !ymax) in swf_probe()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
H A D | FontHeaderTable.java | 596 public void setYMin(int ymin) { in setYMin() argument 597 this.internalWriteData().writeShort(Offset.yMin.offset, ymin); in setYMin()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFBitmap.cpp | 49 int ymin = std::max(0, yOrig - 1); in get_neighbor_avg_color() local 53 for (int y = ymin; y <= ymax; ++y) { in get_neighbor_avg_color()
|