Home
last modified time | relevance | path

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

/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/filters/
H A Dvflip.c103 memcpy(line_dst + ctx->bps*j, pix, ctx->bps); in horizontal_flip_per_line()
121 swap_2Ys_YUVpixel(ctx, line_dst, line_dst, first_4bytes_index); in horizontal_flip_per_line()
134 line_dst[line_size - 2*j - 2] = line_src[2*j]; in horizontal_flip_per_line()
135 line_dst[line_size - 2*j - 1] = line_src[2*j + 1]; in horizontal_flip_per_line()
137 line_dst[2*j] = u_comp; in horizontal_flip_per_line()
138 line_dst[2*j + 1] = v_comp; in horizontal_flip_per_line()
149 ((u16 *)line_dst)[2*j] = u_comp; in horizontal_flip_per_line()
150 ((u16 *)line_dst)[2*j + 1] = v_comp; in horizontal_flip_per_line()
161 line_dst[line_size-1-j] = line_src[j]; in horizontal_flip_per_line()
164 line_dst[j]=tmp; in horizontal_flip_per_line()
[all …]
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/filters/
H A Dvflip.c103 memcpy(line_dst + ctx->bps*j, pix, ctx->bps); in horizontal_flip_per_line()
121 swap_2Ys_YUVpixel(ctx, line_dst, line_dst, first_4bytes_index); in horizontal_flip_per_line()
134 line_dst[line_size - 2*j - 2] = line_src[2*j]; in horizontal_flip_per_line()
135 line_dst[line_size - 2*j - 1] = line_src[2*j + 1]; in horizontal_flip_per_line()
137 line_dst[2*j] = u_comp; in horizontal_flip_per_line()
138 line_dst[2*j + 1] = v_comp; in horizontal_flip_per_line()
149 ((u16 *)line_dst)[2*j] = u_comp; in horizontal_flip_per_line()
150 ((u16 *)line_dst)[2*j + 1] = v_comp; in horizontal_flip_per_line()
161 line_dst[line_size-1-j] = line_src[j]; in horizontal_flip_per_line()
164 line_dst[j]=tmp; in horizontal_flip_per_line()
[all …]
/dports/graphics/vapoursynth-fmtconv/fmtconv-r28/src/fmtcl/
H A DTransModel.cpp516 auto line_dst = arg._dst; in process_frame_sg() local
526 auto dst = line_dst; in process_frame_sg()
544 line_dst.step_line (); in process_frame_sg()
559 auto line_dst = arg._dst; in process_frame_gd() local
569 auto dst = line_dst; in process_frame_gd()
587 line_dst.step_line (); in process_frame_gd()
604 auto line_dst = arg._dst; in process_frame_sgd() local
619 auto dst = line_dst; in process_frame_sgd()
642 line_dst.step_line (); in process_frame_sgd()
/dports/www/nginx-full/ngx_http_substitutions_filter_module-b8a71ea/
H A Dngx_http_subs_filter_module.c73 ngx_buf_t *line_dst; member
322 if (ctx->line_dst == NULL) { in ngx_http_subs_init_context()
324 ctx->line_dst = ngx_create_temp_buf(r->pool, slcf->line_buffer_size); in ngx_http_subs_init_context()
325 if (ctx->line_dst == NULL) { in ngx_http_subs_init_context()
601 dst = ctx->line_dst; in ngx_http_subs_match()
705 ngx_buffer_init(ctx->line_dst); in ngx_http_subs_match()
/dports/graphics/aloadimage/arcan-0.6.1/src/shmif/tui/core/
H A Dscreen.c240 size_t line_dst = outsz; in tui_screen_tpack() local
268 memcpy(&out[line_dst], &line, sizeof(struct tui_raster_line)); in tui_screen_tpack()
/dports/sysutils/acfgfs/arcan-0.6.1/src/shmif/tui/core/
H A Dscreen.c240 size_t line_dst = outsz; in tui_screen_tpack() local
268 memcpy(&out[line_dst], &line, sizeof(struct tui_raster_line)); in tui_screen_tpack()
/dports/x11/aclip/arcan-0.6.1/src/shmif/tui/core/
H A Dscreen.c240 size_t line_dst = outsz; in tui_screen_tpack() local
268 memcpy(&out[line_dst], &line, sizeof(struct tui_raster_line)); in tui_screen_tpack()
/dports/x11/arcan-trayicon/arcan-0.6.1/src/shmif/tui/core/
H A Dscreen.c240 size_t line_dst = outsz; in tui_screen_tpack() local
268 memcpy(&out[line_dst], &line, sizeof(struct tui_raster_line)); in tui_screen_tpack()
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dtext.c145 TextLine *line_dst = MEM_mallocN(sizeof(*line_dst), __func__); in text_copy_data() local
147 line_dst->line = BLI_strdup(line_src->line); in text_copy_data()
148 line_dst->format = NULL; in text_copy_data()
149 line_dst->len = line_src->len; in text_copy_data()
151 BLI_addtail(&text_dst->lines, line_dst); in text_copy_data()