HomeSort by relevance Sort by last modified time
    Searched refs:sad (Results 26 - 49 of 49) sorted by null

12

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
me_utils.cpp 378 mot_mb[1].sad = sad1;
379 mot_mb[2].sad = sad2;
380 mot_mb[3].sad = sad3;
381 mot_mb[4].sad = sad4;
382 mot_mb[0].sad = sad1 + sad2 + sad3 + sad4;
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/libavc/encoder/x86/
ih264e_intra_modes_eval_ssse3.c 101 * SAD and returns the buffer predicted with best mode.
125 * pointer to the variable in which minimum sad is returned
364 // Doing prediction for minimum SAD
433 * This function evaluates intra 4x4 modes, computes corresponding sad
464 * Lamda value for computing cost from SAD
486 WORD32 sad[MAX_I4x4] = { INT_MAX, INT_MAX, INT_MAX, INT_MAX, INT_MAX, local
532 sad[VERT_I4x4] = _mm_extract_epi16(sad_8x16b, 0) + _mm_extract_epi16(sad_8x16b, 4);
533 cost[VERT_I4x4] = sad[VERT_I4x4] + ((u4_predictd_mode == VERT_I4x4) ? u4_lambda: lambda4);
543 sad[HORZ_I4x4] = _mm_extract_epi16(sad_8x16b, 0) + _mm_extract_epi16(sad_8x16b, 4);
544 cost[HORZ_I4x4] = sad[HORZ_I4x4] + ((u4_predictd_mode == HORZ_I4x4) ? u4_lambda: lambda4)
    [all...]
  /external/libavc/encoder/arm/
ih264e_evaluate_intra4x4_modes_a9q.s 46 @* This function evaluates 4x4 modes and compute corresponding sad
77 @* Lamda value for computing cost from SAD
154 ands r10, r8, #01 @VERT sad ??
173 ands r10, r8, #02 @HORZ sad ??
198 ands r10, r8, #04 @DC sad ??
255 ands r10, r8, #0x08 @DIAG_DL sad ??
284 ands r10, r8, #16 @DIAG_DR sad ??
313 ands r10, r8, #32 @VERT_R sad ??
355 ands r10, r8, #64 @HORZ_D sad ??
388 ands r10, r8, #128 @VERT_L sad ?
    [all...]
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/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 1522 unsigned int sad = local
1546 const unsigned int sad = local
1557 unsigned int sad = local
2064 const int sad = local
2109 unsigned int sad = sads[i]; local
2125 unsigned int sad = local
2175 unsigned int sad = sads[i]; local
2199 unsigned int sad = sads[i]; local
2215 unsigned int sad = local
2280 unsigned int sad = local
2335 unsigned int sad = local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_mfqe.c 163 int sad, sad_thr, vdiff, vdiff_thr; local
170 sad = (vpx_sad16x16(y, y_stride, yd, yd_stride) + 128) >> 8;
173 sad = (vpx_sad32x32(y, y_stride, yd, yd_stride) + 512) >> 10;
176 sad = (vpx_sad64x64(y, y_stride, yd, yd_stride) + 2048) >> 12;
179 // vdiff > sad * 3 means vdiff should not be too small, otherwise,
182 if (sad > 1 && vdiff > sad * 3) {
184 int ifactor = weight * sad * vdiff / (sad_thr * vdiff_thr);
  /external/libvpx/libvpx/vpx_dsp/x86/
sad_sse2.asm 18 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows
20 cglobal sad%1x%2, 4, %3, 6, src, src_stride, ref, ref_stride, \
25 cglobal sad%1x%2_avg, 5, 1 + %3, 5, src, src_stride, ref, ref_stride, \
28 cglobal sad%1x%2_avg, 5, ARCH_X86_64 + %3, 6, src, src_stride, \
38 %endif ; avg/sad
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/libvpx/libvpx/test/
sad_test.cc 128 uint32_t sad = 0; local
139 sad += abs(source8[h * source_stride_ + w] -
143 sad += abs(source16[h * source_stride_ + w] -
149 return sad;
156 unsigned int sad = 0; local
172 sad += abs(source8[h * source_stride_ + w] - comp_pred);
178 sad += abs(source16[h * source_stride_ + w] - comp_pred);
183 return sad;
272 unsigned int SAD(int block_idx) const {
283 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...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 69 button = (Button) findViewById(R.id.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);
  /hardware/qcom/audio/hal/msm8960/
platform.c 47 * 4 bytes: total length of Short Audio Descriptor (SAD) blocks
48 * Maximum 10 * 3 bytes: SAD blocks
929 char *sad = block; local
    [all...]
  /hardware/qcom/audio/hal/msm8916/
platform.c 50 * 4 bytes: total length of Short Audio Descriptor (SAD) blocks
51 * Maximum 10 * 3 bytes: SAD blocks
2009 char *sad = block; local
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 166 ; unsigned int *sad, 5
186 pxor xmm3, xmm3 ; SAD
198 ; SAD(src1, src2)
204 psadbw xmm2, xmm1 ; sum src2 by misusing SAD against 0
223 ; Finalize SAD and store
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 167 ; unsigned int *sad, 5
187 pxor xmm3, xmm3 ; SAD
199 ; SAD(src1, src2)
205 psadbw xmm2, xmm1 ; sum src2 by misusing SAD against 0
224 ; Finalize SAD and store
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
disasm-a3xx.c 740 OPC(3, OPC_SAD_S16, sad.s16),
741 OPC(3, OPC_SAD_S32, sad.s32),
  /external/libvpx/libvpx/vpx_dsp/
vpx_dsp.mk 290 DSP_SRCS-yes += sad.c
  /hardware/qcom/audio/hal/msm8974/
platform.c 52 * 4 bytes: total length of Short Audio Descriptor (SAD) blocks
53 * Maximum 10 * 3 bytes: SAD blocks
2878 char *sad = block; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 427 hd.sad = 0;
    [all...]
  /external/iproute2/doc/
ip-cref.tex     [all...]

Completed in 348 milliseconds

12