Searched refs:scratchpad (Results 1 - 12 of 12) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | mpegpicture.c | 102 !FF_ALLOCZ_TYPED_ARRAY(me->scratchpad, alloc_size * 4 * 16 * 2)) { in ff_mpeg_framesize_alloc() 107 me->temp = me->scratchpad; in ff_mpeg_framesize_alloc() 108 sc->rd_scratchpad = me->scratchpad; in ff_mpeg_framesize_alloc() 109 sc->b_scratchpad = me->scratchpad; in ff_mpeg_framesize_alloc() 110 sc->obmc_scratchpad = me->scratchpad + 16; in ff_mpeg_framesize_alloc()
|
H A D | motion_est.c | 645 uint8_t *dest_y = c->scratchpad + offset; in h263_mv4_search() 688 c->scratchpad, stride, 16); in h263_mv4_search() 703 s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad , s->last_picture.f->data[1] + offset, s->uvlinesize, 8); in h263_mv4_search() 704 s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->uvlinesize, 8); in h263_mv4_search() 706 s->hdsp.put_pixels_tab [1][dxy](c->scratchpad , s->last_picture.f->data[1] + offset, s->uvlinesize, 8); in h263_mv4_search() 707 s->hdsp.put_pixels_tab [1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->uvlinesize, 8); in h263_mv4_search() 710 dmin_sum += s->mecc.mb_cmp[1](s, s->new_picture->data[1] + s->mb_x * 8 + s->mb_y * 8 * s->uvlinesize, c->scratchpad, s->uvlinesize, 8); in h263_mv4_search() 711 dmin_sum += s->mecc.mb_cmp[1](s, s->new_picture->data[2] + s->mb_x * 8 + s->mb_y * 8 * s->uvlinesize, c->scratchpad + 8, s->uvlinesize, 8); in h263_mv4_search() 815 s->hdsp.put_no_rnd_pixels_tab[size][dxy](c->scratchpad, ref , stride, h); in interlaced_search() 817 s->hdsp.put_pixels_tab [size][dxy](c->scratchpad, re in interlaced_search() [all...] |
H A D | intrax8.h | 61 uint8_t scratchpad[42]; // size of the block is fixed (8x8 plus padding) member
|
H A D | motion_est.h | 52 uint8_t *scratchpad; /**< data area for the ME algo, so that member
|
H A D | svq1enc.c | 500 av_freep(&s->m.me.scratchpad); in svq1_encode_end() 556 s->m.me.scratchpad = av_mallocz((avctx->width + 64) * in svq1_encode_init() 566 if (!s->m.me.temp || !s->m.me.scratchpad || !s->m.me.map || in svq1_encode_init()
|
H A D | intrax8.c | 294 w->dsp.setup_spatial_compensation(w->dest[chroma], w->scratchpad, in x8_setup_spatial_predictor() 650 w->dsp.spatial_compensation[w->orient](w->scratchpad, in x8_decode_intra_mb()
|
H A D | mpegvideo.c | 426 av_freep(&s->me.scratchpad); in free_duplicate_context() 453 COPY(me.scratchpad); in backup_duplicate_context() 681 s->me.scratchpad = NULL; in clear_context()
|
H A D | snow.c | 708 av_freep(&s->m.me.scratchpad); in ff_snow_common_end()
|
H A D | snowenc.c | 82 s->m.me.scratchpad = av_calloc(avctx->width + 64, 2*16*2*sizeof(uint8_t)); in encode_init() 86 if (!s->m.me.scratchpad || !s->m.me.map || !s->m.me.score_map || !s->m.sc.obmc_scratchpad) in encode_init()
|
/third_party/mesa3d/src/gallium/drivers/panfrost/ |
H A D | pan_job.h | 147 struct panfrost_bo *scratchpad; member
|
H A D | pan_job.c | 435 if (batch->scratchpad) { in panfrost_batch_get_scratchpad() 436 assert(batch->scratchpad->size >= size); in panfrost_batch_get_scratchpad() 438 batch->scratchpad = panfrost_batch_create_bo(batch, size, in panfrost_batch_get_scratchpad() 443 panfrost_batch_add_bo(batch, batch->scratchpad, in panfrost_batch_get_scratchpad() 447 return batch->scratchpad; in panfrost_batch_get_scratchpad()
|
/third_party/python/Lib/test/ |
H A D | _test_multiprocessing.py | 2785 scratchpad = [None] 2787 scratchpad[0] = exc 2791 self.assertTrue(scratchpad[0]) 2792 self.assertIsInstance(scratchpad[0], KeyError) 2804 scratchpad = [None] 2806 scratchpad[0] = exc 2810 wrapped = scratchpad[0] 2812 self.assertIsInstance(scratchpad[0], MaybeEncodingError)
|
Completed in 26 milliseconds