Home
last modified time | relevance | path

Searched refs:line_bytes (Results 1 - 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dpcxenc.c93 int bpp, nplanes, i, y, line_bytes, written, ret, max_pkt_size, sw, sh; in pcx_encode_frame() local
133 line_bytes = (avctx->width * bpp + 7) >> 3; in pcx_encode_frame()
134 line_bytes = (line_bytes + 1) & ~1; in pcx_encode_frame()
136 max_pkt_size = 128 + avctx->height * 2 * line_bytes * nplanes + (pal ? 256*3 + 1 : 0); in pcx_encode_frame()
161 bytestream_put_le16(&buf, line_bytes); // scanline plane size in bytes in pcx_encode_frame()
170 src, line_bytes, nplanes)) < 0) { in pcx_encode_frame()
/third_party/cups-filters/filter/
H A Durftopdf.cpp69 pixel_bytes(0),line_bytes(0), in pdf_info()
81 unsigned line_bytes; member
196 info->line_bytes = (width*info->pixel_bytes); in add_pdf_page()
199 if (info->height > (std::numeric_limits<unsigned>::max() / info->line_bytes)) { in add_pdf_page()
202 info->page_data = PointerHolder<Buffer>(new Buffer(info->line_bytes*info->height)); in add_pdf_page()
255 memcpy((info->page_data->getBuffer()+(line_n*info->line_bytes)), line, info->line_bytes); in pdf_set_line()
H A Drastertopdf.cpp279 line_bytes(0), in pdf_info()
302 unsigned line_bytes; member
363 unsigned old_line_bytes = info->line_bytes; in modify_pdf_color()
367 info->line_bytes = (unsigned)old_line_bytes*(new_ncolor/old_ncolor); in modify_pdf_color()
961 info->line_bytes = bpl; in prepare_pdf_page()
1100 if (info->height > (std::numeric_limits<unsigned>::max() / info->line_bytes)) { in add_pdf_page()
1104 info->page_data = PointerHolder<Buffer>(new Buffer(info->line_bytes*info->height)); in add_pdf_page()
1109 info->pclm_strip_data[i] = PointerHolder<Buffer>(new Buffer(info->line_bytes*info->pclm_strip_height[i])); in add_pdf_page()
1182 memcpy((info->page_data->getBuffer()+(line_n*info->line_bytes)), line, info->line_bytes); in pdf_set_line()
[all...]
/third_party/backends/backend/genesys/
H A Drow_buffer.h36 RowBuffer(std::size_t line_bytes) : row_bytes_{line_bytes} {} in RowBuffer() argument
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_cb_copyimage.c561 unsigned line_bytes; in fallback_copy_image() local
588 line_bytes = _mesa_format_row_stride(src_image->TexFormat, src_w); in fallback_copy_image()
590 line_bytes = _mesa_format_row_stride(dst_image->TexFormat, dst_w); in fallback_copy_image()
619 memcpy(dst, src, line_bytes); in fallback_copy_image()

Completed in 5 milliseconds