Lines Matching refs:tiles
2149 int t2p_tile_is_right_edge(T2P_TILES tiles, ttile_t tile){ in t2p_tile_is_right_edge() argument
2151 if( ((tile+1) % tiles.tiles_tilecountx == 0) in t2p_tile_is_right_edge()
2152 && (tiles.tiles_edgetilewidth != 0) ){ in t2p_tile_is_right_edge()
2164 int t2p_tile_is_bottom_edge(T2P_TILES tiles, ttile_t tile){ in t2p_tile_is_bottom_edge() argument
2166 if( ((tile+1) > (tiles.tiles_tilecount-tiles.tiles_tilecountx) ) in t2p_tile_is_bottom_edge()
2167 && (tiles.tiles_edgetilelength != 0) ){ in t2p_tile_is_bottom_edge()
2179 int t2p_tile_is_edge(T2P_TILES tiles, ttile_t tile){ in t2p_tile_is_edge() argument
2181 return(t2p_tile_is_right_edge(tiles, tile) | t2p_tile_is_bottom_edge(tiles, tile) ); in t2p_tile_is_edge()
2189 int t2p_tile_is_corner_edge(T2P_TILES tiles, ttile_t tile){ in t2p_tile_is_corner_edge() argument
2191 return(t2p_tile_is_right_edge(tiles, tile) & t2p_tile_is_bottom_edge(tiles, tile) ); in t2p_tile_is_corner_edge()
4448 T2P_TILE* tiles=NULL; in t2p_compose_pdf_page() local
4543 tiles=(t2p->tiff_tiles[t2p->pdf_page]).tiles_tiles; in t2p_compose_pdf_page()
4546 boxp=&(tiles[i2*tilecountx+i].tile_box); in t2p_compose_pdf_page()
4564 boxp=&(tiles[i2*tilecountx+i].tile_box); in t2p_compose_pdf_page()
4580 boxp=&(tiles[i2*tilecountx+i].tile_box); in t2p_compose_pdf_page()
4595 boxp=&(tiles[i2*tilecountx+i].tile_box); in t2p_compose_pdf_page()
4609 t2p_compose_pdf_page_orient( &(tiles[i].tile_box) , 0); in t2p_compose_pdf_page()
4614 boxp=&(tiles[i].tile_box); in t2p_compose_pdf_page()