Searched defs:wd (Results 1 - 25 of 70) sorted by relevance

123

/external/libmpeg2/common/
H A Dideint_debug.c96 WORD32 wd, ht, strd; local
98 wd = ps_pic->ai4_wd[i];
105 memset(pu1_buf, val, wd);
H A Dicv_sad.c76 * @param[in] wd
93 WORD32 wd,
99 UNUSED(wd);
102 ASSERT(wd == 8);
89 icv_sad_8x4(UWORD8 *pu1_src, UWORD8 *pu1_ref, WORD32 src_strd, WORD32 ref_strd, WORD32 wd, WORD32 ht) argument
H A Dicv_variance.c71 * @param[in] wd
84 WORD32 icv_variance_8x4(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 ht) argument
92 UNUSED(wd);
95 ASSERT(wd == 8);
/external/libavc/common/
H A Dih264_padding.c78 * @param[in] wd
92 WORD32 wd,
99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
119 * @param[in] wd
133 WORD32 wd,
140 memcpy(pu1_src + (row - 1) * src_strd, pu1_src - 1 * src_strd, wd);
90 ih264_pad_top(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 pad_size) argument
131 ih264_pad_bottom(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 pad_size) argument
H A Dih264_weighted_pred.c63 /* two ht x wd blocks, calculates their rounded-average and */
64 /* stores it in the destination block. (ht,wd) can be */
74 /* wd - width of the block */
92 WORD32 wd)
96 src_strd1 -= wd;
97 src_strd2 -= wd;
98 dst_strd -= wd;
102 for(j = 0; j < wd; j++, pu1_src1++, pu1_src2++, pu1_dst++)
118 /* two ht x wd blocks, calculates their rounded-average and */
119 /* stores it in the destination block. (ht,wd) ca
85 ih264_default_weighted_pred_luma(UWORD8 *pu1_src1, UWORD8 *pu1_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 ht, WORD32 wd) argument
140 ih264_default_weighted_pred_chroma(UWORD8 *pu1_src1, UWORD8 *pu1_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 ht, WORD32 wd) argument
199 ih264_weighted_pred_luma(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
273 ih264_weighted_pred_chroma(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
366 ih264_weighted_bi_pred_luma(UWORD8 *pu1_src1, UWORD8 *pu1_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 log_wd, WORD32 wt1, WORD32 wt2, WORD32 ofst1, WORD32 ofst2, WORD32 ht, WORD32 wd) argument
442 ih264_weighted_bi_pred_chroma(UWORD8 *pu1_src1, UWORD8 *pu1_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 log_wd, WORD32 wt1, WORD32 wt2, WORD32 ofst1, WORD32 ofst2, WORD32 ht, WORD32 wd) argument
[all...]
/external/libmpeg2/common/x86/
H A Dicv_sad_ssse3.c77 * @param[in] wd
94 WORD32 wd,
102 UNUSED(wd);
104 ASSERT(wd == 8);
90 icv_sad_8x4_ssse3(UWORD8 *pu1_src, UWORD8 *pu1_ref, WORD32 src_strd, WORD32 ref_strd, WORD32 wd, WORD32 ht) argument
H A Dicv_variance_ssse3.c71 * @param[in] wd
84 WORD32 icv_variance_8x4_ssse3(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 ht) argument
96 UNUSED(wd);
99 ASSERT(wd == 8);
/external/libavc/test/encoder/
H A Dpsnr.c100 WORD32 wd, ht, strd1, strd2; local
111 wd = ps_buf1->au4_wd[comp];
169 for(j = 0; j < wd; j++)
180 df_psnr[comp] /= (wd * ht);
H A Drecon.c56 WORD32 wd, ht; local
68 wd = ps_raw_buf->au4_wd[comp];
73 bytes = fwrite(pu1_buf, sizeof(UWORD8), wd, fp);
74 if(bytes != wd)
78 pu1_buf += wd;
H A Dinput.c122 WORD32 wd, ht, strd; local
130 wd = ps_raw_buf->au4_wd[0];
137 bytes = fread(pu1_buf, sizeof(UWORD8), wd, fp);
138 if(bytes != wd )
154 wd = ps_raw_buf->au4_wd[comp];
161 bytes = fread(pu1_buf, sizeof(UWORD8), wd, fp);
162 if(bytes != wd)
177 WORD32 wd, ht, strd; local
185 wd = ps_raw_buf->au4_wd[0];
192 bytes = fwrite(pu1_buf, sizeof(UWORD8), wd, f
[all...]
/external/libhevc/common/
H A Dihevc_padding.c69 * @param[in] wd
78 * @param[in] wd
92 WORD32 wd,
99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
101 pu1_src + (ht - 1) * src_strd, wd);
123 * @param[in] wd
132 * @param[in] wd
146 WORD32 wd,
154 wd >>= 1;
164 u2_uv_val = pu2_src[wd
89 ihevc_pad_vert(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 wd, WORD32 pad_size) argument
143 ihevc_pad_horz_chroma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 wd, WORD32 pad_size) argument
210 ihevc_pad_horz_luma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 wd, WORD32 pad_size) argument
268 ihevc_pad_top(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 pad_size) argument
322 ihevc_pad_bottom(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 pad_size) argument
[all...]
H A Dihevc_inter_pred_filters.c75 * Copies the array of width 'wd' and height 'ht' from the location pointed
96 * @param[in] wd
114 WORD32 wd)
120 for(col = 0; col < wd; col++)
159 * @param[in] wd
176 WORD32 wd)
183 for(col = 0; col < wd; col++)
231 * @param[in] wd
249 WORD32 wd)
256 for(col = 0; col < wd; co
108 ihevc_inter_pred_luma_copy(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
170 ihevc_inter_pred_luma_horz(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
243 ihevc_inter_pred_luma_vert(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
316 ihevc_inter_pred_luma_copy_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
382 ihevc_inter_pred_luma_horz_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
453 ihevc_inter_pred_luma_vert_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
523 ihevc_inter_pred_luma_vert_w16inp(WORD16 *pi2_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
598 ihevc_inter_pred_luma_vert_w16inp_w16out(WORD16 *pi2_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
670 ihevc_inter_pred_chroma_copy(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
735 ihevc_inter_pred_chroma_horz(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
817 ihevc_inter_pred_chroma_vert(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
892 ihevc_inter_pred_chroma_copy_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
958 ihevc_inter_pred_chroma_horz_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
1034 ihevc_inter_pred_chroma_vert_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
1105 ihevc_inter_pred_chroma_vert_w16inp(WORD16 *pi2_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
1182 ihevc_inter_pred_chroma_vert_w16inp_w16out(WORD16 *pi2_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
[all...]
H A Dihevc_weighted_pred.c95 * @param[in] wd
115 WORD32 wd)
122 for(col = 0; col < wd; col++)
178 * @param[in] wd
200 WORD32 wd)
207 for(col = 0; col < 2 * wd; col += 2)
281 * @param[in] wd
306 WORD32 wd)
313 for(col = 0; col < wd; col++)
382 * @param[in] wd
106 ihevc_weighted_pred_uni(WORD16 *pi2_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 wgt0, WORD32 off0, WORD32 shift, WORD32 lvl_shift, WORD32 ht, WORD32 wd) argument
189 ihevc_weighted_pred_chroma_uni(WORD16 *pi2_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 wgt0_cb, WORD32 wgt0_cr, WORD32 off0_cb, WORD32 off0_cr, WORD32 shift, WORD32 lvl_shift, WORD32 ht, WORD32 wd) argument
292 ihevc_weighted_pred_bi(WORD16 *pi2_src1, WORD16 *pi2_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 wgt0, WORD32 off0, WORD32 wgt1, WORD32 off1, WORD32 shift, WORD32 lvl_shift1, WORD32 lvl_shift2, WORD32 ht, WORD32 wd) argument
393 ihevc_weighted_pred_chroma_bi(WORD16 *pi2_src1, WORD16 *pi2_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 wgt0_cb, WORD32 wgt0_cr, WORD32 off0_cb, WORD32 off0_cr, WORD32 wgt1_cb, WORD32 wgt1_cr, WORD32 off1_cb, WORD32 off1_cr, WORD32 shift, WORD32 lvl_shift1, WORD32 lvl_shift2, WORD32 ht, WORD32 wd) argument
489 ihevc_weighted_pred_bi_default(WORD16 *pi2_src1, WORD16 *pi2_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 lvl_shift1, WORD32 lvl_shift2, WORD32 ht, WORD32 wd) argument
572 ihevc_weighted_pred_chroma_bi_default(WORD16 *pi2_src1, WORD16 *pi2_src2, UWORD8 *pu1_dst, WORD32 src_strd1, WORD32 src_strd2, WORD32 dst_strd, WORD32 lvl_shift1, WORD32 lvl_shift2, WORD32 ht, WORD32 wd) argument
[all...]
/external/clang/test/CodeGen/
H A Dchar-literal.c79 wchar_t wd = L'\U0010F00B'; local
/external/libavc/encoder/
H A Dih264e_half_pel.c190 WORD32 ht = HP_PL_HT, wd = HP_PL_WD; local
194 for (col = -2; col < wd + 3; col++)
209 for (col = 0; col < wd; col++)
H A Dih264e_mc.c143 UWORD32 wd, ht; local
220 wd = (ps_curr_pu->b4_wd + 1) << 2;
265 i4_pred_strd, ht, wd, NULL,
322 UWORD32 wd, ht; local
359 wd = (ps_curr_pu->b4_wd + 1) << 1;
381 i4_pred_strd, u1_dx, u1_dy, ht, wd);
421 wd = (ps_curr_pu->b4_wd + 1) << 1;
439 u1_dy, ht, wd);
/external/libhevc/common/x86/
H A Dihevc_inter_pred_filters_sse42_intr.c76 * Copies the array of width 'wd' and height 'ht' from the location pointed
98 * @param[in] wd
115 WORD32 wd)
120 ASSERT(wd % 4 == 0); /* checking assumption*/
123 if(0 == (wd & 7)) /* multiple of 8 case */
127 for(col = 0; col < wd; col += 8)
155 pu1_src += 4 * src_strd - wd; /* pointer update */
156 pi2_dst += 4 * dst_strd - wd; /* pointer update */
159 else /* wd = multiple of 4 case */
163 for(col = 0; col < wd; co
109 ihevc_inter_pred_luma_copy_w16out_sse42(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
236 ihevc_inter_pred_chroma_copy_sse42(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
457 ihevc_inter_pred_chroma_copy_w16out_sse42(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
[all...]
/external/selinux/policycoreutils/restorecond/
H A Dutmpwatcher.c48 unsigned int utmpwatcher_handle(int inotify_fd, int wd) argument
54 if (wd != utmp_wd)
H A Dwatch.c31 int wd; member in struct:watchList
82 ptr->wd = inotify_add_watch(fd, dir, IN_CREATE | IN_MOVED_TO);
83 if (ptr->wd == -1) {
102 printf("%d: Dir=%s, File=%s\n", ptr->wd, ptr->dir, file);
114 int watch_list_find(int wd, const char *file) argument
119 printf("%d: File=%s\n", wd, file);
121 if (ptr->wd == wd) {
152 inotify_rm_watch(fd, ptr->wd);
186 printf("wd
[all...]
/external/dbus/bus/
H A Ddir-watch-inotify.c77 _dbus_verbose ("inotify event: wd=%d mask=%u cookie=%u len=%u\n", ev->wd, ev->mask, ev->cookie, ev->len);
96 int i, j, wd; local
149 wd = inotify_add_watch (inotify_fd, new_dirs[i], IN_CLOSE_WRITE | IN_DELETE | IN_MOVED_TO | IN_MOVED_FROM);
150 if (wd < 0)
165 new_wds[i] = wd;
173 inotify_rm_watch (inotify_fd, wd);
/external/kernel-headers/original/uapi/linux/
H A Dinotify.h18 * such as IN_CREATE, IN_DELETE, IN_OPEN, IN_CLOSE, ..., relative to the wd.
21 __s32 wd; /* watch descriptor */ member in struct:inotify_event
/external/libhevc/decoder/x86/
H A Dihevcd_fmt_conv_ssse3_intr.c52 WORD32 wd,
76 num_cols = wd;
119 num_cols = wd >> 1;
47 ihevcd_fmt_conv_420sp_to_420p_ssse3(UWORD8 *pu1_y_src, UWORD8 *pu1_uv_src, UWORD8 *pu1_y_dst, UWORD8 *pu1_u_dst, UWORD8 *pu1_v_dst, WORD32 wd, WORD32 ht, WORD32 src_y_strd, WORD32 src_uv_strd, WORD32 dst_y_strd, WORD32 dst_uv_strd, WORD32 is_u_first, WORD32 disable_luma_copy) argument
/external/libmpeg2/decoder/
H A Dimpeg2d_deinterlace.c76 WORD32 wd,
80 ps_dst->ai4_wd[0] = wd;
81 ps_dst->ai4_wd[1] = wd / 2;
82 ps_dst->ai4_wd[2] = wd / 2;
234 WORD32 wd = ALIGN16(ps_dec->u2_horizontal_size); local
238 pu1_buf_u = pu1_buf_y + wd * ht;
239 pu1_buf_v = pu1_buf_u + wd * ht / 4;
72 impeg2d_get_pic(icv_pic_t *ps_dst, UWORD8 *pu1_buf_y, UWORD8 *pu1_buf_u, UWORD8 *pu1_buf_v, WORD32 wd, WORD32 ht, WORD32 strd) argument
/external/libopus/silk/fixed/
H A Dfind_LTP_FIX.c70 opus_int32 wd, m_Q12; local
198 wd = 0;
202 wd = silk_ADD32( wd, silk_LSHIFT( silk_SMULWW( silk_RSHIFT( w[ k ], maxRshifts_wxtra - corr_rshifts[ k ] ), d_Q14[ k ] ), 2 ) ); /* Q( 18 - maxRshifts_wxtra ) */
204 m_Q12 = silk_DIV32_varQ( wd, temp32, 12 );
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp26 int wd; member in struct:inotify_event
41 eventForId.insert(ptr->wd, *ptr);

Completed in 1157 milliseconds

123