Home
last modified time | relevance | path

Searched refs:round_start (Results 1 – 2 of 2) sorted by relevance

/external/fonttools/Lib/fontTools/colorLib/
Dgeometry.py97 round_start = start.round()
99 inside_after_round = round_start.inside(round_end)
102 return round_start
105 direction = _vector_between(round_end.centre, round_start.centre)
109 direction = _vector_between(round_start.centre, round_end.centre)
130 if round_start.concentric(round_end):
132 round_start.radius += radius_delta
133 assert round_start.radius >= 0
135 round_start.move(dx, dy)
136 if inside_before_round == round_start.inside(round_end):
[all …]
/external/squashfs-tools/squashfs-tools/
Dmksquashfs.c952 unsigned long long round_start = round_up_block(start_block); in write_block_map_entry() local
954 if (round_start && total_size && round_start <= round_end) { in write_block_map_entry()
957 if (round_start == round_end) in write_block_map_entry()
958 fprintf(block_map_file, "%s %lld\n", sub_path, round_start); in write_block_map_entry()
960 fprintf(block_map_file, "%s %lld-%lld\n", sub_path, round_start, round_end); in write_block_map_entry()