Home
last modified time | relevance | path

Searched refs:pheight (Results 1 – 6 of 6) sorted by relevance

/third_party/cups-filters/filter/pdftopdf/
Dpptypes.cc74 void PageRect::rotate_move(Rotation r,float pwidth,float pheight) // {{{ in rotate_move() argument
89 std::swap(pwidth,pheight); in rotate_move()
96 top=pheight-top; in rotate_move()
97 bottom=pheight-bottom; in rotate_move()
106 left=pheight-top; in rotate_move()
108 right=pheight-tmp0; in rotate_move()
118 top=pheight-bottom; in rotate_move()
119 bottom=pheight-tmp2; in rotate_move()
Dpptypes.h29 …void rotate_move(Rotation r,float pwidth,float pheight); // pwidth original "page size" (i.e. befo…
/third_party/ffmpeg/libavfilter/
Dvf_stereo3d.c147 int pheight[4]; member
592 s->pheight[1] = s->pheight[2] = AV_CEIL_RSHIFT(s->height, desc->log2_chroma_h); in config_output()
593 s->pheight[0] = s->pheight[3] = s->height; in config_output()
637 for (y = 0; y < s->pheight[p]; y++) { in interleave_cols_to_any()
863 s->linesize[i], s->pheight[i]); in filter_frame()
868 s->linesize[i], s->pheight[i]); in filter_frame()
909 s->linesize[i], s->pheight[i]); in filter_frame()
954 for (y = 0; y < s->pheight[i]; y++) { in filter_frame()
1013 for (y = 0; y < s->pheight[i]; y++) { in filter_frame()
/third_party/ffmpeg/libavcodec/
Dflashsv2enc.c766 int pheight = ((int) height); in optimum_block_height() local
767 return FFCLIP(pheight & ~15, 256, 16); in optimum_block_height()
/third_party/gstreamer/gstplugins_good/sys/v4l2/
Dgstv4l2bufferpool.c250 guint pheight; in gst_v4l2_buffer_pool_import_userptr() local
255 pheight = GST_VIDEO_TILE_Y_TILES (tinfo) << in gst_v4l2_buffer_pool_import_userptr()
258 size[i] = pstride * pheight; in gst_v4l2_buffer_pool_import_userptr()
/third_party/rust/crates/libc/src/
Dpsp.rs2729 pub fn sceDisplayGetMode(pmode: *mut i32, pwidth: *mut i32, pheight: *mut i32) -> i32; in sceDisplayGetMode()