Lines Matching refs:offsetp
410 double *offsetp) in dash_arc() argument
415 if (*offsetp >= dash_width) { in dash_arc()
416 double rem = dash_width + gap_width - *offsetp; in dash_arc()
418 *offsetp += length - pos; in dash_arc()
423 *offsetp = 0.0; in dash_arc()
427 double rem = dash_width - *offsetp; in dash_arc()
430 *offsetp += length - pos; in dash_arc()
437 *offsetp = dash_width; in dash_arc()
448 double *offsetp) in dash_line() argument
456 if (*offsetp >= dash_width) { in dash_line()
457 double rem = dash_width + gap_width - *offsetp; in dash_line()
459 *offsetp += length - pos; in dash_line()
464 *offsetp = 0.0; in dash_line()
468 double rem = dash_width - *offsetp; in dash_line()
471 *offsetp += length - pos; in dash_line()
478 *offsetp = dash_width; in dash_line()
546 double *offsetp) in dot_arc() argument
551 if (*offsetp == 0.0) { in dot_arc()
555 double rem = gap_width - *offsetp; in dot_arc()
557 *offsetp += length - pos; in dot_arc()
562 *offsetp = 0.0; in dot_arc()
571 double *offsetp) in dot_line() argument
579 if (*offsetp == 0.0) in dot_line()
581 double rem = gap_width - *offsetp; in dot_line()
583 *offsetp += length - pos; in dot_line()
588 *offsetp = 0.0; in dot_line()