Searched refs:lastrow (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Tools/scripts/ |
D | fixdiv.py | 243 lastrow = None 245 if row == lastrow: 248 lastrow = row 265 lastrow = None 267 if row == lastrow: 269 lastrow = row 294 lastrow = None 297 if row != lastrow: 308 lastrow = None 310 if row != lastrow: [all …]
|
D | finddiv.py | 59 lastrow = None 65 if row != lastrow: 66 lastrow = row
|
/external/ImageMagick/coders/ |
D | palm.c | 281 *lastrow, in ReadPALMImage() local 411 lastrow=(unsigned char *) NULL; in ReadPALMImage() 413 lastrow=(unsigned char *) AcquireQuantumMemory(MagickMax(bytes_per_row, in ReadPALMImage() 414 2*image->columns),sizeof(*lastrow)); in ReadPALMImage() 415 if (lastrow == (unsigned char *) NULL) in ReadPALMImage() 466 one_row[i+bit]=lastrow[i+bit]; in ReadPALMImage() 469 (void) CopyMagickMemory(lastrow, one_row, bytes_per_row); in ReadPALMImage() 535 lastrow=(unsigned char *) RelinquishMagickMemory(lastrow); in ReadPALMImage() 709 *lastrow, in WritePALMImage() local 851 lastrow=(unsigned char *) NULL; in WritePALMImage() [all …]
|
/external/libpng/contrib/gregbook/ |
D | rpng-x.c | 697 ulg i, row, lastrow = 0; in rpng_x_display_image() local 714 for (lastrow = row = 0; row < image_height; ++row) { in rpng_x_display_image() 778 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng_x_display_image() 779 (int)lastrow, image_width, 16); in rpng_x_display_image() 781 lastrow = row + 1; in rpng_x_display_image() 788 for (lastrow = row = 0; row < image_height; ++row) { in rpng_x_display_image() 841 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng_x_display_image() 842 (int)lastrow, image_width, 16); in rpng_x_display_image() 844 lastrow = row + 1; in rpng_x_display_image() 855 if (lastrow < image_height) { in rpng_x_display_image() [all …]
|
D | rpng-win.c | 583 ulg i, row, lastrow; in rpng_win_display_image() local 599 for (lastrow = row = 0; row < image_height; ++row) { in rpng_win_display_image() 639 rect.top = (LONG)lastrow; in rpng_win_display_image() 641 rect.bottom = (LONG)lastrow + 16L; /* possibly off by one? */ in rpng_win_display_image() 644 lastrow = row + 1; in rpng_win_display_image() 649 if (lastrow < image_height) { in rpng_win_display_image() 651 rect.top = (LONG)lastrow; in rpng_win_display_image()
|
D | rpng2-x.c | 1621 ulg i, row, lastrow = 0; in rpng2_x_redisplay_image() local 1646 for (lastrow = row = startrow; row < startrow+height; ++row) { in rpng2_x_redisplay_image() 1763 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng2_x_redisplay_image() 1764 (int)lastrow, rpng2_info.width, 16); in rpng2_x_redisplay_image() 1766 lastrow = row + 1; in rpng2_x_redisplay_image() 1773 for (lastrow = row = startrow; row < startrow+height; ++row) { in rpng2_x_redisplay_image() 1833 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng2_x_redisplay_image() 1834 (int)lastrow, rpng2_info.width, 16); in rpng2_x_redisplay_image() 1836 lastrow = row + 1; in rpng2_x_redisplay_image() 1847 if (lastrow < startrow+height) { in rpng2_x_redisplay_image() [all …]
|