Home
last modified time | relevance | path

Searched refs:p_dest (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/dports/multimedia/vlc/vlc-3.0.16/modules/video_filter/deinterlace/
H A Dmerge.c54 uint8_t *p_dest = _p_dest; in Merge8BitGeneric() local
65 uint16_t *p_dest = _p_dest; in Merge16BitGeneric() local
78 uint8_t *p_dest = _p_dest; in MergeMMXEXT() local
89 p_dest += 8; in MergeMMXEXT()
104 uint8_t *p_dest = _p_dest; in Merge3DNow() local
115 p_dest += 8; in Merge3DNow()
144 p_dest += 16; in Merge8BitSSE2()
172 p_dest += 8; in Merge16BitSSE2()
223 p_dest += 16; in MergeAltivec()
240 p_dest += 16; in MergeAltivec()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/audio_filter/channel_mixer/
H A Dsimple.c211 *p_dest++ = p_src[0] + ctr; in DoWork_5_x_to_4_0()
213 *p_dest++ = p_src[2]; in DoWork_5_x_to_4_0()
214 *p_dest++ = p_src[3]; in DoWork_5_x_to_4_0()
227 *p_dest++ = p_src[0]; in DoWork_7_x_to_5_x()
228 *p_dest++ = p_src[1]; in DoWork_7_x_to_5_x()
231 *p_dest++ = p_src[6]; in DoWork_7_x_to_5_x()
237 *p_dest++ = *p_src++; in DoWork_7_x_to_5_x()
248 *p_dest++ = p_src[0]; in DoWork_6_1_to_5_x()
249 *p_dest++ = p_src[1]; in DoWork_6_1_to_5_x()
252 *p_dest++ = p_src[5]; in DoWork_6_1_to_5_x()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/video_chroma/
H A Dyuy2_i422.c123 uint8_t *p_y = p_dest->Y_PIXELS; in VIDEO_FILTER_WRAPPER()
124 uint8_t *p_u = p_dest->U_PIXELS; in VIDEO_FILTER_WRAPPER()
125 uint8_t *p_v = p_dest->V_PIXELS; in VIDEO_FILTER_WRAPPER()
129 const int i_dest_margin = p_dest->p[0].i_pitch in VIDEO_FILTER_WRAPPER()
167 uint8_t *p_y = p_dest->Y_PIXELS; in YVYU_I422()
168 uint8_t *p_u = p_dest->U_PIXELS; in YVYU_I422()
169 uint8_t *p_v = p_dest->V_PIXELS; in YVYU_I422()
173 const int i_dest_margin = p_dest->p[0].i_pitch in YVYU_I422()
211 uint8_t *p_y = p_dest->Y_PIXELS; in UYVY_I422()
212 uint8_t *p_u = p_dest->U_PIXELS; in UYVY_I422()
[all …]
H A Di422_i420.c123 uint16_t i_dpy = p_dest->p[Y_PLANE].i_pitch; in VIDEO_FILTER_WRAPPER()
125 uint16_t i_dpuv = p_dest->p[U_PLANE].i_pitch; in VIDEO_FILTER_WRAPPER()
129 uint8_t *p_dy = p_dest->Y_PIXELS + (i_y-1)*i_dpy; in VIDEO_FILTER_WRAPPER()
131 uint8_t *p_du = p_dest->U_PIXELS + (i_y/2-1)*i_dpuv; in VIDEO_FILTER_WRAPPER()
133 uint8_t *p_dv = p_dest->V_PIXELS + (i_y/2-1)*i_dpuv; in VIDEO_FILTER_WRAPPER()
152 uint16_t i_dpy = p_dest->p[Y_PLANE].i_pitch; in I422_YV12()
154 uint16_t i_dpuv = p_dest->p[U_PLANE].i_pitch; in I422_YV12()
158 uint8_t *p_dy = p_dest->Y_PIXELS + (i_y-1)*i_dpy; in I422_YV12()
181 I422_I420( p_filter, p_source, p_dest ); in I422_YUVA()
182 memset( p_dest->p[A_PLANE].p_pixels, 0xff, in I422_YUVA()
[all …]
H A Dgrey_yuv.c112 picture_t *p_dest ) in VIDEO_FILTER_WRAPPER()
115 uint8_t *p_y = p_dest->Y_PIXELS; in VIDEO_FILTER_WRAPPER()
116 uint8_t *p_u = p_dest->U_PIXELS; in VIDEO_FILTER_WRAPPER()
117 uint8_t *p_v = p_dest->V_PIXELS; in VIDEO_FILTER_WRAPPER()
123 const int i_dest_margin = p_dest->p[0].i_pitch in VIDEO_FILTER_WRAPPER()
125 const int i_dest_margin_c = p_dest->p[1].i_pitch in VIDEO_FILTER_WRAPPER()
130 memset(p_u, 0x80, p_dest->p[1].i_visible_pitch); in VIDEO_FILTER_WRAPPER()
133 memset(p_v, 0x80, p_dest->p[1].i_visible_pitch); in VIDEO_FILTER_WRAPPER()
164 uint8_t *p_out = p_dest->p->p_pixels; in GREY_YUY2()
170 const int i_dest_margin = p_dest->p->i_pitch in GREY_YUY2()
[all …]
H A Dyuy2_i420.c123 uint8_t *p_y = p_dest->Y_PIXELS; in VIDEO_FILTER_WRAPPER()
124 uint8_t *p_u = p_dest->U_PIXELS; in VIDEO_FILTER_WRAPPER()
125 uint8_t *p_v = p_dest->V_PIXELS; in VIDEO_FILTER_WRAPPER()
129 const int i_dest_margin = p_dest->p[0].i_pitch in VIDEO_FILTER_WRAPPER()
194 uint8_t *p_y = p_dest->Y_PIXELS; in YVYU_I420()
195 uint8_t *p_u = p_dest->U_PIXELS; in YVYU_I420()
196 uint8_t *p_v = p_dest->V_PIXELS; in YVYU_I420()
200 const int i_dest_margin = p_dest->p[0].i_pitch in YVYU_I420()
265 uint8_t *p_y = p_dest->Y_PIXELS; in UYVY_I420()
266 uint8_t *p_u = p_dest->U_PIXELS; in UYVY_I420()
[all …]
H A Di420_yuy2.c210 p_line2 += p_dest->p->i_pitch; \ in VIDEO_FILTER_WRAPPER()
304 p_line2 += p_dest->p->i_pitch; in VIDEO_FILTER_WRAPPER()
356 p_line2 += p_dest->p->i_pitch; in VIDEO_FILTER_WRAPPER()
382 p_line2 += p_dest->p->i_pitch; in VIDEO_FILTER_WRAPPER()
425 p_line2 += p_dest->p->i_pitch; \ in I420_YVYU()
516 p_line2 += p_dest->p->i_pitch; in I420_YVYU()
566 p_line2 += p_dest->p->i_pitch; in I420_YVYU()
594 p_line2 += p_dest->p->i_pitch; in I420_YVYU()
638 p_line2 += p_dest->p->i_pitch; \ in I420_UYVY()
729 p_line2 += p_dest->p->i_pitch; in I420_UYVY()
[all …]
H A Di422_yuy2.c166 uint8_t *p_line = p_dest->p->p_pixels; in VIDEO_FILTER_WRAPPER()
179 const int i_dest_margin = p_dest->p->i_pitch in VIDEO_FILTER_WRAPPER()
180 - p_dest->p->i_visible_pitch in VIDEO_FILTER_WRAPPER()
263 uint8_t *p_line = p_dest->p->p_pixels; in I422_YVYU()
276 const int i_dest_margin = p_dest->p->i_pitch in I422_YVYU()
277 - p_dest->p->i_visible_pitch in I422_YVYU()
360 uint8_t *p_line = p_dest->p->p_pixels; in I422_UYVY()
373 const int i_dest_margin = p_dest->p->i_pitch in I422_UYVY()
374 - p_dest->p->i_visible_pitch in I422_UYVY()
456 VLC_UNUSED(p_source); VLC_UNUSED(p_dest); in I422_IUYV()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/servers/audio/
H A Daudio_rb_resampler.cpp66 p_dest[i] = v0; in _resample()
81 p_dest[(i << 1) + 0] = v0; in _resample()
82 p_dest[(i << 1) + 1] = v1; in _resample()
106 p_dest[(i << 2) + 0] = v0; in _resample()
141 p_dest[(i * 6) + 0] = v0; in _resample()
142 p_dest[(i * 6) + 1] = v1; in _resample()
143 p_dest[(i * 6) + 2] = v2; in _resample()
144 p_dest[(i * 6) + 3] = v3; in _resample()
145 p_dest[(i * 6) + 4] = v4; in _resample()
146 p_dest[(i * 6) + 5] = v5; in _resample()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/scene/resources/
H A Daudio_stream_resampled.cpp69 p_dest[i]=v0;
85 p_dest[(i<<1)+0]=v0;
86 p_dest[(i<<1)+1]=v1;
111 p_dest[(i<<2)+0]=v0;
147 p_dest[(i*6)+0]=v0;
148 p_dest[(i*6)+1]=v1;
149 p_dest[(i*6)+2]=v2;
150 p_dest[(i*6)+3]=v3;
151 p_dest[(i*6)+4]=v4;
152 p_dest[(i*6)+5]=v5;
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/servers/audio/
H A Daudio_rb_resampler.cpp66 p_dest[i] = v0; in _resample()
81 p_dest[(i << 1) + 0] = v0; in _resample()
82 p_dest[(i << 1) + 1] = v1; in _resample()
106 p_dest[(i << 2) + 0] = v0; in _resample()
141 p_dest[(i * 6) + 0] = v0; in _resample()
142 p_dest[(i * 6) + 1] = v1; in _resample()
143 p_dest[(i * 6) + 2] = v2; in _resample()
144 p_dest[(i * 6) + 3] = v3; in _resample()
145 p_dest[(i * 6) + 4] = v4; in _resample()
146 p_dest[(i * 6) + 5] = v5; in _resample()
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/resources/
H A Daudio_stream_resampled.cpp69 p_dest[i]=v0;
85 p_dest[(i<<1)+0]=v0;
86 p_dest[(i<<1)+1]=v1;
111 p_dest[(i<<2)+0]=v0;
147 p_dest[(i*6)+0]=v0;
148 p_dest[(i*6)+1]=v1;
149 p_dest[(i*6)+2]=v2;
150 p_dest[(i*6)+3]=v3;
151 p_dest[(i*6)+4]=v4;
152 p_dest[(i*6)+5]=v5;
[all …]
/dports/lang/ghc/ghc-8.8.4-boot/includes/
H A DStg.h348 INLINE_HEADER void ASSIGN_FLT(W_ p_dest[], StgFloat src) { *(StgFloat *)p_dest = src; } in ASSIGN_FLT() argument
357 *p_dest = y.fu; in ASSIGN_FLT()
374 INLINE_HEADER void ASSIGN_DBL(W_ p_dest[], StgDouble src) { *(StgDouble *)p_dest = src; } in ASSIGN_DBL() argument
418 p_dest[0] = y.du.dhi; in ASSIGN_DBL()
419 p_dest[1] = y.du.dlo; in ASSIGN_DBL()
473 p_dest[0] = y.wu.dhi; in ASSIGN_Word64()
474 p_dest[1] = y.wu.dlo; in ASSIGN_Word64()
489 p_dest[0] = y.iu.dhi; in ASSIGN_Int64()
490 p_dest[1] = y.iu.dlo; in ASSIGN_Int64()
505 p_dest[0] = src; in ASSIGN_Word64()
[all …]
/dports/lang/ghc/ghc-8.10.7/includes/
H A DStg.h348 INLINE_HEADER void ASSIGN_FLT(W_ p_dest[], StgFloat src) { *(StgFloat *)p_dest = src; } in ASSIGN_FLT() argument
357 *p_dest = y.fu; in ASSIGN_FLT()
374 INLINE_HEADER void ASSIGN_DBL(W_ p_dest[], StgDouble src) { *(StgDouble *)p_dest = src; } in ASSIGN_DBL() argument
418 p_dest[0] = y.du.dhi; in ASSIGN_DBL()
419 p_dest[1] = y.du.dlo; in ASSIGN_DBL()
473 p_dest[0] = y.wu.dhi; in ASSIGN_Word64()
474 p_dest[1] = y.wu.dlo; in ASSIGN_Word64()
489 p_dest[0] = y.iu.dhi; in ASSIGN_Int64()
490 p_dest[1] = y.iu.dlo; in ASSIGN_Int64()
505 p_dest[0] = src; in ASSIGN_Word64()
[all …]
/dports/devel/godot/godot-3.2.3-stable/servers/audio/
H A Daudio_rb_resampler.cpp67 p_dest[i] = AudioFrame(v0, v0); in _resample()
79 p_dest[i] = AudioFrame(v0, v1); in _resample()
91 p_dest[i] = AudioFrame(v0, v1); in _resample()
103 p_dest[i] = AudioFrame(v0, v1); in _resample()
110 bool AudioRBResampler::mix(AudioFrame *p_dest, int p_frames) { in mix() argument
122 case 1: src_read = _resample<1>(p_dest, target_todo, increment); break; in mix()
123 case 2: src_read = _resample<2>(p_dest, target_todo, increment); break; in mix()
124 case 4: src_read = _resample<4>(p_dest, target_todo, increment); break; in mix()
125 case 6: src_read = _resample<6>(p_dest, target_todo, increment); break; in mix()
136 p_dest[i] = p_dest[i] * float(target_todo - i) / float(target_todo); in mix()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/servers/audio/
H A Daudio_rb_resampler.cpp67 p_dest[i] = AudioFrame(v0, v0); in _resample()
79 p_dest[i] = AudioFrame(v0, v1); in _resample()
91 p_dest[i] = AudioFrame(v0, v1); in _resample()
103 p_dest[i] = AudioFrame(v0, v1); in _resample()
110 bool AudioRBResampler::mix(AudioFrame *p_dest, int p_frames) { in mix() argument
122 case 1: src_read = _resample<1>(p_dest, target_todo, increment); break; in mix()
123 case 2: src_read = _resample<2>(p_dest, target_todo, increment); break; in mix()
124 case 4: src_read = _resample<4>(p_dest, target_todo, increment); break; in mix()
125 case 6: src_read = _resample<6>(p_dest, target_todo, increment); break; in mix()
136 p_dest[i] = p_dest[i] * float(target_todo - i) / float(target_todo); in mix()
[all …]
/dports/deskutils/glabels/glabels-3.4.1/src/
H A Dpixbuf-util.c63 guchar *p_src, *p_dest; in gl_pixbuf_util_create_shadow_pixbuf() local
100 p_dest = buf_dest; in gl_pixbuf_util_create_shadow_pixbuf()
105 p_dest = buf_dest + iy*dest_rowstride; in gl_pixbuf_util_create_shadow_pixbuf()
112 *p_dest++ = shadow_r; in gl_pixbuf_util_create_shadow_pixbuf()
113 *p_dest++ = shadow_g; in gl_pixbuf_util_create_shadow_pixbuf()
114 *p_dest++ = shadow_b; in gl_pixbuf_util_create_shadow_pixbuf()
118 *p_dest++ = *p_src++ * shadow_opacity; in gl_pixbuf_util_create_shadow_pixbuf()
122 *p_dest++ = shadow_opacity * 255.0; in gl_pixbuf_util_create_shadow_pixbuf()
/dports/sysutils/fusefs-ext2/fuse-ext2-ea7bacf/fuse-ext2/
H A Dop_rename.c68 char *p_dest; in op_rename() local
91 rt = do_check_split(dest, &p_dest, &r_dest); in op_rename()
97 debugf("dest_parent: %s, dest_child: %s", p_dest, r_dest); in op_rename()
105 rt = do_readinode(e2fs, p_dest, &d_dest_ino, &d_dest_inode); in op_rename()
107 debugf("do_readinode(%s, &d_dest_ino, &d_dest_inode); failed", p_dest); in op_rename()
113 debugf("do_readinode(%s, &src_ino, &src_inode); failed", p_dest); in op_rename()
172 rt = do_readinode(e2fs, p_dest, &d_dest_ino, &d_dest_inode); in op_rename()
174 debugf("do_readinode(%s, &d_dest_ino, &d_dest_inode); failed", p_dest); in op_rename()
186 debugf("error while expanding directory %s (%d)", p_dest, d_dest_ino); in op_rename()
191 rt = do_readinode(e2fs, p_dest, &d_dest_ino, &d_dest_inode); in op_rename()
[all …]
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/2D/Source/Flat8/
H A DFl8F.c49 uchar *p_dest; in gri_floor_umap_loop() local
111 *p_dest = temp_pix; in gri_floor_umap_loop()
113 p_dest++; in gri_floor_umap_loop()
121 *(p_dest++) = t_bits[k]; in gri_floor_umap_loop()
132 *p_dest = temp_pix; in gri_floor_umap_loop()
134 p_dest++; in gri_floor_umap_loop()
153 *p_dest = t_clut[k]; in gri_floor_umap_loop()
155 p_dest++; in gri_floor_umap_loop()
176 *p_dest = inv; in gri_floor_umap_loop()
177 p_dest++; in gri_floor_umap_loop()
[all …]
H A Dfl8w.c53 uchar *p_dest; in gri_wall_umap_loop() local
107 p_dest += gr_row; in gri_wall_umap_loop()
117 p_dest += gr_row; in gri_wall_umap_loop()
124 *p_dest = in gri_wall_umap_loop()
126 p_dest += gr_row; in gri_wall_umap_loop()
136 p_dest += gr_row; in gri_wall_umap_loop()
143 *p_dest = in gri_wall_umap_loop()
145 p_dest += gr_row; in gri_wall_umap_loop()
156 p_dest += gr_row; in gri_wall_umap_loop()
316 p_dest += gr_row; in HandleWallLoop1D_C()
[all …]
H A Dfl8s.c136 uchar *p_src, *p_dest; in gri_scale_umap_loop_PPC() local
150 p_dest = grd_bm.bits + (grd_bm.row * tli->y) + xl; in gri_scale_umap_loop_PPC()
154 *(p_dest++) = p_src[fix_fint(u)]; // gr_fill_upixel(k,x,tli->y); in gri_scale_umap_loop_PPC()
162 *p_dest = k; // gr_fill_upixel(k,x,tli->y); in gri_scale_umap_loop_PPC()
164 p_dest++; in gri_scale_umap_loop_PPC()
169 … *(p_dest++) = tli->clut[p_src[fix_fint(u)]]; // gr_fill_upixel(tli->clut[k],x,tli->y); in gri_scale_umap_loop_PPC()
177 *p_dest = tli->clut[k]; // gr_fill_upixel(tli->clut[k],x,tli->y); in gri_scale_umap_loop_PPC()
179 p_dest++; in gri_scale_umap_loop_PPC()
186 *p_dest = tli->solid; // gr_fill_upixel((uchar )(tli->clut),x,tli->y); in gri_scale_umap_loop_PPC()
188 p_dest++; in gri_scale_umap_loop_PPC()
H A Dfl8lnop.c52 uchar *p_dest; in Handle_LinClut_Loop_C() local
71 p_dest = start_pdest + fix_cint(lx); in Handle_LinClut_Loop_C()
105 uchar *p_dest; in gri_lin_umap_loop() local
151 p_dest = start_pdest + fix_cint(tli->left.x); in gri_lin_umap_loop()
158 *(p_dest++) = t_bits[k]; // gr_fill_upixel(t_bits[k],x,y); in gri_lin_umap_loop()
168 *p_dest = temp_pix; // gr_fill_upixel(t_bits[k],x,y); in gri_lin_umap_loop()
169 p_dest++; in gri_lin_umap_loop()
187 *p_dest = temp_pix; // gr_fill_upixel(t_bits[k],x,y); in gri_lin_umap_loop()
188 p_dest++; in gri_lin_umap_loop()
207 p_dest++; in gri_lin_umap_loop()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/packetizer/
H A Dhxxx_nal.c34 static inline void hxxx_WritePrefix( uint8_t i_nal_length_size, uint8_t *p_dest, uint32_t i_payload… in hxxx_WritePrefix() argument
37 SetDWBE( p_dest, i_payload ); in hxxx_WritePrefix()
39 SetWBE( p_dest, i_payload ); in hxxx_WritePrefix()
41 *p_dest = i_payload; in hxxx_WritePrefix()
120 uint8_t *p_dest = NULL; in hxxx_AnnexB_to_xVC() local
134 p_dest = p_newblock->p_buffer; in hxxx_AnnexB_to_xVC()
138 p_source = p_dest = p_block->p_buffer; in hxxx_AnnexB_to_xVC()
142 if(!p_dest) in hxxx_AnnexB_to_xVC()
154 memmove( &p_dest[ offset ], &p_list[i - 1].p[ p_list[i - 1].prefix ], i_payload ); in hxxx_AnnexB_to_xVC()
156 hxxx_WritePrefix( i_nal_length_size, &p_dest[ offset - i_nal_length_size ] , i_payload ); in hxxx_AnnexB_to_xVC()
/dports/devel/godot2/godot-2.1.6-stable/modules/chibi/
H A Dcp_file_access_wrapper.h68 virtual void get_byte_array(uint8_t *p_dest, int p_elements) = 0;
69 virtual void get_word_array(uint16_t *p_dest, int p_elements) = 0;
82 virtual void store_byte(uint8_t p_dest) = 0;
83 virtual void store_byte_array(const uint8_t *p_dest, int p_elements) = 0;
85 virtual void store_word(uint16_t p_dest) = 0;
86 virtual void store_dword(uint32_t p_dest) = 0;
/dports/devel/godot2-tools/godot-2.1.6-stable/modules/chibi/
H A Dcp_file_access_wrapper.h68 virtual void get_byte_array(uint8_t *p_dest, int p_elements) = 0;
69 virtual void get_word_array(uint16_t *p_dest, int p_elements) = 0;
82 virtual void store_byte(uint8_t p_dest) = 0;
83 virtual void store_byte_array(const uint8_t *p_dest, int p_elements) = 0;
85 virtual void store_word(uint16_t p_dest) = 0;
86 virtual void store_dword(uint32_t p_dest) = 0;

12345678910>>...19