Lines Matching refs:runs2
246 Run* runs2 = runs_copy_scanline( dst, src ); in runs_copy_scanline_adj() local
249 return runs2; in runs_copy_scanline_adj()
454 Run *runs1, *runs2; in skin_region_equals() local
464 runs2 = r2->runs; in skin_region_equals()
466 if (runs1 == runs2) /* empties and rects */ in skin_region_equals()
473 store2 = runstore_from_runs(runs2); in skin_region_equals()
476 !memcmp( (char*)runs1, (char*)runs2, store1->count*sizeof(Run) ) ) in skin_region_equals()
611 Run *runs1, *runs2; in skin_region_test_intersect() local
633 runs2 = run2_tmp; in skin_region_test_intersect()
634 runs_set_rect(runs2, &r2->bounds); in skin_region_test_intersect()
637 runs2 = r2->runs; in skin_region_test_intersect()
643 while (runs1[0] != YSENTINEL && runs2[0] != YSENTINEL) in skin_region_test_intersect()
647 int ytop2 = runs2[0]; in skin_region_test_intersect()
648 int ybot2 = runs2[1]; in skin_region_test_intersect()
660 runs2 = runs_next_scanline( runs2 ); in skin_region_test_intersect()
679 span2 = runs2 + 2; in skin_region_test_intersect()
733 runs2 = runs_next_scanline( runs2 ); in skin_region_test_intersect()
741 if (runs2[0] != YSENTINEL) { in skin_region_test_intersect()
761 Run* runs2; member
793 o->runs2 = o->runs2_rect; in region_operator_init()
794 runs_set_rect( o->runs2, &r2->bounds ); in region_operator_init()
796 o->runs2 = r2->runs; in region_operator_init()
810 Run* runs2 = o->runs2; in region_operator_do() local
813 int ytop2 = runs2[0]; in region_operator_do()
824 ybot2 = runs2[1]; in region_operator_do()
839 runs = runs_copy_scanline_adj( runs, runs2, ytop2, ybot2 ); in region_operator_do()
840 runs2 = runs_next_scanline(runs2); in region_operator_do()
841 ytop2 = runs2[0]; in region_operator_do()
852 runs = runs_copy_scanline_adj( runs, runs2, ytop2, ytop1 ); in region_operator_do()
864 Run* span2 = runs2 + 2; in region_operator_do()
960 runs2 = runs_next_scanline( runs2 ); in region_operator_do()
961 ytop2 = runs2[0]; in region_operator_do()
976 runs = runs_copy_scanline_adj( runs, runs2, ytop2, runs2[1] ); in region_operator_do()
977 runs2 = runs_next_scanline(runs2); in region_operator_do()
978 ytop2 = runs2[0]; in region_operator_do()