Home
last modified time | relevance | path

Searched refs:ymax (Results 1 – 15 of 15) sorted by relevance

/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/
A Dtiffgt.c61 static uint32 xmax, ymax; variable
146 ymax = glutGet(GLUT_SCREEN_HEIGHT); in main()
152 ymax = ymax - ymax / 10.0; in main()
231 if (h > ymax) { in initImage()
232 w = (int)(w * ((float)ymax / h)); in initImage()
233 h = ymax; in initImage()
/AliOS-Things-master/components/littlevgl/src/lv_objx/
A Dlv_line.c117 lv_coord_t ymax = LV_COORD_MIN; in lv_line_set_points() local
120 ymax = LV_MATH_MAX(point_a[i].y, ymax); in lv_line_set_points()
124 lv_obj_set_size(line, xmax + style->line.width, ymax + style->line.width); in lv_line_set_points()
A Dlv_chart.c87 ext->ymax = LV_CHART_YMAX_DEF; in lv_chart_create()
127 ext->ymax = ext_copy->ymax; in lv_chart_create()
238 if(ext->ymin == ymin && ext->ymax == ymax) return; in lv_chart_set_range()
241 ext->ymax = ymax; in lv_chart_set_range()
778 y_tmp = y_tmp / (ext->ymax - ext->ymin); in lv_chart_draw_lines()
790 y_tmp = y_tmp / (ext->ymax - ext->ymin); in lv_chart_draw_lines()
844 y_tmp = y_tmp / (ext->ymax - ext->ymin); in lv_chart_draw_points()
959 y_tmp = y_tmp / (ext->ymax - ext->ymin); in lv_chart_draw_vertical_lines()
967 y_tmp = y_tmp / (ext->ymax - ext->ymin); in lv_chart_draw_vertical_lines()
1019 y_tmp = y_tmp / (ext->ymax - ext->ymin); in lv_chart_draw_areas()
[all …]
A Dlv_chart.h89 lv_coord_t ymax; /*y max value (used to scale the data)*/ member
162 void lv_chart_set_range(lv_obj_t * chart, lv_coord_t ymin, lv_coord_t ymax);
/AliOS-Things-master/components/py_engine/engine/tools/
A Dgen-cpydiff.py164 ymax = 0
166 ymax = max(ymax, len(contents[j][i].split("\n")))
167 ylengths.append(ymax)
/AliOS-Things-master/components/SDL2/src/joystick/bsd/
A DSDL_sysjoystick.c548 static int x, y, xmin = 0xffff, ymin = 0xffff, xmax = 0, ymax = 0; local
574 if (y > ymax) {
575 ymax = y;
577 if (ymin == ymax) {
579 ymax++;
582 v -= (ymax + ymin + 1) / 2;
583 v *= 32768 / ((ymax - ymin + 1) / 2);
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/
A Ddetection_postprocess.cc74 float ymax; member
341 box.ymax = ycenter + half_h; in DecodeCenterSizeBoxes()
373 if (box.ymin >= box.ymax || box.xmin >= box.xmax) { in ValidateBoxes()
384 const float area_i = (box_i.ymax - box_i.ymin) * (box_i.xmax - box_i.xmin); in ComputeIntersectionOverUnion()
385 const float area_j = (box_j.ymax - box_j.ymin) * (box_j.xmax - box_j.xmin); in ComputeIntersectionOverUnion()
389 const float intersection_ymax = std::min<float>(box_i.ymax, box_j.ymax); in ComputeIntersectionOverUnion()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dssim.c68 const int ymax = (yo + VP8_SSIM_KERNEL > H - 1) ? H - 1 in SSIMGetClipped_C() local
76 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) { in SSIMGetClipped_C()
/AliOS-Things-master/components/SDL2/src/events/
A DSDL_gesture.c347 float xmin,xmax,ymin,ymax; in dollarNormalize() local
403 ymax = centroid.y; in dollarNormalize()
420 if (points[i].y > ymax) ymax = points[i].y; in dollarNormalize()
425 h = ymax-ymin; in dollarNormalize()
/AliOS-Things-master/components/SDL2/test/
A Dtestautomation_rect.c131 int ymax = refRect.y + refRect.h - 1; in rect_testIntersectRectAndLineInside() local
133 int y1Ref = SDLTest_RandomIntegerInRange(ymin + 1, ymax - 1); in rect_testIntersectRectAndLineInside()
135 int y2Ref = SDLTest_RandomIntegerInRange(ymin + 1, ymax - 1); in rect_testIntersectRectAndLineInside()
148 y2 = ymax; in rect_testIntersectRectAndLineInside()
151 …ctAndLineResults(intersected, SDL_TRUE, &rect, &refRect, x1, y1, x2, y2, x1Ref, y1Ref, xmax, ymax); in rect_testIntersectRectAndLineInside()
164 y2 = ymax; in rect_testIntersectRectAndLineInside()
167 …RectAndLineResults(intersected, SDL_TRUE, &rect, &refRect, x1, y1, x2, y2, xmin, ymin, xmax, ymax); in rect_testIntersectRectAndLineInside()
170 y1 = ymax; in rect_testIntersectRectAndLineInside()
175 …RectAndLineResults(intersected, SDL_TRUE, &rect, &refRect, x1, y1, x2, y2, xmin, ymax, xmax, ymin); in rect_testIntersectRectAndLineInside()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/extras/
A Dget_disto.c139 const int ymax = (yo + SSIM_KERNEL > H - 1) ? H - 1 : yo + SSIM_KERNEL; in SSIMGetClipped() local
145 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) { in SSIMGetClipped()
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dwrrle.c191 header.ymax = cinfo->output_height - 1; in finish_output_rle()
A Drdrle.c116 height = source->header.ymax - source->header.ymin + 1; in start_input_rle()
/AliOS-Things-master/components/freetype/src/raster/
A Dftraster.c1559 Long y1, y2, y3, x3, ymin, ymax; in Conic_To() local
1583 ymax = y3; in Conic_To()
1588 ymax = y1; in Conic_To()
1591 if ( y2 < ymin || y2 > ymax ) in Conic_To()
/AliOS-Things-master/components/ucloud_ai/
A DREADME.md467 box.ymax: 482.88070678710938

Completed in 41 milliseconds