Home
last modified time | relevance | path

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

12345678910

/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)
118 ldr r6,[sp,#wd_offset] @loads wd
124 tst r6,#3 @checks (wd & 3)
126 lsl r10,r6,#1 @2*wd
132 bgt outer_loop_wd_2 @jumps to loop handling wd ==2
138 sub r9,r7,r10,lsl #1 @4*dst_strd - 4wd
140 sub r8,r12,r10 @2*src_strd - 2wd
142 mov r5,r10 @2wd
144 inner_loop_ht_2: @called when wd is multiple of 4 and ht is 4,2
148 subs r5,r5,#8 @2wd - 8
[all …]
Dihevc_inter_pred_chroma_vert.s89 @ word32 wd)
118 ldr r6,[sp,#wd_offset] @loads wd
124 tst r6,#3 @checks (wd & 3)
126 lsl r10,r6,#1 @2*wd
132 bgt outer_loop_wd_2 @jumps to loop handling wd ==2
138 sub r9,r7,r10 @2*dst_strd - 2wd
140 sub r8,r12,r10 @2*src_strd - 2wd
141 mov r5,r10 @2wd
143 inner_loop_ht_2: @called when wd is multiple of 4 and ht is 4,2
147 subs r5,r5,#8 @2wd - 8
[all …]
Dihevc_inter_pred_chroma_copy.s85 @ word32 wd)
93 @ r6 => wd
110 ldr r12,[sp,#wd_offset] @loads wd
117 tst r12,#15 @checks wd for multiples for 4 & 8
119 tst r12,#7 @checks wd for multiples for 4 & 8
127 subs r4,r12,#0 @checks wd == 0
139 subs r4,r4,#4 @(wd -4)
159 subs r4,r12,#0 @checks wd == 0
170 subs r4,r4,#4 @(wd -4)
181 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
140 ldr r9,[sp,#wd_offset] @load wd
148 rsb r7,r6,r3,lsl #2 @4*src_strd1 - wd
149 rsb r10,r6,r4,lsl #2 @4*src_strd2 - wd
151 @rsb r6,r6,r5,lsl #2 @4*dst_strd - wd
184 cmp r9,#0 @check wd == 0
212 subs r9,r9,#4 @decrement wd by 4 and check for 0
220 … @pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment wi…
222 add r1,r1,r10 @pi2_src2 + 4*src_strd2 - 2*wd
[all …]
Dihevc_inter_pred_luma_copy.s64 @ word32 wd )
72 @ r12 => wd
91 ldr r12,[sp,#wd_offset] @loads wd
95 tst r12,#15 @checks wd for multiples for 4 & 8
97 tst r12,#7 @checks wd for multiples for 4 & 8
102 subs r4,r12,#0 @checks wd == 0
114 subs r4,r4,#4 @(wd -4)
137 subs r4,r12,#0 @checks wd
147 subs r4,r4,#8 @wd - 8(loop condition)
167 subs r4,r12,#0 @checks wd
[all …]
Dihevc_sao_edge_offset_class2_chroma.s49 @ WORD32 wd,
60 @r7 => wd
101 LDR r7,[sp,#wd_offset] @Loads wd
103 SUB r9,r7,#2 @wd - 2
106 LDRH r10,[r3,r9] @pu1_src_top[wd - 2]
117 STRH r10,[sp] @u1_src_top_left_tmp = pu1_src_top[wd - 2]
202 SUB r10,r7,#2 @wd - 2
204 MLA r12,r11,r1,r10 @wd - 2 + (ht - 1) * src_strd
205 ADD r12,r12,r0 @pu1_src[wd - 2 + (ht - 1) * src_strd]
206 …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/restorecond/
Dwatch.c30 int wd; member
84 ptr->wd = inotify_add_watch(fd, dir, IN_CREATE | IN_MOVED_TO); in watch_list_add()
85 if (ptr->wd == -1) { in watch_list_add()
104 printf("%d: Dir=%s, File=%s\n", ptr->wd, ptr->dir, file); in watch_list_add()
116 int watch_list_find(int wd, const char *file) in watch_list_find() argument
123 printf("%d: File=%s\n", wd, file); in watch_list_find()
125 if (ptr->wd == wd) { in watch_list_find()
157 inotify_rm_watch(fd, ptr->wd); in watch_list_free()
192 event->wd, event->mask, in watch()
195 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/ltp/testcases/kernel/syscalls/inotify/
Dinotify05.c59 static int wd; variable
115 event->wd, event->mask, in main()
123 event->wd != -1) { in main()
128 event->wd, event->mask, in main()
142 event->wd, event->mask, in main()
180 wd = myinotify_add_watch(fd_notify, fname, IN_ALL_EVENTS); in setup()
181 if (wd < 0) { in setup()
193 if (fd_notify > 0 && myinotify_rm_watch(fd_notify, wd) == -1) { in cleanup()
195 fd_notify, wd); in cleanup()
Dinotify03.c66 static int wd; variable
129 event->wd, event->mask, in main()
134 event->wd, event->mask, in main()
140 event->wd, event->mask, in main()
152 ret = myinotify_rm_watch(fd_notify, wd); in main()
156 fd_notify, wd); in main()
159 fd_notify, wd); in main()
228 wd = myinotify_add_watch(fd_notify, fname, IN_ALL_EVENTS); in setup()
229 if (wd < 0) in setup()

12345678910