Searched refs:work_size (Results 1 - 9 of 9) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | zmbvenc.c | 178 int work_size = 0, pkt_size; in encode_frame() local 196 c->work_buf[work_size++] = tpal[0] ^ c->pal[i * 3 + 0]; in encode_frame() 197 c->work_buf[work_size++] = tpal[1] ^ c->pal[i * 3 + 1]; in encode_frame() 198 c->work_buf[work_size++] = tpal[2] ^ c->pal[i * 3 + 2]; in encode_frame() 212 work_size = 768; in encode_frame() 215 memcpy(c->work_buf + work_size, src, avctx->width * c->bypp); in encode_frame() 217 work_size += avctx->width * c->bypp; in encode_frame() 227 mv = c->work_buf + work_size; in encode_frame() 228 memset(c->work_buf + work_size, 0, (bw * bh * 2 + 3) & ~3); in encode_frame() 229 work_size in encode_frame() [all...] |
/third_party/skia/third_party/externals/libwebp/src/dec/ |
H A D | io_dec.c | 302 const size_t work_size = 2 * (size_t)out_width; in InitYUVRescaler() local 310 total_size = ((uint64_t)work_size + 2 * uv_work_size) * sizeof(*work); in InitYUVRescaler() 312 total_size += (uint64_t)work_size * sizeof(*work); in InitYUVRescaler() 338 work + work_size) || in InitYUVRescaler() 341 work + work_size + uv_work_size)) { in InitYUVRescaler() 349 work + work_size + 2 * uv_work_size)) { in InitYUVRescaler() 495 const size_t work_size = 2 * (size_t)out_width; in InitRGBRescaler() local 503 tmp_size1 = (uint64_t)num_rescalers * work_size; in InitRGBRescaler() 528 work + 0 * work_size) || in InitRGBRescaler() 531 work + 1 * work_size) || in InitRGBRescaler() [all...] |
H A D | vp8l_dec.c | 545 const uint64_t work_size = 2 * num_channels * (uint64_t)out_width; in AllocateAndInitRescaler() local 550 work_size * sizeof(*work) + in AllocateAndInitRescaler() 563 memory += work_size * sizeof(*work); in AllocateAndInitRescaler()
|
/third_party/ffmpeg/libavfilter/ |
H A D | opencl.c | 264 size_t *work_size, in ff_opencl_filter_work_size_from_image() 320 work_size[0] = width; in ff_opencl_filter_work_size_from_image() 321 work_size[1] = height; in ff_opencl_filter_work_size_from_image() 263 ff_opencl_filter_work_size_from_image(AVFilterContext *avctx, size_t *work_size, AVFrame *frame, int plane, int block_alignment) ff_opencl_filter_work_size_from_image() argument
|
H A D | opencl.h | 282 size_t *work_size,
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_hardcode.c | 118 .work_size = 1 * 1 * 1,
|
H A D | pvr_cmd_buffer.c | 3072 uint32_t work_size = pipeline->state.shader.work_size; in pvr_compute_update_kernel() local 3075 if (work_size > ROGUE_MAX_INSTANCES_PER_TASK) { in pvr_compute_update_kernel() 3088 work_size = MAX2(work_size, ROGUE_MAX_INSTANCES_PER_TASK); in pvr_compute_update_kernel() 3092 work_size = in pvr_compute_update_kernel() 3093 pvr_compute_flat_pad_workgroup_size(pdevice, work_size, coeff_regs); in pvr_compute_update_kernel() 3095 info.local_size[0] = work_size; in pvr_compute_update_kernel() 3100 pvr_compute_flat_slot_size(pdevice, coeff_regs, false, work_size); in pvr_compute_update_kernel()
|
H A D | pvr_private.h | 1086 uint32_t work_size; member
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 7036 ImVec2 work_size = viewport->WorkSize; local 7038 window_pos.x = (corner & 1) ? (work_pos.x + work_size.x - PAD) : (work_pos.x + PAD); 7039 window_pos.y = (corner & 2) ? (work_pos.y + work_size.y - PAD) : (work_pos.y + PAD);
|
Completed in 28 milliseconds