Searched refs:lastrow (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/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/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 | 698 ulg i, row, lastrow = 0; in rpng_x_display_image() local 715 for (lastrow = row = 0; row < image_height; ++row) { in rpng_x_display_image() 779 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng_x_display_image() 780 (int)lastrow, image_width, 16); in rpng_x_display_image() 782 lastrow = row + 1; in rpng_x_display_image() 789 for (lastrow = row = 0; row < image_height; ++row) { in rpng_x_display_image() 842 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng_x_display_image() 843 (int)lastrow, image_width, 16); in rpng_x_display_image() 845 lastrow = row + 1; in rpng_x_display_image() 856 if (lastrow < image_height) { in rpng_x_display_image() [all …]
|
D | rpng-win.c | 590 ulg i, row, lastrow; in rpng_win_display_image() local 606 for (lastrow = row = 0; row < image_height; ++row) { in rpng_win_display_image() 646 rect.top = (LONG)lastrow; in rpng_win_display_image() 648 rect.bottom = (LONG)lastrow + 16L; /* possibly off by one? */ in rpng_win_display_image() 651 lastrow = row + 1; in rpng_win_display_image() 656 if (lastrow < image_height) { in rpng_win_display_image() 658 rect.top = (LONG)lastrow; in rpng_win_display_image()
|
D | rpng2-x.c | 1630 ulg i, row, lastrow = 0; in rpng2_x_redisplay_image() local 1655 for (lastrow = row = startrow; row < startrow+height; ++row) { in rpng2_x_redisplay_image() 1772 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng2_x_redisplay_image() 1773 (int)lastrow, rpng2_info.width, 16); in rpng2_x_redisplay_image() 1775 lastrow = row + 1; in rpng2_x_redisplay_image() 1782 for (lastrow = row = startrow; row < startrow+height; ++row) { in rpng2_x_redisplay_image() 1842 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0, in rpng2_x_redisplay_image() 1843 (int)lastrow, rpng2_info.width, 16); in rpng2_x_redisplay_image() 1845 lastrow = row + 1; in rpng2_x_redisplay_image() 1856 if (lastrow < startrow+height) { in rpng2_x_redisplay_image() [all …]
|