HomeSort by relevance Sort by last modified time
    Searched refs:sad (Results 51 - 75 of 79) sorted by null

1 23 4

  /external/libavc/encoder/arm/
ih264e_evaluate_intra_chroma_modes_a9q.s 28 @* This function evaluates first three intra chroma modes and compute corresponding sad
53 @* Pointer to the variable in which minimum sad is returned
126 b sad
139 b sad
147 b sad
157 sad: label
288 str r10 , [r7] @MIN SAD
301 str r9 , [r7] @MIN SAD
323 str r8 , [r7] @MIN SAD
ime_distortion_metrics_a9q.s 54 @* @brief computes distortion (SAD) between 2 16x16 blocks (fast mode)
57 @* This functions computes SAD between 2 16x16 blocks. There is a provision
58 @* for early exit if the up-to computed SAD exceeds maximum allowed SAD. To
77 @* integer evaluated sad
140 @* @brief computes distortion (SAD) between 2 16x8 blocks
144 @* This functions computes SAD between 2 16x8 blocks. There is a provision
145 @* for early exit if the up-to computed SAD exceeds maximum allowed SAD. To
164 @* integer evaluated sad
    [all...]
  /external/libhevc/encoder/
ihevce_decomp_pre_intra_structs.h 126 WORD32 sad[64 * NUM_MODES]; member in struct:__anon28538
hme_coarse.c 411 /* Get SAD by adding SAD for current and neighbour S */
415 // fprintf(fp_dump_sad,"%d\t",sad);
496 /* Get SAD by adding SAD for current and neighbour S */
500 // fprintf(fp_dump_sad,"%d\t",sad);
543 * @brief Does a 4x4 sad computation on a given range and stores it in memory
567 S32 sad, i, j; local
622 /* SAD computation */
624 sad = 0
650 S32 sad, i, j; local
    [all...]
