/external/libhevc/common/arm/ |
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...] |
ihevc_inter_pred_luma_copy.s | 26 @* copies the array of width 'wd' and height 'ht' from the location pointed 47 @* @param[in] wd 64 @ 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 [all...] |
ihevc_weighted_pred_neon_intr.c | 93 * @param[in] wd 113 WORD32 wd) 143 for(col = wd; col > 0; col -= 4) 176 pi2_src += 2 * src_strd - wd; 177 pu1_dst += 2 * dst_strd - wd; 224 * @param[in] wd 246 WORD32 wd) 290 for(col = 2 * wd; col > 0; col -= 4) 323 pi2_src += 2 * src_strd - 2 * wd; 324 pu1_dst += 2 * dst_strd - 2 * wd; [all...] |
ihevc_weighted_pred_bi_default.s | 78 @* @param[in] wd 97 @ 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 add r0,r0,r7 @pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment with double the wd decrement [all...] |
/external/libavc/common/ |
ih264_padding.c | 78 * @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);
|
ih264_weighted_pred.h | 78 WORD32 wd); 88 WORD32 wd); 102 WORD32 wd);
|
ih264_inter_pred_filters.h | 108 WORD32 wd, 117 WORD32 wd); 135 WORD32 wd);
|
/external/libhevc/common/ |
ihevc_weighted_pred.c | 95 * @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 [all...] |
ihevc_inter_pred.h | 60 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...] |
ihevc_weighted_pred.h | 47 WORD32 wd); 60 WORD32 wd); 76 WORD32 wd); 96 WORD32 wd); 107 WORD32 wd); 118 WORD32 wd);
|
/external/libmpeg2/common/x86/ |
icv_sad_ssse3.c | 77 * @param[in] wd 94 WORD32 wd, 102 UNUSED(wd); 104 ASSERT(wd == 8);
|
/external/libavc/encoder/ |
ih264e_fmt_conv.c | 100 WORD32 wd, 131 for (i2_j = (wd >> 1); i2_j > 0; i2_j--) 198 pu1_u_src = pu1_u_src + src_uv_strd - wd; 199 pu1_v_src = pu1_v_src + src_uv_strd - wd; 201 pu1_y_src = pu1_y_src + (src_y_strd << 1) - wd; 202 pu1_y_src_nxt = pu1_y_src_nxt + (src_y_strd << 1) - wd; 204 pu2_rgb_dst = pu2_rgb_dst_NextRow - wd + dst_strd; 205 pu2_rgb_dst_NextRow = pu2_rgb_dst_NextRow + (dst_strd << 1) - wd; 213 WORD32 wd, 244 for (i2_j = (wd >> 1); i2_j > 0; i2_j-- 811 WORD32 dst_stride, wd; local [all...] |
ih264e_half_pel.c | 190 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++)
|
ih264e_fmt_conv.h | 59 WORD32 wd, 69 WORD32 wd, 80 WORD32 wd, 92 WORD32 wd,
|
ih264e_mc.c | 143 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/decoder/ |
ihevcd_fmt_conv.c | 88 * @param[in] wd 110 * values for wd and ht it can be done 117 WORD32 wd, 150 for(i2_j = (wd >> 1); i2_j > 0; i2_j--) 216 pu1_u_src = pu1_u_src + src_uv_strd - wd; 217 pu1_v_src = pu1_v_src + src_uv_strd - wd; 219 pu1_y_src = pu1_y_src + (src_y_strd << 1) - wd; 220 pu1_y_src_nxt = pu1_y_src_nxt + (src_y_strd << 1) - wd; 222 pu2_rgb_dst = pu2_rgb_dst_NextRow - wd + dst_strd; 223 pu2_rgb_dst_NextRow = pu2_rgb_dst_NextRow + (dst_strd << 1) - wd; [all...] |
/external/toybox/toys/other/ |
inotifyd.c | 102 toys.optargs[event->wd], event->name); 105 prog_args[2] = toys.optargs[event->wd]; 116 inotify_rm_watch(fds.fd, event->wd);
|
/device/generic/goldfish/camera/ |
EmulatedCameraHotplugThread.h | 57 int getCameraId(int wd) const;
|
EmulatedCameraHotplugThread.cpp | 178 int cameraId = getCameraId(event->wd); 181 ALOGE("%s: Got bad camera ID from WD '%d", 182 __FUNCTION__, event->wd); 265 int EmulatedCameraHotplugThread::getCameraId(int wd) const { 267 if (mSubscribers[i].WatchID == wd) { 288 int wd = inotify_add_watch(mInotifyFd, local 292 if (wd == -1) { 301 ALOGV("%s: Watch added for camID='%d', wd='%d'", 302 __FUNCTION__, cameraId, wd); 304 SubscriberInfo si = { cameraId, wd }; [all...] |
/external/libavc/test/encoder/ |
psnr.c | 100 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);
|
/hardware/intel/img/psb_video/src/ |
psb_drv_debug.h | 118 #define DW(wd, sym, to, from) psb__debug_w(((uint32_t *)pasDmaList)[wd], "LLDMA: " #sym " = %d\n", to, from); 119 #define DWH(wd, sym, to, from) psb__debug_w(((uint32_t *)pasDmaList)[wd], "LLDMA: " #sym " = %08x\n", to, from);
|
/external/libhevc/common/x86/ |
ihevc_inter_pred_filters_sse42_intr.c | 76 * 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; col += 4 [all...] |
/external/autotest/server/site_tests/native_Benchmarks/ |
octane.py | 30 wd = '%s/octane' % self.scratch_cli 31 cmd = 'cd %s && %s run_all.js' % (wd, self.v8.executable)
|
/external/clang/test/SemaCXX/ |
flexible-array-test.cpp | 26 int wd; member in struct:inotify_event 41 eventForId.insert(ptr->wd, *ptr);
|