HomeSort by relevance Sort by last modified time
    Searched defs:xmin (Results 1 - 25 of 37) sorted by null

1 2

  /external/opencv3/modules/cudawarping/test/
interpolation.hpp 106 const float xmin = ceilf(x - 2.0f); local
117 for (float cx = xmin; cx <= xmax; cx += 1.0f)
  /external/opencv3/modules/imgproc/src/
gabor.cpp 57 int xmin, xmax, ymin, ymax; local
70 xmin = -xmax;
75 Mat kernel(ymax - ymin + 1, xmax - xmin + 1, ktype);
82 for( int x = xmin; x <= xmax; x++ )
shapedescr.cpp 489 int xmin = 0, ymin = 0, xmax = -1, ymax = -1, i; local
512 xmin = _mm_cvtsi128_si32(minval);
533 xmin = cvFloor(xyminf[0]);
544 xmin = xmax = pt.x;
551 if( xmin > pt.x )
552 xmin = pt.x;
568 xmin = xmax = CV_TOGGLE_FLT(pt.x);
577 if( xmin > pt.x )
578 xmin = pt.x;
590 v.i = CV_TOGGLE_FLT(xmin); xmin = cvFloor(v.f)
608 int xmin = size.width, ymin = -1, xmax = -1, ymax = -1, i, j, k; local
    [all...]
undistort.cpp 508 float xmin = FLT_MAX, xmax = -FLT_MAX, ymin = FLT_MAX, ymax = -FLT_MAX; local
530 if( xmin > q.x ) xmin = q.x;
536 float scale = (float)std::min(dcenter.x/fabs(xmax), dcenter.x/fabs(xmin));
  /external/pdfium/third_party/agg23/
agg_renderer_scanline.h 47 int xmin = m_ren->xmin(); local
61 if(x < xmin) {
62 len -= xmin - x;
64 covers += xmin - x;
66 x = xmin;
agg_renderer_base.h 68 int xmin() const function in class:agg::renderer_base
121 if(x2 < xmin()) {
124 if(x1 < xmin()) {
125 x1 = xmin();
142 if(x < xmin()) {
143 len -= xmin() - x;
147 covers += xmin() - x;
148 x = xmin();
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Rectangle.java 201 float xmin = rectangle.x; local
202 float xmax = xmin + rectangle.width;
207 return ((xmin > x && xmin < x + width) && (xmax > x && xmax < x + width))
DelaunayTriangulator.java 75 float xmin = points[0], ymin = points[1]; local
76 float xmax = xmin, ymax = ymin;
79 if (value < xmin) xmin = value;
86 float dx = xmax - xmin, dy = ymax - ymin;
88 float xmid = (xmax + xmin) / 2f, ymid = (ymax + ymin) / 2f;
  /external/libvncserver/examples/android/jni/
fbvncserver.c 58 static int xmin, xmax; variable
156 xmin = info.minimum;
313 if (xmin != 0 && xmax != 0 && ymin != 0 && ymax != 0)
315 x = xmin + (x * (xmax - xmin)) / (scrinfo.xres);
  /external/mesa3d/src/mesa/swrast/
s_points.c 195 GLint xmin, xmax, ymin, ymax, iy; local
204 xmin = (GLint) (x - iRadius);
212 xmin = (GLint) (x + 0.501) - iRadius;
213 xmax = xmin + iSize - 1;
227 span.x = xmin;
229 span.end = xmax - xmin + 1;
312 const GLint xmin = (GLint) (x - radius); local
321 span.x = xmin;
323 span.end = xmax - xmin + 1;
326 for (ix = xmin; ix <= xmax; ix++)
411 GLint xmin, xmax, ymin, ymax, ix, iy; local
    [all...]
s_span.c 703 const GLint xmin = ctx->DrawBuffer->_Xmin; local
721 mask[i] &= (x[i] >= xmin) & (x[i] < xmax)
729 mask[i] = (x[i] >= xmin) & (x[i] < xmax)
743 if (y < ymin || y >= ymax || x + n <= xmin || x >= xmax) {
755 if (x < xmin) {
756 const GLint leftClip = xmin - x;
760 ASSERT(x + n > xmin);
810 span->x = xmin;
815 ASSERT(span->x >= xmin);
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
filters.hpp 151 const float xmin = ::ceilf(x - 2.0f); local
162 for (float cx = xmin; cx <= xmax; cx += 1.0f)
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
interpolation.hpp 186 const float xmin = ::ceilf(x - 2.0f); local
197 for (float cx = xmin; cx <= xmax; cx += 1.0f)
  /external/webp/src/enc/
filter.c 128 const int xmin = (xo - KERNEL < 0) ? 0 : xo - KERNEL; local
134 for (x = xmin; x <= xmax; ++x) {
  /external/skia/src/pdf/
SkPDFBitmap.cpp 122 int xmin = SkTMax(0, xOrig - 1); local
126 for (int x = xmin; x <= xmax; ++x) {
  /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
FindRegion.java 192 int xmin = Math.max(0, (int) (mRoiBounds.left - mRoiBounds.width() * 2)); local
200 return new Rect(xmin, ymin, xmax, ymax);
  /external/libvncserver/libvncserver/
rfbregion.c 588 int xmin=((unsigned int)(int)-1)>>1,ymin=xmin,xmax=1-xmin,ymax=xmax; local
603 if(hcurr->start<xmin)
604 xmin=hcurr->start;
613 if(xmax<xmin || ymax<ymin)
616 return sraRgnCreateRect(xmin,ymin,xmax,ymax);
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 583 float xmin = bez->x1; local
588 if (bez->x2 < xmin)
589 xmin = bez->x2;
592 if (bez->x3 < xmin)
593 xmin = bez->x3;
596 if (bez->x4 < xmin)
597 xmin = bez->x4;
614 bounds[0] = xmin; /* x */
616 bounds[2] = xmax - xmin; /* width */
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 92 GLint xmin, ymin, xmax, ymax; member in struct:bitmap_cache
565 cache->xmin = 1000000;
644 assert(cache->xmin <= cache->xmax);
647 cache->xmax - cache->xmin,
733 if (x < cache->xmin)
734 cache->xmin = x;
  /external/opencv3/3rdparty/libwebp/enc/
filter.c 256 const int xmin = (xo - KERNEL < 0) ? 0 : xo - KERNEL; local
262 for (x = xmin; x <= xmax; ++x) {
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 505 GLfloat xmin, xmax, ymin, ymax; local
509 xmin = ymin * aspect;
512 glFrustumx((GLfixed)(xmin * 65536), (GLfixed)(xmax * 65536),
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
demo.c 719 GLfloat xmin, xmax, ymin, ymax; local
723 xmin = ymin * aspect;
726 glFrustum(xmin, xmax, ymin, ymax, zNear, zFar);
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 1350 const int xmin = (int) (x + 0.75 - halfSize); local
    [all...]
  /external/opencv/cv/src/
cvshapedescr.cpp 1141 int xmin = 0, ymin = 0, xmax = -1, ymax = -1, i, j, k; local
1186 xmin = size.width;
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 253 FX_FLOAT xmin = 0, ymin = 0, xmax = 1.0f, ymax = 1.0f; local
255 xmin = pDomain->GetNumber(0);
285 if (x < xmin || x > xmax || y < ymin || y > ymax) {
    [all...]

Completed in 1556 milliseconds

1 2