HomeSort by relevance Sort by last modified time
    Searched defs:ymin (Results 1 - 18 of 18) sorted by null

  /external/pdfium/third_party/agg23/
agg_renderer_base.h 72 int ymin() const function in class:agg::renderer_base
115 if(y < ymin()) {
139 if(y < ymin()) {
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
utils.h 40 simdscalari ymin; member in struct:simdBBox
49 simd16scalari ymin; member in struct:simd16BBox
59 typename SIMD_T::Integer ymin; member in struct:SIMDBBOX_T
api.h 48 int32_t ymin; ///< inclusive member in struct:SWR_RECT
54 return (this->ymin == rhs.ymin &&
68 this->ymin = std::max(this->ymin, other.ymin);
73 ymax - ymin < 0)
76 ymin = ymax = xmin = xmax = 0;
89 this->ymin = std::min(this->ymin, other.ymin)
    [all...]
binner.cpp 357 typename SIMD_T::Integer vTopLeftY = SIMD_T::template slli_epi32<ER_SIMD_TILE_Y_SHIFT + FIXED_POINT_SHIFT>(er_bbox.ymin);
862 typename SIMD_T::Integer ymin = SIMD_T::add_epi32(bbox.ymin, SIMD_T::set1_epi32(127)); local
    [all...]
  /external/webp/src/dsp/
ssim.c 67 const int ymin = (yo - VP8_SSIM_KERNEL < 0) ? 0 : yo - VP8_SSIM_KERNEL; local
74 src1 += ymin * stride1;
75 src2 += ymin * stride2;
76 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) {
  /external/mesa3d/src/mesa/swrast/
s_points.c 194 GLint xmin, xmax, ymin, ymax, iy; local
205 ymin = (GLint) (y - iRadius);
213 ymin = (GLint) (y + 0.501F) - iRadius;
214 ymax = ymin + iSize - 1;
218 for (iy = ymin; iy <= ymax; iy++) {
313 const GLint ymin = (GLint) (y - radius); local
317 for (iy = ymin; iy <= ymax; iy++) {
410 GLint xmin, xmax, ymin, ymax, ix, iy; local
420 ymin = (GLint) (y - iRadius);
428 ymin = (GLint) (y + 0.501F) - iRadius
    [all...]
s_span.c 708 const GLint ymin = ctx->DrawBuffer->_Ymin; local
725 & (y[i] >= ymin) & (y[i] < ymax);
733 & (y[i] >= ymin) & (y[i] < ymax);
746 if (y < ymin || y >= ymax || x + n <= xmin || x >= xmax) {
820 assert(span->y >= ymin);
    [all...]
  /external/skia/src/pdf/
SkPDFBitmap.cpp 48 int ymin = SkTMax(0, yOrig - 1); local
52 for (int y = ymin; y <= ymax; ++y) {
  /external/skqp/src/pdf/
SkPDFBitmap.cpp 48 int ymin = SkTMax(0, yOrig - 1); local
52 for (int y = ymin; y <= ymax; ++y) {
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
demo.c 719 GLfloat xmin, xmax, ymin, ymax; local
722 ymin = -ymax;
723 xmin = ymin * aspect;
726 glFrustum(xmin, xmax, ymin, ymax, zNear, zFar);
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_context.h 67 GLint xmin, ymin, xmax, ymax; member in struct:st_bitmap_cache
  /external/tensorflow/tensorflow/lite/kernels/
detection_postprocess.cc 49 // BoxCorner represents the lower left corner (xmin, ymin) and
57 // ymin = ycenter - half_h
62 float ymin; member in struct:tflite::ops::custom::detection_postprocess::BoxCornerEncoding
269 // Decode the boxes to get (ymin, xmin, ymax, xmax) based on the anchors
310 box.ymin = ycenter - half_h;
340 // ymax>=ymin, xmax>=xmin
342 if (box.ymin >= box.ymax || box.xmin >= box.xmax) {
353 const float area_i = (box_i.ymax - box_i.ymin) * (box_i.xmax - box_i.xmin);
354 const float area_j = (box_j.ymax - box_j.ymin) * (box_j.xmax - box_j.xmin);
356 const float intersection_ymin = std::max<float>(box_i.ymin, box_j.ymin)
    [all...]
  /external/blktrace/iowatcher/
main.c 324 u64 ymin; local
347 filter_outliers(trace, tf->min_offset, tf->max_offset, &ymin, &ymax);
348 tf->min_offset = ymin;
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 1401 const int ymin = (int) (y + 0.25 - halfSize); local
    [all...]