Home
last modified time | relevance | path

Searched refs:wd (Results 1 – 25 of 207) sorted by relevance

123456789

/external/libhevc/common/
Dihevc_sao.c79 WORD32 wd, in ihevc_sao_band_offset_luma() argument
90 pu1_src_left[row] = pu1_src[row * src_strd + (wd - 1)]; in ihevc_sao_band_offset_luma()
92 pu1_src_top_left[0] = pu1_src_top[wd - 1]; in ihevc_sao_band_offset_luma()
93 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_luma()
110 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_luma()
133 WORD32 wd, in ihevc_sao_band_offset_chroma() argument
145 pu1_src_left[2 * row] = pu1_src[row * src_strd + (wd - 2)]; in ihevc_sao_band_offset_chroma()
146 pu1_src_left[2 * row + 1] = pu1_src[row * src_strd + (wd - 1)]; in ihevc_sao_band_offset_chroma()
148 pu1_src_top_left[0] = pu1_src_top[wd - 2]; in ihevc_sao_band_offset_chroma()
149 pu1_src_top_left[1] = pu1_src_top[wd - 1]; in ihevc_sao_band_offset_chroma()
[all …]
Dihevc_inter_pred_filters.c114 WORD32 wd) in ihevc_inter_pred_luma_copy() argument
120 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_copy()
176 WORD32 wd) in ihevc_inter_pred_luma_horz() argument
183 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_horz()
249 WORD32 wd) in ihevc_inter_pred_luma_vert() argument
256 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_vert()
322 WORD32 wd) in ihevc_inter_pred_luma_copy_w16out() argument
328 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_copy_w16out()
388 WORD32 wd) in ihevc_inter_pred_luma_horz_w16out() argument
395 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_horz_w16out()
[all …]
Dihevc_padding.c92 WORD32 wd, in ihevc_pad_vert() argument
99 memcpy(pu1_src - row * src_strd, pu1_src, wd); in ihevc_pad_vert()
101 pu1_src + (ht - 1) * src_strd, wd); in ihevc_pad_vert()
146 WORD32 wd, in ihevc_pad_horz_chroma() argument
154 wd >>= 1; in ihevc_pad_horz_chroma()
164 u2_uv_val = pu2_src[wd - 1]; in ihevc_pad_horz_chroma()
165 ihevc_memset_16bit(&pu2_src[wd], u2_uv_val, pad_size); in ihevc_pad_horz_chroma()
213 WORD32 wd, in ihevc_pad_horz_luma() argument
221 memset(pu1_src + wd, *(pu1_src + wd - 1), pad_size); in ihevc_pad_horz_luma()
270 WORD32 wd, in ihevc_pad_top() argument
[all …]
Dihevc_sao.h59 WORD32 wd,
69 WORD32 wd,
82 WORD32 wd,
94 WORD32 wd,
107 WORD32 wd,
119 WORD32 wd,
133 WORD32 wd,
146 WORD32 wd,
159 WORD32 wd,
171 WORD32 wd,
[all …]
Dihevc_padding.h45 WORD32 wd,
52 WORD32 wd,
59 WORD32 wd,
66 WORD32 wd,
73 WORD32 wd,
80 WORD32 wd,
85 WORD32 wd,
90 WORD32 wd,
95 WORD32 wd,
100 WORD32 wd,
Dihevc_weighted_pred.c115 WORD32 wd) in ihevc_weighted_pred_uni() argument
122 for(col = 0; col < wd; col++) in ihevc_weighted_pred_uni()
200 WORD32 wd) in ihevc_weighted_pred_chroma_uni() argument
207 for(col = 0; col < 2 * wd; col += 2) in ihevc_weighted_pred_chroma_uni()
306 WORD32 wd) in ihevc_weighted_pred_bi() argument
313 for(col = 0; col < wd; col++) in ihevc_weighted_pred_bi()
411 WORD32 wd) in ihevc_weighted_pred_chroma_bi() argument
418 for(col = 0; col < 2 * wd; col += 2) in ihevc_weighted_pred_chroma_bi()
498 WORD32 wd) in ihevc_weighted_pred_bi_default() argument
507 for(col = 0; col < wd; col++) in ihevc_weighted_pred_bi_default()
[all …]
Dihevc_inter_pred.h60 WORD32 wd);
69 WORD32 wd);
78 WORD32 wd);
87 WORD32 wd);
96 WORD32 wd,
107 WORD32 wd,
118 WORD32 wd,
129 WORD32 wd,
142 WORD32 wd,
161 WORD32 wd,
[all …]
/external/fio/engines/
Dwindowsaio.c35 struct windowsaio_data *wd; member
52 struct windowsaio_data *wd; in fio_windowsaio_init() local
55 wd = calloc(1, sizeof(struct windowsaio_data)); in fio_windowsaio_init()
56 if (wd == NULL) { in fio_windowsaio_init()
62 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*)); in fio_windowsaio_init()
63 if (wd->aio_events == NULL) { in fio_windowsaio_init()
71 wd->iocomplete_event = CreateEvent(NULL, FALSE, FALSE, NULL); in fio_windowsaio_init()
72 if (wd->iocomplete_event == NULL) { in fio_windowsaio_init()
79 if (wd != NULL) { in fio_windowsaio_init()
80 if (wd->aio_events != NULL) in fio_windowsaio_init()
[all …]
/external/libavc/common/
Dih264_weighted_pred.c92 WORD32 wd) in ih264_default_weighted_pred_luma() argument
96 src_strd1 -= wd; in ih264_default_weighted_pred_luma()
97 src_strd2 -= wd; in ih264_default_weighted_pred_luma()
98 dst_strd -= wd; in ih264_default_weighted_pred_luma()
102 for(j = 0; j < wd; j++, pu1_src1++, pu1_src2++, pu1_dst++) in ih264_default_weighted_pred_luma()
147 WORD32 wd) in ih264_default_weighted_pred_chroma() argument
151 wd = wd << 1; in ih264_default_weighted_pred_chroma()
153 src_strd1 -= wd; in ih264_default_weighted_pred_chroma()
154 src_strd2 -= wd; in ih264_default_weighted_pred_chroma()
155 dst_strd -= wd; in ih264_default_weighted_pred_chroma()
[all …]
Dih264_inter_pred_filters.c115 WORD32 wd, in ih264_inter_pred_luma_copy() argument
124 for(col = 0; col < wd; col++) in ih264_inter_pred_luma_copy()
175 WORD32 wd) in ih264_interleave_copy() argument
178 wd *= 2; in ih264_interleave_copy()
182 for(col = 0; col < wd; col+=2) in ih264_interleave_copy()
232 WORD32 wd, in ih264_inter_pred_luma_horz() argument
243 for(col = 0; col < wd; col++) in ih264_inter_pred_luma_horz()
302 WORD32 wd, in ih264_inter_pred_luma_vert() argument
313 for(col = 0; col < wd; col++) in ih264_inter_pred_luma_vert()
371 WORD32 wd, in ih264_inter_pred_luma_horz_hpel_vert_hpel() argument
[all …]
/external/llvm/lib/Target/Mips/
DMipsMSAInstrFormats.td32 bits<5> wd;
39 let Inst{10-6} = wd;
45 bits<5> wd;
52 let Inst{10-6} = wd;
58 bits<5> wd;
65 let Inst{10-6} = wd;
71 bits<5> wd;
78 let Inst{10-6} = wd;
84 bits<5> wd;
89 let Inst{10-6} = wd;
[all …]
/external/libavc/encoder/
Dih264e_fmt_conv.c100 WORD32 wd, in ih264e_fmt_conv_420sp_to_rgb565() argument
131 for (i2_j = (wd >> 1); i2_j > 0; i2_j--) in ih264e_fmt_conv_420sp_to_rgb565()
198 pu1_u_src = pu1_u_src + src_uv_strd - wd; in ih264e_fmt_conv_420sp_to_rgb565()
199 pu1_v_src = pu1_v_src + src_uv_strd - wd; in ih264e_fmt_conv_420sp_to_rgb565()
201 pu1_y_src = pu1_y_src + (src_y_strd << 1) - wd; in ih264e_fmt_conv_420sp_to_rgb565()
202 pu1_y_src_nxt = pu1_y_src_nxt + (src_y_strd << 1) - wd; in ih264e_fmt_conv_420sp_to_rgb565()
204 pu2_rgb_dst = pu2_rgb_dst_NextRow - wd + dst_strd; in ih264e_fmt_conv_420sp_to_rgb565()
205 pu2_rgb_dst_NextRow = pu2_rgb_dst_NextRow + (dst_strd << 1) - wd; in ih264e_fmt_conv_420sp_to_rgb565()
213 WORD32 wd, in ih264e_fmt_conv_420sp_to_rgba8888() argument
244 for (i2_j = (wd >> 1); i2_j > 0; i2_j--) in ih264e_fmt_conv_420sp_to_rgba8888()
[all …]
/external/libhevc/common/arm/
Dihevc_inter_pred_chroma_vert_w16out.s89 @ word32 wd)
113 ldr r6,[sp,#48] @loads wd
119 tst r6,#3 @checks (wd & 3)
121 lsl r10,r6,#1 @2*wd
127 bgt outer_loop_wd_2 @jumps to loop handling wd ==2
133 sub r9,r7,r10,lsl #1 @4*dst_strd - 4wd
135 sub r8,r12,r10 @2*src_strd - 2wd
137 mov r5,r10 @2wd
139 inner_loop_ht_2: @called when wd is multiple of 4 and ht is 4,2
143 subs r5,r5,#8 @2wd - 8
[all …]
Dihevc_inter_pred_chroma_vert.s89 @ word32 wd)
112 ldr r6,[sp,#48] @loads wd
118 tst r6,#3 @checks (wd & 3)
120 lsl r10,r6,#1 @2*wd
126 bgt outer_loop_wd_2 @jumps to loop handling wd ==2
132 sub r9,r7,r10 @2*dst_strd - 2wd
134 sub r8,r12,r10 @2*src_strd - 2wd
135 mov r5,r10 @2wd
137 inner_loop_ht_2: @called when wd is multiple of 4 and ht is 4,2
141 subs r5,r5,#8 @2wd - 8
[all …]
Dihevc_inter_pred_chroma_copy.s85 @ word32 wd)
93 @ r6 => wd
107 ldr r12,[sp,#48] @loads wd
114 tst r12,#15 @checks wd for multiples for 4 & 8
116 tst r12,#7 @checks wd for multiples for 4 & 8
124 subs r4,r12,#0 @checks wd == 0
136 subs r4,r4,#4 @(wd -4)
156 subs r4,r12,#0 @checks wd == 0
167 subs r4,r4,#4 @(wd -4)
178 subs r4,r12,#0 @checks wd
[all …]
Dihevc_weighted_pred_neon_intr.c113 WORD32 wd) in ihevc_weighted_pred_uni_neonintr() argument
143 for(col = wd; col > 0; col -= 4) in ihevc_weighted_pred_uni_neonintr()
176 pi2_src += 2 * src_strd - wd; in ihevc_weighted_pred_uni_neonintr()
177 pu1_dst += 2 * dst_strd - wd; in ihevc_weighted_pred_uni_neonintr()
246 WORD32 wd) in ihevc_weighted_pred_chroma_uni_neonintr() argument
290 for(col = 2 * wd; col > 0; col -= 4) in ihevc_weighted_pred_chroma_uni_neonintr()
323 pi2_src += 2 * src_strd - 2 * wd; in ihevc_weighted_pred_chroma_uni_neonintr()
324 pu1_dst += 2 * dst_strd - 2 * wd; in ihevc_weighted_pred_chroma_uni_neonintr()
409 WORD32 wd) in ihevc_weighted_pred_bi_neonintr() argument
444 for(col = wd; col > 0; col -= 4) in ihevc_weighted_pred_bi_neonintr()
[all …]
Dihevc_weighted_pred_bi_default.s97 @ word32 wd)
109 @ r9 => wd
131 ldr r9,[sp,#60] @load wd
139 rsb r7,r6,r3,lsl #2 @4*src_strd1 - wd
140 rsb r10,r6,r4,lsl #2 @4*src_strd2 - wd
142 @rsb r6,r6,r5,lsl #2 @4*dst_strd - wd
175 cmp r9,#0 @check wd == 0
203 subs r9,r9,#4 @decrement wd by 4 and check for 0
211 … @pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment wi…
213 add r1,r1,r10 @pi2_src2 + 4*src_strd2 - 2*wd
[all …]
Dihevc_inter_pred_luma_copy.s64 @ word32 wd )
72 @ r12 => wd
86 ldr r12,[sp,#48] @loads wd
90 tst r12,#15 @checks wd for multiples for 4 & 8
92 tst r12,#7 @checks wd for multiples for 4 & 8
97 subs r4,r12,#0 @checks wd == 0
109 subs r4,r4,#4 @(wd -4)
131 subs r4,r12,#0 @checks wd
141 subs r4,r4,#8 @wd - 8(loop condition)
160 subs r4,r12,#0 @checks wd
[all …]
Dihevc_sao_edge_offset_class2_chroma.s49 @ WORD32 wd,
60 @r7 => wd
90 LDR r7,[sp,#0x40] @Loads wd
92 SUB r9,r7,#2 @wd - 2
95 LDRH r10,[r3,r9] @pu1_src_top[wd - 2]
107 STRH r10,[sp] @u1_src_top_left_tmp = pu1_src_top[wd - 2]
192 SUB r10,r7,#2 @wd - 2
194 MLA r12,r11,r1,r10 @wd - 2 + (ht - 1) * src_strd
195 ADD r12,r12,r0 @pu1_src[wd - 2 + (ht - 1) * src_strd]
196 …LDRB r10,[r12] @u1_pos_wd_ht_tmp_u = pu1_src[wd - 2 + (ht - 1) * src_strd]
[all …]
/external/libavc/decoder/
Dih264d_format_conv.c111 WORD32 wd, in ih264d_fmt_conv_420sp_to_rgb565() argument
143 for(i2_j = (wd >> 1); i2_j > 0; i2_j--) in ih264d_fmt_conv_420sp_to_rgb565()
210 pu1_u_src = pu1_u_src + src_uv_strd - wd; in ih264d_fmt_conv_420sp_to_rgb565()
211 pu1_v_src = pu1_v_src + src_uv_strd - wd; in ih264d_fmt_conv_420sp_to_rgb565()
213 pu1_y_src = pu1_y_src + (src_y_strd << 1) - wd; in ih264d_fmt_conv_420sp_to_rgb565()
214 pu1_y_src_nxt = pu1_y_src_nxt + (src_y_strd << 1) - wd; in ih264d_fmt_conv_420sp_to_rgb565()
216 pu2_rgb_dst = pu2_rgb_dst_next_row - wd + dst_strd; in ih264d_fmt_conv_420sp_to_rgb565()
217 pu2_rgb_dst_next_row = pu2_rgb_dst_next_row + (dst_strd << 1) - wd; in ih264d_fmt_conv_420sp_to_rgb565()
225 WORD32 wd, in ih264d_fmt_conv_420sp_to_rgba8888() argument
257 for(i2_j = (wd >> 1); i2_j > 0; i2_j--) in ih264d_fmt_conv_420sp_to_rgba8888()
[all …]
/external/selinux/policycoreutils/restorecond/
Dwatch.c31 int wd; member
82 ptr->wd = inotify_add_watch(fd, dir, IN_CREATE | IN_MOVED_TO); in watch_list_add()
83 if (ptr->wd == -1) { in watch_list_add()
102 printf("%d: Dir=%s, File=%s\n", ptr->wd, ptr->dir, file); in watch_list_add()
114 int watch_list_find(int wd, const char *file) in watch_list_find() argument
119 printf("%d: File=%s\n", wd, file); in watch_list_find()
121 if (ptr->wd == wd) { in watch_list_find()
152 inotify_rm_watch(fd, ptr->wd); in watch_list_free()
187 event->wd, event->mask, in watch()
190 if (event->wd == master_wd) in watch()
[all …]
/external/libavc/test/encoder/
Dinput.c122 WORD32 wd, ht, strd; in read_input() local
130 wd = ps_raw_buf->au4_wd[0]; in read_input()
137 bytes = fread(pu1_buf, sizeof(UWORD8), wd, fp); in read_input()
138 if(bytes != wd ) in read_input()
154 wd = ps_raw_buf->au4_wd[comp]; in read_input()
161 bytes = fread(pu1_buf, sizeof(UWORD8), wd, fp); in read_input()
162 if(bytes != wd) in read_input()
177 WORD32 wd, ht, strd; in dump_input() local
185 wd = ps_raw_buf->au4_wd[0]; in dump_input()
192 bytes = fwrite(pu1_buf, sizeof(UWORD8), wd, fp); in dump_input()
[all …]
/external/libhevc/decoder/
Dihevcd_fmt_conv.c117 WORD32 wd, in ihevcd_fmt_conv_420sp_to_rgb565() argument
150 for(i2_j = (wd >> 1); i2_j > 0; i2_j--) in ihevcd_fmt_conv_420sp_to_rgb565()
216 pu1_u_src = pu1_u_src + src_uv_strd - wd; in ihevcd_fmt_conv_420sp_to_rgb565()
217 pu1_v_src = pu1_v_src + src_uv_strd - wd; in ihevcd_fmt_conv_420sp_to_rgb565()
219 pu1_y_src = pu1_y_src + (src_y_strd << 1) - wd; in ihevcd_fmt_conv_420sp_to_rgb565()
220 pu1_y_src_nxt = pu1_y_src_nxt + (src_y_strd << 1) - wd; in ihevcd_fmt_conv_420sp_to_rgb565()
222 pu2_rgb_dst = pu2_rgb_dst_NextRow - wd + dst_strd; in ihevcd_fmt_conv_420sp_to_rgb565()
223 pu2_rgb_dst_NextRow = pu2_rgb_dst_NextRow + (dst_strd << 1) - wd; in ihevcd_fmt_conv_420sp_to_rgb565()
232 WORD32 wd, in ihevcd_fmt_conv_420sp_to_rgba8888() argument
265 for(i2_j = (wd >> 1); i2_j > 0; i2_j--) in ihevcd_fmt_conv_420sp_to_rgba8888()
[all …]
/external/libhevc/common/x86/
Dihevc_inter_pred_filters_sse42_intr.c115 WORD32 wd) in ihevc_inter_pred_luma_copy_w16out_sse42() argument
120 ASSERT(wd % 4 == 0); /* checking assumption*/ in ihevc_inter_pred_luma_copy_w16out_sse42()
123 if(0 == (wd & 7)) /* multiple of 8 case */ in ihevc_inter_pred_luma_copy_w16out_sse42()
127 for(col = 0; col < wd; col += 8) in ihevc_inter_pred_luma_copy_w16out_sse42()
155 pu1_src += 4 * src_strd - wd; /* pointer update */ in ihevc_inter_pred_luma_copy_w16out_sse42()
156 pi2_dst += 4 * dst_strd - wd; /* pointer update */ in ihevc_inter_pred_luma_copy_w16out_sse42()
163 for(col = 0; col < wd; col += 4) in ihevc_inter_pred_luma_copy_w16out_sse42()
191 pu1_src += 4 * src_strd - wd; /* pointer update */ in ihevc_inter_pred_luma_copy_w16out_sse42()
192 pi2_dst += 4 * dst_strd - wd; /* pointer update */ in ihevc_inter_pred_luma_copy_w16out_sse42()
242 WORD32 wd) in ihevc_inter_pred_chroma_copy_sse42() argument
[all …]
/external/libavc/common/arm/
Dih264_inter_pred_luma_copy_a9q.s47 @* @param[in] wd
63 @ WORD32 wd )
71 @ r12 => wd
81 ldr r12, [sp, #108] @Loads wd
85 tst r12, #15 @checks wd for multiples for 4 & 8
87 tst r12, #7 @checks wd for multiples for 4 & 8
92 subs r4, r12, #0 @checks wd == 0
104 subs r4, r4, #4 @(wd -4)
128 subs r4, r12, #0 @checks wd
138 subs r4, r4, #8 @wd - 8(Loop condition)
[all …]

123456789