| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/ |
| H A D | edge.hpp | 27 mapbox::geometry::point<T> bot; member 31 edge(edge<T>&& e) noexcept : bot(std::move(e.bot)), top(std::move(e.top)), dx(std::move(e.dx)) { in edge() 35 bot = std::move(e.bot); in operator =() 44 : bot(static_cast<T>(current.x), static_cast<T>(current.y)), in edge() 50 bot = mapbox::geometry::point<T>(static_cast<T>(next_pt.x), static_cast<T>(next_pt.y)); in edge() 52 double dy = static_cast<double>(top.y - bot.y); in edge() 56 dx = static_cast<double>(top.x - bot.x) / dy; in edge() 72 return (e1.top.y - e1.bot.y) * (e2.top.x - e2.bot.x) == in slopes_equal() 73 (e1.top.x - e1.bot.x) * (e2.top.y - e2.bot.y); in slopes_equal() 86 return static_cast<double>(edge.bot.x) + in get_current_x() [all …]
|
| H A D | build_edges.hpp | 90 auto const& back_bot = edges.back().bot; in build_edge_list() 143 if (f.bot == b.top) { in build_edge_list() 144 if (f.top == b.bot) { in build_edge_list() 148 f.bot = b.bot; in build_edge_list() 152 } else if (f.top == b.bot) { in build_edge_list() 156 } else if (f.top == b.top && f.bot == b.bot) { in build_edge_list() 161 if (point_2_is_between_point_1_and_point_3(f.top, f.bot, b.bot)) { in build_edge_list() 162 b.top = f.bot; in build_edge_list() 165 f.top = b.bot; in build_edge_list() 169 } else if (f.bot == b.bot) { in build_edge_list() [all …]
|
| H A D | local_minimum_util.hpp | 21 std::swap(e.top.x, e.bot.x); in reverse_horizontal() 46 (edge->top == prev_edge->bot || edge->top == prev_edge->top)) { in start_list_on_local_maximum() 51 (prev_edge->top == edge->top || prev_edge->top == edge->bot)) { in start_list_on_local_maximum() 83 if ((!next_edge_is_horizontal && !edge_is_horizontal && edge->bot == next_edge->bot)) { in create_bound_towards_minimum() 88 (next_edge->bot == edge->bot || next_edge->bot == edge->top)) { in create_bound_towards_minimum() 93 (edge->bot == next_edge->top || edge->bot == next_edge->bot)) { in create_bound_towards_minimum() 136 (next_edge->top == edge->bot || next_edge->top == edge->top)) { in create_bound_towards_maximum() 141 (edge->top == next_edge->top || edge->top == next_edge->bot)) { in create_bound_towards_maximum() 167 if (is_horizontal(*edge_itr) && next_itr->bot != edge_itr->top) { in fix_horizontals() 172 if (is_horizontal(*edge_itr) && prev_itr->top != edge_itr->bot) { in fix_horizontals() [all …]
|
| H A D | wagyu.hpp | 83 max = lm.left_bound.edges.back().bot; in get_bounds() 87 max.y = std::max(max.y, lm.left_bound.edges.back().bot.y); in get_bounds() 92 max.x = std::max(max.x, e.bot.x); in get_bounds() 93 min.x = std::min(min.x, e.bot.x); in get_bounds() 99 max = lm.right_bound.edges.back().bot; in get_bounds() 103 max.y = std::max(max.y, lm.right_bound.edges.back().bot.y); in get_bounds() 108 max.x = std::max(max.x, e.bot.x); in get_bounds() 109 min.x = std::min(min.x, e.bot.x); in get_bounds()
|
| H A D | snap_rounding.hpp | 57 if (current_edge->bot.x < current_edge->top.x) { in horizontals_at_top_scanbeam() 63 (*bnd_next)->current_edge->bot.y != top_y) { in horizontals_at_top_scanbeam() 79 (*bnd_prev)->current_edge->bot.y != top_y) { in horizontals_at_top_scanbeam() 136 add_to_hot_pixels((*lm)->left_bound.edges.front().bot, manager); in insert_local_minima_into_ABL_hot_pixel() 141 left_bound.current_x = static_cast<double>(left_bound.current_edge->bot.x); in insert_local_minima_into_ABL_hot_pixel() 144 right_bound.current_x = static_cast<double>(right_bound.current_edge->bot.x); in insert_local_minima_into_ABL_hot_pixel()
|
| H A D | local_minimum.hpp | 98 out << "[[" << e.bot.x << "," << e.bot.y << "],["; in output_all_edges() 107 out << "[[" << e.bot.x << "," << e.bot.y << "],["; in output_all_edges()
|
| H A D | ring_util.hpp | 105 if (edge.bot.x < edge.top.x) { in get_edge_min_x() 106 return edge.bot.x; in get_edge_min_x() 114 double lower_range_y = static_cast<double>(current_y - edge.bot.y) - 0.5; in get_edge_min_x() 115 double return_val = static_cast<double>(edge.bot.x) + edge.dx * lower_range_y; in get_edge_min_x() 120 if (current_y == edge.bot.y) { in get_edge_min_x() 121 return edge.bot.x; in get_edge_min_x() 124 static_cast<double>(edge.bot.x) + in get_edge_min_x() 125 edge.dx * (static_cast<double>(current_y - edge.bot.y) + 0.5 - rounding_offset_y); in get_edge_min_x() 135 if (edge.bot.x > edge.top.x) { in get_edge_max_x() 136 return edge.bot.x; in get_edge_max_x() [all …]
|
| H A D | active_bound_list.hpp | 54 out << "[[" << bnd->current_edge->bot.x << "," << bnd->current_edge->bot.y << "],["; in output_edges() 154 bnd.current_x = static_cast<double>(current_edge->bot.x); in next_edge_in_bound() 353 (*lb_abl_itr)->current_edge->bot, rings); in insert_lm_left_and_right_bound()
|
| H A D | intersect_util.hpp | 52 T2 p0_x = static_cast<T2>(e1.bot.x); in get_edge_intersection() 53 T2 p0_y = static_cast<T2>(e1.bot.y); in get_edge_intersection() 56 T2 p2_x = static_cast<T2>(e2.bot.x); in get_edge_intersection() 57 T2 p2_y = static_cast<T2>(e2.bot.y); in get_edge_intersection()
|
| H A D | process_horizontal.hpp | 36 (hp_itr->y == scanline_y && hp_itr->x < (*horz_bound)->current_edge->bot.x))) { in process_horizontal_left_to_right() 236 if ((*horz_bound)->current_edge->bot.x < (*horz_bound)->current_edge->top.x) { in process_horizontal()
|
| H A D | process_maxima.hpp | 97 add_point_to_ring(*(*bnd), (*bnd)->current_edge->bot, manager); in process_edges_at_top_of_scanbeam()
|
| /OK3568_Linux_fs/kernel/drivers/video/rockchip/mpp/ |
| H A D | mpp_iep2.c | 416 struct iep2_addr *top, *bot; in iep2_config() local 422 bot = &cfg->src[0]; in iep2_config() 426 bot = &cfg->src[1]; in iep2_config() 430 bot = &cfg->src[0]; in iep2_config() 437 mpp_write_relaxed(mpp, IEP2_REG_SRC_ADDR_NXTY, bot->y); in iep2_config() 438 mpp_write_relaxed(mpp, IEP2_REG_SRC_ADDR_NXTUV, bot->cbcr); in iep2_config() 439 mpp_write_relaxed(mpp, IEP2_REG_SRC_ADDR_NXTV, bot->cr); in iep2_config()
|
| /OK3568_Linux_fs/external/xserver/dix/ |
| H A D | region.c | 596 short bot; /* Bottom of non-overlapping band */ in RegionOp() local 695 bot = min(r1->y2, r2y1); in RegionOp() 696 if (top != bot) { in RegionOp() 698 RegionAppendNonO(newReg, r1, r1BandEnd, top, bot); in RegionOp() 707 bot = min(r2->y2, r1y1); in RegionOp() 708 if (top != bot) { in RegionOp() 710 RegionAppendNonO(newReg, r2, r2BandEnd, top, bot); in RegionOp()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-connectivity/irssi/ |
| H A D | irssi_1.2.3.bb | 18 --with-bot \
|
| /OK3568_Linux_fs/external/xserver/miext/rootless/ |
| H A D | rootlessGC.c | 1183 int top, bot, Min, Max; in RootlessImageText8() local 1187 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font)); in RootlessImageText8() 1201 box.y2 = dst->y + y + bot; in RootlessImageText8() 1274 int top, bot, Min, Max; in RootlessImageText16() local 1278 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font)); in RootlessImageText16() 1292 box.y2 = dst->y + y + bot; in RootlessImageText16() 1366 int top, bot, width = 0; in RootlessImageGlyphBlt() local 1372 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font)); in RootlessImageGlyphBlt() 1396 box.y2 = dst->y + y + bot; in RootlessImageGlyphBlt()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-bsp/flashrom/flashrom/ |
| H A D | 0001-typecast-enum-conversions-explicitly.patch | 14 Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/ |
| H A D | cve-2023-24329.patch | 2 From: "Miss Islington (bot)"
|
| /OK3568_Linux_fs/buildroot/package/flashrom/ |
| H A D | 0001-Makefile-Fix-building-on-AArch64-NixOS.patch | 34 Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
|
| /OK3568_Linux_fs/external/xserver/mi/ |
| H A D | miarc.c | 225 char top, bot, hole; member 427 if (spdata->bot) { in miComputeCircleSpans() 582 if (spdata->bot) { in miComputeEllipseSpans() 762 spdata->bot = !(parc->height & 1); in miComputeWideEllipse() 852 if (spdata->bot) { in miFillWideEllipse() 3554 if (spdata->bot && miny <= y && y <= maxy) { in drawQuadrant()
|
| /OK3568_Linux_fs/external/xserver/miext/damage/ |
| H A D | damage.c | 606 pixman_fixed_t l = min(t->top.l, t->bot.l); in damageAddTraps() 607 pixman_fixed_t r = max(t->top.r, t->bot.r); in damageAddTraps() 611 int y2 = y + pixman_fixed_to_int(pixman_fixed_ceil(t->bot.y)); in damageAddTraps()
|
| /OK3568_Linux_fs/yocto/poky/meta-yocto-bsp/ |
| H A D | README.hardware.md | 75 - These boards can be either 32bot or 64bit modes depending on firmware
|
| /OK3568_Linux_fs/yocto/poky/ |
| H A D | README.hardware.md | 75 - These boards can be either 32bot or 64bit modes depending on firmware
|
| /OK3568_Linux_fs/buildroot/package/babeltrace2/ |
| H A D | 0001-configure-simplify-warning-flags-detection.patch | 470 - # we enable -Werror, disable a flag, and a build bot passes CFLAGS=-Wall,
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/files/ |
| H A D | buildhistory_filelist1.txt | 1550 -rw-r--r-- root root 6514 ./usr/include/bash/config-bot.h
|
| H A D | buildhistory_filelist2.txt | 1551 -rw-r--r-- root root 6514 ./usr/include/bash/config-bot.h
|