Home
last modified time | relevance | path

Searched refs:CUPS_TILE_SIZE (Results 1 – 2 of 2) sorted by relevance

/third_party/cups-filters/cupsfilters/
Dimage.c143 twidth = bpp * (CUPS_TILE_SIZE - 1); in cupsImageGetCol()
152 count = CUPS_TILE_SIZE - (y & (CUPS_TILE_SIZE - 1)); in cupsImageGetCol()
251 count = CUPS_TILE_SIZE - (x & (CUPS_TILE_SIZE - 1)); in cupsImageGetRow()
453 twidth = bpp * (CUPS_TILE_SIZE - 1); in _cupsImagePutCol()
454 tilex = x / CUPS_TILE_SIZE; in _cupsImagePutCol()
455 tiley = y / CUPS_TILE_SIZE; in _cupsImagePutCol()
467 count = CUPS_TILE_SIZE - (y & (CUPS_TILE_SIZE - 1)); in _cupsImagePutCol()
527 tilex = x / CUPS_TILE_SIZE; in _cupsImagePutRow()
528 tiley = y / CUPS_TILE_SIZE; in _cupsImagePutRow()
539 count = CUPS_TILE_SIZE - (x & (CUPS_TILE_SIZE - 1)); in _cupsImagePutRow()
[all …]
Dimage-private.h49 # define CUPS_TILE_SIZE 256 /* 256x256 pixel tiles */ macro