HomeSort by relevance Sort by last modified time
    Searched refs:wd (Results 1 - 25 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/selinux/policycoreutils/restorecond/
utmpwatcher.h 26 unsigned int utmpwatcher_handle(int inotify_fd, int wd);
restorecond.h 41 extern int watch_list_find(int wd, const char *file);
watch.c 31 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)
119 printf("%d: File=%s\n", wd, file);
121 if (ptr->wd == wd) {
152 inotify_rm_watch(fd, ptr->wd);
186 printf("wd=%d mask=%u cookie=%u len=%u\n"
    [all...]
  /external/autotest/client/site_tests/security_Minijail0/src/
test-chroot 15 wd=$(pwd)
16 [ "$wd" != "/" ] && die "not in /"
test-pivotroot 15 wd=$(pwd)
16 [ "$wd" != "/" ] && die "not in /"
  /external/libavc/common/
ih264_weighted_pred.c 63 /* 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) can be *
    [all...]
ih264_inter_pred_filters.c 80 * Copies the array of width 'wd' and height 'ht' from the location pointed
99 * @param[in] wd
115 WORD32 wd,
124 for(col = 0; col < wd; col++)
141 * Copies the array of width 'wd' and height 'ht' from the location pointed
159 * @param[in] wd
175 WORD32 wd)
178 wd *= 2;
182 for(col = 0; col < wd; col+=2)
217 * @param[in] wd
    [all...]
  /external/libhevc/common/
ihevc_sao.c 79 WORD32 wd,
90 pu1_src_left[row] = pu1_src[row * src_strd + (wd - 1)];
92 pu1_src_top_left[0] = pu1_src_top[wd - 1];
93 for(col = 0; col < wd; col++)
110 for(col = 0; col < wd; col++)
123 /* input 'wd' has to be for the interleaved block and not for each color component */
133 WORD32 wd,
145 pu1_src_left[2 * row] = pu1_src[row * src_strd + (wd - 2)];
146 pu1_src_left[2 * row + 1] = pu1_src[row * src_strd + (wd - 1)];
148 pu1_src_top_left[0] = pu1_src_top[wd - 2]
    [all...]
ihevc_padding.c 69 * @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 - 1]
    [all...]
ihevc_inter_pred_filters.c 75 * 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; col++
    [all...]
ihevc_padding.h 45 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,
    [all...]
ihevc_sao.h 59 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...]
  /external/libmpeg2/common/
icv_variance.h 41 typedef WORD32 icv_variance_8x4_t(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 ht);
icv_sad.c 76 * @param[in] wd
93 WORD32 wd,
99 UNUSED(wd);
102 ASSERT(wd == 8);
icv_variance.c 71 * @param[in] wd
84 WORD32 icv_variance_8x4(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 ht)
92 UNUSED(wd);
95 ASSERT(wd == 8);
ideint_debug.c 96 WORD32 wd, ht, strd; local
98 wd = ps_pic->ai4_wd[i];
105 memset(pu1_buf, val, wd);
icv_sad.h 45 WORD32 wd,
  /external/fio/engines/
windowsaio.c 35 struct windowsaio_data *wd; member in struct:thread_ctx
52 struct windowsaio_data *wd; local
55 wd = calloc(1, sizeof(struct windowsaio_data));
56 if (wd == NULL) {
62 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*));
63 if (wd->aio_events == NULL) {
71 wd->iocomplete_event = CreateEvent(NULL, FALSE, FALSE, NULL);
72 if (wd->iocomplete_event == NULL) {
79 if (wd != NULL) {
80 if (wd->aio_events != NULL
91 struct windowsaio_data *wd; local
132 struct windowsaio_data *wd; local
207 struct windowsaio_data *wd; local
254 struct windowsaio_data *wd = td->io_ops->data; local
262 struct windowsaio_data *wd = td->io_ops->data; local
369 struct windowsaio_data *wd; local
    [all...]
  /external/libavc/decoder/
ih264d_format_conv.h 69 WORD32 wd,
82 WORD32 wd,
93 WORD32 wd,
103 WORD32 wd,
ih264d_format_conv.c 82 * @param[in] wd
104 * values for wd and ht it can be done
111 WORD32 wd,
143 for(i2_j = (wd >> 1); i2_j > 0; i2_j--)
210 pu1_u_src = pu1_u_src + src_uv_strd - wd;
211 pu1_v_src = pu1_v_src + src_uv_strd - wd;
213 pu1_y_src = pu1_y_src + (src_y_strd << 1) - wd;
214 pu1_y_src_nxt = pu1_y_src_nxt + (src_y_strd << 1) - wd;
216 pu2_rgb_dst = pu2_rgb_dst_next_row - wd + dst_strd;
217 pu2_rgb_dst_next_row = pu2_rgb_dst_next_row + (dst_strd << 1) - wd;
    [all...]
  /external/libhevc/decoder/
ihevcd_fmt_conv.h 49 WORD32 wd,
59 WORD32 wd,
71 WORD32 wd,
82 WORD32 wd,
  /external/libavc/test/encoder/
input.c 122 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, fp)
    [all...]
  /external/libhevc/common/arm/
ihevc_inter_pred_chroma_copy.s 47 @* copies the array of width 'wd' and height 'ht' from the location pointed
68 @* @param[in] wd
85 @ 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 ==
    [all...]
ihevc_inter_pred_chroma_vert.s 73 @* @param[in] wd
89 @ 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,
    [all...]
ihevc_inter_pred_chroma_vert_w16out.s 73 @* @param[in] wd
89 @ 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,
    [all...]

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011>>