Searched refs:dxabs (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/kernel/lib/gfx/
H A Dgfx.cpp246 uint dxabs = (dx > 0) ? dx : -dx; local
250 uint y = dxabs >> 1;
255 if (dxabs >= dyabs) {
257 for (uint i = 0; i < dxabs; i++) {
259 if (y >= dxabs) {
260 y -= dxabs;
269 x += dxabs;
/fuchsia/zircon/system/ulib/gfx/
H A Dgfx.c386 unsigned dxabs = (dx > 0) ? dx : -dx; local
390 unsigned y = dxabs >> 1;
395 if (dxabs >= dyabs) {
397 for (unsigned i = 0; i < dxabs; i++) {
399 if (y >= dxabs) {
400 y -= dxabs;
409 x += dxabs;

Completed in 19 milliseconds