Home
last modified time | relevance | path

Searched refs:lastx (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/third_party/libtiff/
Dtif_fax3.h290 if (a0 != lastx) { \
291 badlength(a0, lastx); \
292 while (a0 > lastx && pa > thisrun) \
294 if (a0 < lastx) { \
299 SETVALUE(lastx - a0); \
300 } else if (a0 > lastx) { \
301 SETVALUE(lastx); \
341 if (a0 >= lastx) \
363 if (a0 >= lastx) \
381 if (pa != thisrun) while (b1 <= a0 && b1 < lastx) { \
[all …]
Dtif_fax3.c107 int lastx = sp->b.rowpixels; /* last element in row */ \
201 Fax3BadLength(const char* module, TIFF* tif, uint32 line, uint32 a0, uint32 lastx) in Fax3BadLength() argument
204 a0 < lastx ? "Premature EOL" : "Line length mismatch", in Fax3BadLength()
207 a0, lastx); in Fax3BadLength()
209 #define badlength(a0,lastx) Fax3BadLength(module, tif, sp->line, a0, lastx) argument
249 (*sp->fill)(buf, thisrun, pa, lastx); in Fax3Decode1D()
257 (*sp->fill)(buf, thisrun, pa, lastx); in Fax3Decode1D()
304 (*sp->fill)(buf, thisrun, pa, lastx); in Fax3Decode2D()
314 (*sp->fill)(buf, thisrun, pa, lastx); in Fax3Decode2D()
398 _TIFFFax3fillruns(unsigned char* buf, uint32* runs, uint32* erun, uint32 lastx) in _TIFFFax3fillruns() argument
[all …]
/external/python/cpython2/Demo/tkinter/matt/
Dcanvas-moving-w-mouse.py11 self.lastx = event.x
16 self.draw.move(CURRENT, event.x - self.lastx, event.y - self.lasty)
17 self.lastx = event.x
Dprinting-coords-of-items.py23 self.lastx = event.x
27 self.draw.move(CURRENT, event.x - self.lastx, event.y - self.lasty)
28 self.lastx = event.x
Dcanvas-moving-or-creating.py25 self.lastx = event.x
29 self.draw.move(CURRENT, event.x - self.lastx, event.y - self.lasty)
30 self.lastx = event.x
Dcanvas-mult-item-sel.py29 self.lastx = event.x
34 self.draw.move("selected", event.x - self.lastx, event.y - self.lasty)
35 self.lastx = event.x
/external/python/cpython2/Demo/tkinter/guido/
Dcanvasevents.py148 self.lastx = event.x
156 dx = event.x - self.lastx
158 self.lastx = event.x
Dsolitaire.py364 self.lastx = event.x
372 dx = event.x - self.lastx
374 self.lastx = event.x
Dsortvisu.py216 self.lastx = event.x
223 self.item.move(event.x - self.lastx, event.y - self.lasty)
224 self.lastx = event.x
/external/python/cpython3/Tools/demo/
Dsortvisu.py215 self.lastx = event.x
223 event.x - self.lastx, event.y - self.lasty)
224 self.lastx = event.x
/external/u-boot/drivers/video/
Dcfb_console.c523 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE; in video_invertchar() local
528 for (x = firstx; x < lastx; x++) { in video_invertchar()