Home
last modified time | relevance | path

Searched refs:log2_scale (Results 1 – 25 of 234) sorted by relevance

12345678910

/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgxchar.c405 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
408 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
411 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
466 *depth = (log2_scale->x + log2_scale->y == 0 ? in compute_glyph_raster_params()
576 1 << log2_scale.x, 1 << log2_scale.y); in set_cache_device()
607 log2_scale.x + log2_scale.y > alpha_bits ? in set_cache_device()
668 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
674 penum->log2_scale.x = log2_scale.x; in set_cache_device()
675 penum->log2_scale.y = log2_scale.y; in set_cache_device()
1054 if (log2_scale.x + log2_scale.y > 0) in show_proceed()
[all …]
H A Dgdevabuf.c161 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
187 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
221 adev->log2_scale.x, in abuf_flush_block()
222 y >> adev->log2_scale.y, in abuf_flush_block()
223 width >> adev->log2_scale.x, 1, in abuf_flush_block()
267 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
288 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
396 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
397 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
398 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
H A Dgspaint.c194 gs_log2_scale_point log2_scale; in alpha_buffer_init() local
198 log2_scale.x = log2_scale.y = log2_alpha_bits; in alpha_buffer_init()
204 width = (ibox.q.x - ibox.p.x) << log2_scale.x; in alpha_buffer_init()
206 band_space = raster << log2_scale.y; in alpha_buffer_init()
207 height = (abuf_nominal / band_space) << log2_scale.y; in alpha_buffer_init()
209 height = 1 << log2_scale.y; in alpha_buffer_init()
215 gs_make_mem_abuf_device(mdev, mem, dev, &log2_scale, in alpha_buffer_init()
216 alpha_bits, ibox.p.x << log2_scale.x); in alpha_buffer_init()
226 scale_paths(pgs, log2_scale.x, log2_scale.y, true); in alpha_buffer_init()
239 scale_paths(pgs, -mdev->log2_scale.x, -mdev->log2_scale.y, in alpha_buffer_release()
H A Dgxccache.c46 gx_compute_char_matrix(const gs_matrix *char_tm, const gs_log2_scale_point *log2_scale, in gx_compute_char_matrix() argument
49 int scale_x = 1 << log2_scale->x; in gx_compute_char_matrix()
50 int scale_y = 1 << log2_scale->y; in gx_compute_char_matrix()
60 const gs_log2_scale_point *log2_scale, bool design_grid, in gx_compute_ccache_key() argument
75 gx_compute_char_matrix(char_tm, log2_scale, mxx, mxy, myx, myy); in gx_compute_ccache_key()
81 const gs_log2_scale_point *log2_scale, bool design_grid, cached_fm_pair **ppair) in gx_lookup_fm_pair() argument
90 gx_compute_ccache_key(pfont, char_tm, log2_scale, design_grid, in gx_lookup_fm_pair()
130 char_tm, log2_scale, design_grid); in gx_lookup_fm_pair()
180 gs_log2_scale_point log2_scale; in gx_lookup_xfont_char() local
225 log2_scale.x = log2_scale.y = 1; in gx_lookup_xfont_char()
[all …]
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgxchar.c405 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
408 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
411 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
466 *depth = (log2_scale->x + log2_scale->y == 0 ? in compute_glyph_raster_params()
576 1 << log2_scale.x, 1 << log2_scale.y); in set_cache_device()
607 log2_scale.x + log2_scale.y > alpha_bits ? in set_cache_device()
668 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
674 penum->log2_scale.x = log2_scale.x; in set_cache_device()
675 penum->log2_scale.y = log2_scale.y; in set_cache_device()
1054 if (log2_scale.x + log2_scale.y > 0) in show_proceed()
[all …]
H A Dgdevabuf.c161 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
187 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
221 adev->log2_scale.x, in abuf_flush_block()
222 y >> adev->log2_scale.y, in abuf_flush_block()
223 width >> adev->log2_scale.x, 1, in abuf_flush_block()
267 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
288 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
396 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
397 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
398 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
H A Dgspaint.c194 gs_log2_scale_point log2_scale; in alpha_buffer_init() local
198 log2_scale.x = log2_scale.y = log2_alpha_bits; in alpha_buffer_init()
204 width = (ibox.q.x - ibox.p.x) << log2_scale.x; in alpha_buffer_init()
206 band_space = raster << log2_scale.y; in alpha_buffer_init()
207 height = (abuf_nominal / band_space) << log2_scale.y; in alpha_buffer_init()
209 height = 1 << log2_scale.y; in alpha_buffer_init()
215 gs_make_mem_abuf_device(mdev, mem, dev, &log2_scale, in alpha_buffer_init()
216 alpha_bits, ibox.p.x << log2_scale.x); in alpha_buffer_init()
226 scale_paths(pgs, log2_scale.x, log2_scale.y, true); in alpha_buffer_init()
239 scale_paths(pgs, -mdev->log2_scale.x, -mdev->log2_scale.y, in alpha_buffer_release()
H A Dgxccache.c46 gx_compute_char_matrix(const gs_matrix *char_tm, const gs_log2_scale_point *log2_scale, in gx_compute_char_matrix() argument
49 int scale_x = 1 << log2_scale->x; in gx_compute_char_matrix()
50 int scale_y = 1 << log2_scale->y; in gx_compute_char_matrix()
60 const gs_log2_scale_point *log2_scale, bool design_grid, in gx_compute_ccache_key() argument
75 gx_compute_char_matrix(char_tm, log2_scale, mxx, mxy, myx, myy); in gx_compute_ccache_key()
81 const gs_log2_scale_point *log2_scale, bool design_grid, cached_fm_pair **ppair) in gx_lookup_fm_pair() argument
90 gx_compute_ccache_key(pfont, char_tm, log2_scale, design_grid, in gx_lookup_fm_pair()
130 char_tm, log2_scale, design_grid); in gx_lookup_fm_pair()
180 gs_log2_scale_point log2_scale; in gx_lookup_xfont_char() local
225 log2_scale.x = log2_scale.y = 1; in gx_lookup_xfont_char()
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgxchar.c381 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
384 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
387 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
394 excess = log2_scale.x + log2_scale.y - alpha_bits; in gx_compute_text_oversampling()
442 *depth = (log2_scale->x + log2_scale->y == 0 ? in compute_glyph_raster_params()
657 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
663 penum->log2_scale.x = log2_scale.x; in set_cache_device()
664 penum->log2_scale.y = log2_scale.y; in set_cache_device()
1233 penum->log2_scale.x = penum->log2_scale.y = 0; in show_proceed()
1291 penum->log2_scale.x = penum->log2_scale.y = 0; in gx_show_text_retry()
[all …]
H A Dgdevabuf.c189 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
220 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
223 (adev->width >> adev->log2_scale.x) << adev->log2_alpha_bits; in abuf_flush_block()
256 adev->log2_scale.x, in abuf_flush_block()
276 int block_height = 1 << adev->log2_scale.y; in abuf_flush()
311 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
332 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
473 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
474 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
475 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgxchar.c407 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
410 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
413 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
420 excess = log2_scale.x + log2_scale.y - alpha_bits; in gx_compute_text_oversampling()
468 *depth = (log2_scale->x + log2_scale->y == 0 ? in compute_glyph_raster_params()
678 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
684 penum->log2_scale.x = log2_scale.x; in set_cache_device()
685 penum->log2_scale.y = log2_scale.y; in set_cache_device()
1236 penum->log2_scale.x = penum->log2_scale.y = 0; in show_proceed()
1292 penum->log2_scale.x = penum->log2_scale.y = 0; in gx_show_text_retry()
[all …]
H A Dgdevabuf.c167 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
198 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
201 (adev->width >> adev->log2_scale.x) << adev->log2_alpha_bits; in abuf_flush_block()
234 adev->log2_scale.x, in abuf_flush_block()
254 int block_height = 1 << adev->log2_scale.y; in abuf_flush()
289 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
310 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
450 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
451 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
452 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
H A Dgspaint.c185 gs_log2_scale_point log2_scale; in alpha_buffer_init() local
189 log2_scale.x = log2_scale.y = log2_alpha_bits; in alpha_buffer_init()
195 width = (ibox.q.x - ibox.p.x) << log2_scale.x; in alpha_buffer_init()
197 band_space = raster << log2_scale.y; in alpha_buffer_init()
198 height = (abuf_nominal / band_space) << log2_scale.y; in alpha_buffer_init()
200 height = 1 << log2_scale.y; in alpha_buffer_init()
211 gs_make_mem_abuf_device(mdev, mem, dev, &log2_scale, in alpha_buffer_init()
212 alpha_bits, ibox.p.x << log2_scale.x, devn); in alpha_buffer_init()
222 scale_paths(pgs, log2_scale.x, log2_scale.y, true); in alpha_buffer_init()
235 scale_paths(pgs, -mdev->log2_scale.x, -mdev->log2_scale.y, in alpha_buffer_release()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgxchar.c381 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
384 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
387 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
394 excess = log2_scale.x + log2_scale.y - alpha_bits; in gx_compute_text_oversampling()
442 *depth = (log2_scale->x + log2_scale->y == 0 ? in compute_glyph_raster_params()
657 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
663 penum->log2_scale.x = log2_scale.x; in set_cache_device()
664 penum->log2_scale.y = log2_scale.y; in set_cache_device()
1233 penum->log2_scale.x = penum->log2_scale.y = 0; in show_proceed()
1291 penum->log2_scale.x = penum->log2_scale.y = 0; in gx_show_text_retry()
[all …]
H A Dgdevabuf.c189 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
220 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
223 (adev->width >> adev->log2_scale.x) << adev->log2_alpha_bits; in abuf_flush_block()
256 adev->log2_scale.x, in abuf_flush_block()
276 int block_height = 1 << adev->log2_scale.y; in abuf_flush()
311 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
332 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
473 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
474 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
475 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgxchar.c407 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
410 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
413 log2_scale.x = log2_scale.y = 0; in gx_compute_text_oversampling()
420 excess = log2_scale.x + log2_scale.y - alpha_bits; in gx_compute_text_oversampling()
468 *depth = (log2_scale->x + log2_scale->y == 0 ? in compute_glyph_raster_params()
678 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
684 penum->log2_scale.x = log2_scale.x; in set_cache_device()
685 penum->log2_scale.y = log2_scale.y; in set_cache_device()
1236 penum->log2_scale.x = penum->log2_scale.y = 0; in show_proceed()
1292 penum->log2_scale.x = penum->log2_scale.y = 0; in gx_show_text_retry()
[all …]
H A Dgdevabuf.c167 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
198 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
201 (adev->width >> adev->log2_scale.x) << adev->log2_alpha_bits; in abuf_flush_block()
234 adev->log2_scale.x, in abuf_flush_block()
254 int block_height = 1 << adev->log2_scale.y; in abuf_flush()
289 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
310 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
450 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
451 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
452 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
H A Dgspaint.c185 gs_log2_scale_point log2_scale; in alpha_buffer_init() local
189 log2_scale.x = log2_scale.y = log2_alpha_bits; in alpha_buffer_init()
195 width = (ibox.q.x - ibox.p.x) << log2_scale.x; in alpha_buffer_init()
197 band_space = raster << log2_scale.y; in alpha_buffer_init()
198 height = (abuf_nominal / band_space) << log2_scale.y; in alpha_buffer_init()
200 height = 1 << log2_scale.y; in alpha_buffer_init()
211 gs_make_mem_abuf_device(mdev, mem, dev, &log2_scale, in alpha_buffer_init()
212 alpha_bits, ibox.p.x << log2_scale.x, devn); in alpha_buffer_init()
222 scale_paths(pgs, log2_scale.x, log2_scale.y, true); in alpha_buffer_init()
235 scale_paths(pgs, -mdev->log2_scale.x, -mdev->log2_scale.y, in alpha_buffer_release()
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgdevabuf.c164 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
190 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
224 adev->log2_scale.x, in abuf_flush_block()
225 y >> adev->log2_scale.y, in abuf_flush_block()
226 width >> adev->log2_scale.x, 1, in abuf_flush_block()
270 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
291 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
389 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
390 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
391 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
H A Dgxchar.c419 1 << log2_scale.x, 1 << log2_scale.y); in set_cache_device()
433 alpha_bits - (log2_scale.x + log2_scale.y); in set_cache_device()
436 if (log2_scale.x <= log2_scale.y) { in set_cache_device()
446 log2_scale.x = log2_scale.y = 0; in set_cache_device()
471 log2_scale.x + log2_scale.y > alpha_bits ? in set_cache_device()
502 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
504 1 << log2_scale.y); in set_cache_device()
508 penum->log2_scale.x = log2_scale.x; in set_cache_device()
509 penum->log2_scale.y = log2_scale.y; in set_cache_device()
956 penum->log2_scale.x = penum->log2_scale.y = 0; in show_proceed()
[all …]
H A Dgspaint.c193 gs_log2_scale_point log2_scale; in alpha_buffer_init() local
197 log2_scale.x = log2_scale.y = log2_alpha_bits; in alpha_buffer_init()
203 width = (ibox.q.x - ibox.p.x) << log2_scale.x; in alpha_buffer_init()
205 band_space = raster << log2_scale.y; in alpha_buffer_init()
206 height = (abuf_nominal / band_space) << log2_scale.y; in alpha_buffer_init()
208 height = 1 << log2_scale.y; in alpha_buffer_init()
214 gs_make_mem_abuf_device(mdev, mem, dev, &log2_scale, in alpha_buffer_init()
215 alpha_bits, ibox.p.x << log2_scale.x); in alpha_buffer_init()
225 scale_paths(pgs, log2_scale.x, log2_scale.y, true); in alpha_buffer_init()
237 scale_paths(pgs, -mdev->log2_scale.x, -mdev->log2_scale.y, in alpha_buffer_release()
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgdevabuf.c164 adev->log2_scale = *pscale; in gs_make_mem_abuf_device()
190 int block_height = 1 << adev->log2_scale.y; in abuf_flush_block()
224 adev->log2_scale.x, in abuf_flush_block()
225 y >> adev->log2_scale.y, in abuf_flush_block()
226 width >> adev->log2_scale.x, 1, in abuf_flush_block()
270 int bh = 1 << mdev->log2_scale.y; in y_transfer_init()
291 int bh = 1 << mdev->log2_scale.y; in y_transfer_next()
389 pbox->p.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
390 pbox->p.y <<= mdev->log2_scale.y; in mem_abuf_get_clipping_box()
391 pbox->q.x <<= mdev->log2_scale.x; in mem_abuf_get_clipping_box()
[all …]
H A Dgxchar.c419 1 << log2_scale.x, 1 << log2_scale.y); in set_cache_device()
433 alpha_bits - (log2_scale.x + log2_scale.y); in set_cache_device()
436 if (log2_scale.x <= log2_scale.y) { in set_cache_device()
446 log2_scale.x = log2_scale.y = 0; in set_cache_device()
471 log2_scale.x + log2_scale.y > alpha_bits ? in set_cache_device()
502 if ((log2_scale.x | log2_scale.y) != 0) in set_cache_device()
504 1 << log2_scale.y); in set_cache_device()
508 penum->log2_scale.x = log2_scale.x; in set_cache_device()
509 penum->log2_scale.y = log2_scale.y; in set_cache_device()
956 penum->log2_scale.x = penum->log2_scale.y = 0; in show_proceed()
[all …]
H A Dgspaint.c193 gs_log2_scale_point log2_scale; in alpha_buffer_init() local
197 log2_scale.x = log2_scale.y = log2_alpha_bits; in alpha_buffer_init()
203 width = (ibox.q.x - ibox.p.x) << log2_scale.x; in alpha_buffer_init()
205 band_space = raster << log2_scale.y; in alpha_buffer_init()
206 height = (abuf_nominal / band_space) << log2_scale.y; in alpha_buffer_init()
208 height = 1 << log2_scale.y; in alpha_buffer_init()
214 gs_make_mem_abuf_device(mdev, mem, dev, &log2_scale, in alpha_buffer_init()
215 alpha_bits, ibox.p.x << log2_scale.x); in alpha_buffer_init()
225 scale_paths(pgs, log2_scale.x, log2_scale.y, true); in alpha_buffer_init()
237 scale_paths(pgs, -mdev->log2_scale.x, -mdev->log2_scale.y, in alpha_buffer_release()
/dports/www/firefox-esr/firefox-91.8.0/third_party/aom/aom_dsp/
H A Dintrapred.c92 const int log2_scale = 1 + sm_weight_log2_scale; in smooth_predictor() local
95 log2_scale + sizeof(*dst)); in smooth_predictor()
109 dst[c] = divide_round(this_pred, log2_scale); in smooth_predictor()
121 const int log2_scale = sm_weight_log2_scale; in smooth_v_predictor() local
138 dst[c] = divide_round(this_pred, log2_scale); in smooth_v_predictor()
150 const int log2_scale = sm_weight_log2_scale; in smooth_h_predictor() local
167 dst[c] = divide_round(this_pred, log2_scale); in smooth_h_predictor()
411 const int log2_scale = 1 + sm_weight_log2_scale; in highbd_smooth_predictor() local
428 dst[c] = divide_round(this_pred, log2_scale); in highbd_smooth_predictor()
442 const int log2_scale = sm_weight_log2_scale; in highbd_smooth_v_predictor() local
[all …]

12345678910