Home
last modified time | relevance | path

Searched refs:bot_x (Results 1 – 25 of 34) sorted by relevance

12

/dports/editors/nano/nano-5.9/src/
H A Dcut.c255 if (top == bot && top_x == bot_x) in extract_segment()
266 memmove(top->data + top_x, top->data + bot_x, strlen(top->data + bot_x) + 1); in extract_segment()
268 } else if (top_x == 0 && bot_x == 0) { in extract_segment()
300 last->data[bot_x] = '\0'; in extract_segment()
448 size_t top_x, bot_x; in cut_marked_region() local
450 get_region(&top, &top_x, &bot, &bot_x); in cut_marked_region()
452 extract_segment(top, top_x, bot, bot_x); in cut_marked_region()
588 size_t top_x, bot_x; in copy_marked_region() local
605 saved_byte = botline->data[bot_x]; in copy_marked_region()
606 botline->data[bot_x] = '\0'; in copy_marked_region()
[all …]
H A Dutils.c461 void get_region(linestruct **top, size_t *top_x, linestruct **bot, size_t *bot_x) in get_region() argument
467 *bot_x = openfile->current_x; in get_region()
470 *bot_x = openfile->mark_x; in get_region()
485 size_t top_x, bot_x; in get_range() local
487 get_region(top, &top_x, bot, &bot_x); in get_range()
489 if (bot_x == 0 && *bot != *top && !also_the_last) in get_range()
H A Dsearch.c535 size_t top_x, bot_x; in do_replace_loop() local
540 get_region(&top, &top_x, &bot, &bot_x); in do_replace_loop()
550 openfile->current_x = bot_x; in do_replace_loop()
574 openfile->current_x + match_len > bot_x) || in do_replace_loop()
628 bot_x = openfile->mark_x; in do_replace_loop()
643 bot_x = *real_current_x; in do_replace_loop()
H A Dtext.c2202 size_t top_x, bot_x; in fix_spello() local
2206 get_region(&top, &top_x, &bot, &bot_x); in fix_spello()
2213 openfile->mark_x = bot_x; in fix_spello()
2929 size_t top_x, bot_x; in do_wordlinechar_count() local
2936 get_region(&topline, &top_x, &botline, &bot_x); in do_wordlinechar_count()
2941 chars += mbstrlen(topline->data + top_x) - mbstrlen(botline->data + bot_x); in do_wordlinechar_count()
2946 bot_x = strlen(botline->data); in do_wordlinechar_count()
2953 lines += (bot_x == 0 || (topline == botline && top_x == bot_x)) ? 0 : 1; in do_wordlinechar_count()
2962 (openfile->current == botline && openfile->current_x < bot_x)) { in do_wordlinechar_count()
H A Dfiles.c2055 size_t top_x, bot_x; in write_region_to_file() local
2058 get_region(&topline, &top_x, &botline, &bot_x); in write_region_to_file()
2061 if (bot_x > 0 && !ISSET(NO_NEWLINES)) { in write_region_to_file()
2070 saved_byte = botline->data[bot_x]; in write_region_to_file()
2071 botline->data[bot_x] = '\0'; in write_region_to_file()
2082 botline->data[bot_x] = saved_byte; in write_region_to_file()
H A Dprototypes.h252 void extract_segment(linestruct *top, size_t top_x, linestruct *bot, size_t bot_x);
562 void get_region(linestruct **top, size_t *top_x, linestruct **bot, size_t *bot_x);
H A Dwinio.c2826 size_t top_x, bot_x; in draw_row() local
2835 get_region(&top, &top_x, &bot, &bot_x); in draw_row()
2839 if (bot->lineno > line->lineno || bot_x > till_x) in draw_row()
2840 bot_x = till_x; in draw_row()
2843 if (top_x < till_x && bot_x > from_x) { in draw_row()
2854 if (bot_x < till_x) { in draw_row()
2855 size_t end_col = wideness(line->data, bot_x) - from_col; in draw_row()
/dports/graphics/netpbm/netpbm-10.91.01/generator/pamtris/
H A Dboundaries.c71 varying bot_x; in gen_triangle_boundaries() local
136 int32_to_varying_array(&xy._[2][0], &bot_x, 1); in gen_triangle_boundaries()
155 prepare_for_interpolation(&top_x, &bot_x, &top2bot, xy._[2][1] - xy._[0][1], 1); in gen_triangle_boundaries()
156 prepare_for_interpolation(&mid_x, &bot_x, &mid2bot, xy._[2][1] - xy._[1][1], 1); in gen_triangle_boundaries()
/dports/graphics/c-a-i-r/c-a-i-r-2.19/
H A Dmain.cpp72 void Weight_Rectangle( CML_int * Weights, int top_x, int top_y, int bot_x, int bot_y, int weight ) in Weight_Rectangle() argument
76 for( i = top_x; i < (top_x + (bot_x-top_x)); i++ ) in Weight_Rectangle()
/dports/x11/xscreensaver/xscreensaver-5.44/hacks/glx/
H A Dblinkbox.c430 GLfloat bot_x, GLfloat top_x, GLfloat bot_y, GLfloat top_y) in CheckBoxPos() argument
433 bp->bpos.x = ((bp->bpos.x - bp->bscale.wh) < bot_x) ? bot_x + bp->bscale.wh : bp->bpos.x; in CheckBoxPos()
/dports/graphics/cairo/cairo-1.17.4/src/
H A Dcairo-polygon-reduce.c734 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
736 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
738 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
H A Dcairo-bentley-ottmann.c604 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
606 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
608 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
H A Dcairo-botor-scan-converter.c754 cairo_fixed_t bot_x; in bo_edge_contains_intersect_point() local
756 bot_x = line_compute_intersection_x_for_y (&edge->edge.line, in bo_edge_contains_intersect_point()
758 return bo_intersect_ordinate_32_compare (point->x.ordinate, bot_x, point->x.exactness) < 0; in bo_edge_contains_intersect_point()
/dports/www/firefox-esr/firefox-91.8.0/gfx/cairo/cairo/src/
H A Dcairo-polygon-reduce.c734 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
736 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
738 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
H A Dcairo-bentley-ottmann.c604 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
606 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
608 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
H A Dcairo-botor-scan-converter.c754 cairo_fixed_t bot_x; in bo_edge_contains_intersect_point() local
756 bot_x = line_compute_intersection_x_for_y (&edge->edge.line, in bo_edge_contains_intersect_point()
758 return bo_intersect_ordinate_32_compare (point->x.ordinate, bot_x, point->x.exactness) < 0; in bo_edge_contains_intersect_point()
/dports/www/firefox/firefox-99.0/gfx/cairo/cairo/src/
H A Dcairo-polygon-reduce.c734 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
736 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
738 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
H A Dcairo-bentley-ottmann.c604 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
606 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
608 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/cairo/cairo/src/
H A Dcairo-polygon-reduce.c734 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
736 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
738 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
H A Dcairo-bentley-ottmann.c604 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
606 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
608 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
/dports/games/libretro-2048/libretro-2048-35a299c/cairo/src/
H A Dcairo-bentley-ottmann.c813 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
815 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
817 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
H A Dcairo-botor-scan-converter.c754 cairo_fixed_t bot_x; in bo_edge_contains_intersect_point() local
756 bot_x = line_compute_intersection_x_for_y (&edge->edge.line, in bo_edge_contains_intersect_point()
758 return bo_intersect_ordinate_32_compare (point->x.ordinate, bot_x, point->x.exactness) < 0; in bo_edge_contains_intersect_point()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/cairo/cairo/src/
H A Dcairo-bentley-ottmann.c813 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
815 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
817 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/cairo/cairo/src/
H A Dcairo-bentley-ottmann.c813 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
815 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
817 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/cairo/cairo/src/
H A Dcairo-bentley-ottmann.c813 cairo_fixed_t bot_x; in _cairo_bo_edge_contains_intersect_point() local
815 bot_x = _line_compute_intersection_x_for_y (&edge->edge.line, in _cairo_bo_edge_contains_intersect_point()
817 return _cairo_bo_intersect_ordinate_32_compare (point->x, bot_x) < 0; in _cairo_bo_edge_contains_intersect_point()

12