Home
last modified time | relevance | path

Searched refs:bwidth (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_kerndeint.c134 int src_linesize, psrc_linesize, dst_linesize, bwidth; in filter_frame() local
156 bwidth = kerndeint->tmp_bwidth[plane]; in filter_frame()
167 memcpy(dstp, srcp, bwidth); in filter_frame()
173 …dstp_saved + order * dst_linesize, srcp_saved + (1 - order) * src_linesize, bwidth); in filter_frame()
174 …dstp_saved + (2 + order ) * dst_linesize, srcp_saved + (3 - order) * src_linesize, bwidth); in filter_frame()
175 …dstp_saved + (h - 2 + order) * dst_linesize, srcp_saved + (h - 1 - order) * src_linesize, bwidth); in filter_frame()
176 …dstp_saved + (h - 4 + order) * dst_linesize, srcp_saved + (h - 3 - order) * src_linesize, bwidth); in filter_frame()
202 for (x = 0; x < bwidth; x++) { in filter_frame()
284 av_image_copy_plane(dstp, psrc_linesize, srcp, src_linesize, bwidth, h); in filter_frame()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_compute.c175 int bwidth, bheight, bdepth; in softpipe_launch_grid() local
182 bwidth = cs->info.properties[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH]; in softpipe_launch_grid()
185 num_threads_in_group = bwidth * bheight * bdepth; in softpipe_launch_grid()
202 for (w = 0; w < bwidth; w++) { in softpipe_launch_grid()
203 int idx = w + (h * bwidth) + (d * bheight * bwidth); in softpipe_launch_grid()
211 bwidth, bheight, bdepth, in softpipe_launch_grid()
/third_party/weston/clients/
Dsimple-damage.c387 int ret = 0, bwidth, bheight; in window_next_buffer() local
402 bwidth = window->width * window->scale; in window_next_buffer()
409 bwidth = window->height * window->scale; in window_next_buffer()
416 bwidth, bheight, in window_next_buffer()
511 int bwidth, bheight, bborder, bpitch, bradius; in redraw() local
533 bwidth = window->width * window->scale; in redraw()
540 bwidth = window->height * window->scale; in redraw()
545 bpitch = bwidth; in redraw()
553 paint_box(buffer->shm_data, bpitch, 0, 0, bwidth, bheight, in redraw()
560 bwidth /= 2; in redraw()
[all …]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/lite_cv/
Dwarp_affine.cc348 int bwidth = std::min(dst_width, dst.width_ - x); in Remap() local
350 dst.GetROI(x, y, bwidth, bheight, lite_part); in Remap()
353 _xyblock.GetROI(0, 0, bwidth, bheight, xy_ptr); in Remap()
355 _ablock.GetROI(0, 0, bwidth, bheight, a_ptr); in Remap()
360 map1.GetROI(x, y, bwidth, bheight, xy_ptr); in Remap()
364 for (; x1 < bwidth; x1++) { in Remap()
530 int bwidth = std::min(B_SZ * B_SZ / bheight, width); in WarpPerspectiveBilinear() local
531 bheight = std::min(B_SZ * B_SZ / bwidth, height); in WarpPerspectiveBilinear()
533 for (x = 0; x < width; x += bwidth) { in WarpPerspectiveBilinear()
534 int tw = std::min(bwidth, width - x); in WarpPerspectiveBilinear()
/third_party/ffmpeg/libavcodec/
Dcrystalhd.c438 int bwidth; in copy_frame() local
481 bwidth = av_image_get_linesize(avctx->pix_fmt, width, 0); in copy_frame()
482 if (bwidth < 0) in copy_frame()
497 sStride = bwidth; in copy_frame()
528 memcpy(&(dst[dY * dStride]), &(src[sY * sStride]), bwidth); in copy_frame()
532 av_image_copy_plane(dst, dStride, src, sStride, bwidth, height); in copy_frame()
/third_party/alsa-lib/src/pcm/
Dpcm_file.c63 short bwidth; member
330 fmt->bwidth = pcm->frame_bits / 8; in setup_wav_header()
331 fmt->bps = fmt->bwidth * pcm->rate; in setup_wav_header()
334 fmt->bwidth = TO_LE16(fmt->bwidth); in setup_wav_header()
/third_party/mesa3d/src/mesa/main/
Dformatquery.c1518 GLuint bwidth, bheight; in _mesa_GetInternalformativ() local
1521 _mesa_get_format_block_size(mesaformat, &bwidth, &bheight); in _mesa_GetInternalformativ()
1522 assert(bwidth > 0 && bheight > 0); in _mesa_GetInternalformativ()
1527 buffer[0] = block_size / bwidth; in _mesa_GetInternalformativ()
/third_party/gstreamer/gstplugins_bad/ext/onnx/
Dgstonnxclient.cpp404 auto bwidth = bboxes[i * 4 + 3] * width - x0; in doRun() local
405 boundingBoxes.push_back (GstMlBoundingBox (label, score, x0, y0, bwidth, in doRun()
/third_party/ffmpeg/libavutil/
Dimgutils.c407 ptrdiff_t bwidth = av_image_get_linesize(pix_fmt, width, i); in image_copy() local
408 if (bwidth < 0) { in image_copy()
417 bwidth, h); in image_copy()