ihevce_recur_bracketing.c 185 * \param[in] lambda : Lambda value (SAD/SATD)
354 UWORD16 sad; local
409 sad = ps_ipe_optimised_function_list->pf_4x4_sad_computer(pu1_src, &pred[0], src_stride, 4);
411 sad_cost = sad;
456 sad = ihevce_ipe_pass_satd(pi2_trans_out, 4, 4);
460 sad = ps_ipe_optimised_function_list->pf_4x4_sad_computer(
463 sad_cost = sad;
564 /* call the function which populates sad cost for all the modes */
631 * info decided coarse resolution mode decision. Compares the SATD/SAD cost btwn
796 /*Earlier only me sad was getting populated, now best of ipe and me is populated*
2995 WORD32 sad = 0; local
3065 WORD32 sad = 0; local
    [all...]
ihevce_common_utils.c 941 * Compute SSD & SAD between two blocks (8 bit input)
961 * UWORD32 block SAD
977 WORD32 i, j, sad = 0; local
989 sad += abs(val);
995 *pu4_blk_sad = sad;
    [all...]
hme_err_compute.c 26 * SAD / SATD routines for error computation
28 * Detailed_description : Contains various types of SAD/SATD routines for
29 * error computation between a given input and reference ptr. The SAD
32 * updates means evaluating sub block SADs, e.g. 4 4x4 subblock SAD in
33 * addition to the main 8x8 block SAD.
117 /* Theoritically, the various types of SAD functions that are needed for */
127 /* update on AMP partitions, then basic SAD unit is 4x4, if it doesnt, then */
128 /* basic SAD unit is 8x8. */
205 /* Loop to compute the SAD's */
346 /* Loop to compute the SAD's *
462 S32 sad = 0, j, k; local
493 WORD32 sad = 0; local
    [all...]
  /external/libvpx/libvpx/test/
sad_test.cc 130 uint32_t sad = 0; local
141 sad += abs(source8[h * source_stride_ + w] -
145 sad += abs(source16[h * source_stride_ + w] -
151 return sad;
158 unsigned int sad = 0; local
174 sad += abs(source8[h * source_stride_ + w] - comp_pred);
180 sad += abs(source16[h * source_stride_ + w] - comp_pred);
185 return sad;
274 unsigned int SAD(int block_idx) const {
285 const unsigned int exp_sad = SAD(0)
    [all...]
  /external/ppp/pppd/
tty.c 879 struct sockaddr_in sad; local
908 memset(&sad, 0, sizeof(sad));
909 sad.sin_family = AF_INET;
910 sad.sin_port = htons(port);
911 sad.sin_addr.s_addr = host;
912 if (connect(sock, (struct sockaddr *)&sad, sizeof(sad)) < 0) {
    [all...]
  /external/libaom/libaom/test/
sad_test.cc 159 unsigned int sad = 0; local
168 sad += abs(source8[h * source_stride_ + w] -
171 sad += abs(source16[h * source_stride_ + w] -
176 return sad;
183 unsigned int sad = 0; local
197 sad += abs(source8[h * source_stride_ + w] - comp_pred);
202 sad += abs(source16[h * source_stride_ + w] - comp_pred);
206 return sad;
235 unsigned int sad = 0; local
250 sad += abs(source8[h * source_stride_ + w] - comp_pred)
    [all...]
  /external/libhevc/encoder/arm/
ihevce_me_neon.c 161 uint32x4_t sad; local
164 /* -------- Compute four 2x2 SAD Transforms of 8x2 in one call--------- */
174 sad = vpaddlq_u16(abs);
175 vst1q_u32(pu4_sad, sad);
186 /* -------- Compute four 4x4 SAD Transforms of 16x4 in one call--------- */
212 uint32x4_t sad; local
215 /* -------- Compute four 8x8 SAD Transforms of 32x8 in one call--------- */
239 sad = vpaddlq_u16(abs_0);
240 vst1q_u32(pu4_sad, sad);
248 /* ------ Compute four 16x16 SAD Transforms of 64x16 in one call-------- *
    [all...]
ihevce_had_compute_neon.c 389 int32_t sad; local
444 sad = vget_lane_s64(sad_64_1, 0);
446 return ((sad + 2) >> 2);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 1681 unsigned int sad = local
1705 const unsigned int sad = local
1716 unsigned int sad = local
2588 unsigned int sad = local
2643 unsigned int sad = local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 69 button = (Button) findViewById(R.id.sad);
  /external/libaom/libaom/aom_dsp/x86/
sad4d_sse2.asm 193 cglobal sad%1x%2x4d, 5, 8, 8, src, src_stride, ref1, ref_stride, \
196 cglobal sad%1x%2x4d, 4, 7, 8, src, src_stride, ref1, ref_stride, \
highbd_sad_sse2.asm 41 %endif ; avg/sad
  /external/libvpx/libvpx/vpx_dsp/x86/
sad4d_sse2.asm 184 cglobal sad%1x%2x4d, 5, 8, 8, src, src_stride, ref1, ref_stride, \
187 cglobal sad%1x%2x4d, 4, 7, 8, src, src_stride, ref1, ref_stride, \
highbd_sad_sse2.asm 38 %endif ; avg/sad
  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.cc 103 // Save var and sad to the buffer.
105 mb_dst, stride_y, y_tmp, 16, &metrics_[mb_index].sad);
  /external/libhevc/common/arm/
ihevc_resi_trans_neon.c 73 UWORD32 sad; local
104 sad = vget_lane_u32(vadd_u32(vreinterpret_u32_u64(vget_low_u64(c)),
169 return sad;
205 * @returns block sad
222 UWORD32 sad; local
249 sad = vget_lane_u32(vadd_u32(vreinterpret_u32_u64(vget_low_u64(c)),
350 return sad;
409 UWORD32 sad; local
446 sad = vget_lane_s32(sad_v, 0);
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h 158 Int sad; /* SAD */ member in struct:tagMOT
358 float sumMAD; /* SAD/MAD for frame */
360 /* to speedup the SAD calculation */
363 Int nrmlz_th[48]; /* Threshold for fast SAD calculation using HTFM */
412 Int totalSAD; /* So far total SAD for a frame */
  /external/python/cpython3/Lib/idlelib/idle_test/
test_configdialog.py     [all...]
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 168 ; unsigned int *sad, 5
188 pxor xmm3, xmm3 ; SAD
200 ; SAD(src1, src2)
206 psadbw xmm2, xmm1 ; sum src2 by misusing SAD against 0
225 ; Finalize SAD and store
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 169 ; unsigned int *sad, 5
189 pxor xmm3, xmm3 ; SAD
201 ; SAD(src1, src2)
207 psadbw xmm2, xmm1 ; sum src2 by misusing SAD against 0
226 ; Finalize SAD and store
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
disasm-a3xx.c 878 OPC(3, OPC_SAD_S16, sad.s16),
879 OPC(3, OPC_SAD_S32, sad.s32),

Completed in 3716 milliseconds

1 23 4