/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | tiffgt.c | 61 static uint32 xmax, ymax; variable 145 xmax = glutGet(GLUT_SCREEN_WIDTH); in main() 151 xmax = xmax - xmax / 10.0; in main() 235 if (w > xmax) { in initImage() 236 h = (int)(h * ((float)xmax / w)); in initImage() 237 w = xmax; in initImage()
|
/AliOS-Things-master/components/littlevgl/src/lv_objx/ |
A D | lv_line.c | 116 lv_coord_t xmax = LV_COORD_MIN; in lv_line_set_points() local 119 xmax = LV_MATH_MAX(point_a[i].x, xmax); in lv_line_set_points() 124 lv_obj_set_size(line, xmax + style->line.width, ymax + style->line.width); in lv_line_set_points()
|
/AliOS-Things-master/components/SDL2/src/joystick/bsd/ |
A D | SDL_sysjoystick.c | 548 static int x, y, xmin = 0xffff, ymin = 0xffff, xmax = 0, ymax = 0; local 557 if (x > xmax) { 558 xmax = x; 560 if (xmin == xmax) { 562 xmax++; 565 v -= (xmax + xmin + 1) / 2; 566 v *= 32768 / ((xmax - xmin + 1) / 2);
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/ |
A D | detection_postprocess.cc | 75 float xmax; member 342 box.xmax = xcenter + half_w; 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() 390 const float intersection_xmax = std::min<float>(box_i.xmax, box_j.xmax); in ComputeIntersectionOverUnion()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | ssim.c | 71 const int xmax = (xo + VP8_SSIM_KERNEL > W - 1) ? W - 1 in SSIMGetClipped_C() local 77 for (x = xmin; x <= xmax; ++x) { in SSIMGetClipped_C()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | nanosvgrast.h | 889 …fillScanline(unsigned char* scanline, int len, int x0, int x1, int maxWeight, int* xmin, int* xmax) in nsvg__fillScanline() argument 894 if (j > *xmax) *xmax = j; in nsvg__fillScanline() 919 …ned char* scanline, int len, NSVGactiveEdge* e, int maxWeight, int* xmin, int* xmax, char fillRule) in nsvg__fillActiveEdges() argument 934 nsvg__fillScanline(scanline, len, x0, x1, maxWeight, xmin, xmax); in nsvg__fillActiveEdges() 946 nsvg__fillScanline(scanline, len, x0, x1, maxWeight, xmin, xmax); in nsvg__fillActiveEdges() 1119 int xmin, xmax; in nsvg__rasterizeSortedEdges() local 1124 xmax = 0; in nsvg__rasterizeSortedEdges() 1189 nsvg__fillActiveEdges(r->scanline, r->width, active, maxWeight, &xmin, &xmax, fillRule); in nsvg__rasterizeSortedEdges() 1193 if (xmax > r->width-1) xmax = r->width-1; in nsvg__rasterizeSortedEdges() 1194 if (xmin <= xmax) { in nsvg__rasterizeSortedEdges() [all …]
|
/AliOS-Things-master/components/SDL2/src/events/ |
A D | SDL_gesture.c | 347 float xmin,xmax,ymin,ymax; in dollarNormalize() local 401 xmax = centroid.x; in dollarNormalize() 418 if (points[i].x > xmax) xmax = points[i].x; in dollarNormalize() 424 w = xmax-xmin; in dollarNormalize()
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | rdrle.c | 115 width = source->header.xmax - source->header.xmin + 1; in start_input_rle() 118 source->header.xmax = width-1; in start_input_rle()
|
A D | wrrle.c | 189 header.xmax = cinfo->output_width - 1; in finish_output_rle()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | testautomation_rect.c | 129 int xmax = refRect.x + refRect.w - 1; in rect_testIntersectRectAndLineInside() local 132 int x1Ref = SDLTest_RandomIntegerInRange(xmin + 1, xmax - 1); in rect_testIntersectRectAndLineInside() 134 int x2Ref = SDLTest_RandomIntegerInRange(xmin + 1, xmax - 1); in rect_testIntersectRectAndLineInside() 147 x2 = xmax; in rect_testIntersectRectAndLineInside() 151 …ctAndLineResults(intersected, SDL_TRUE, &rect, &refRect, x1, y1, x2, y2, x1Ref, y1Ref, xmax, ymax); in rect_testIntersectRectAndLineInside() 163 x2 = xmax; in rect_testIntersectRectAndLineInside() 167 …RectAndLineResults(intersected, SDL_TRUE, &rect, &refRect, x1, y1, x2, y2, xmin, ymin, xmax, ymax); in rect_testIntersectRectAndLineInside() 171 x2 = xmax; 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 D | get_disto.c | 141 const int xmax = (xo + SSIM_KERNEL > W - 1) ? W - 1 : xo + SSIM_KERNEL; in SSIMGetClipped() local 146 for (x = xmin; x <= xmax; ++x) { in SSIMGetClipped()
|
/AliOS-Things-master/components/ucloud_ai/ |
A D | README.md | 466 box.xmax: 723.5120849609375
|