Searched defs:diff (Results 151 - 175 of 623) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcommon.cc215 void update_metadata_system_bytes(int diff) { argument
216 metadata_system_bytes_ += diff;
218 void update_metadata_unmapped_bytes(int diff) { argument
219 metadata_unmapped_bytes_ += diff;
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dresample_by_2_mips.c151 int32_t tmp1, tmp2, diff; local
157 diff = in32 - state1;
158 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0);
160 diff = tmp1 - state2;
161 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
163 diff = tmp2 - state3;
164 state3 = MUL_ACCUM_2(kResampleAllpass2[2], diff, state2);
169 diff = in32 - state5;
170 tmp1 = MUL_ACCUM_1(kResampleAllpass1[0], diff, state4);
172 diff
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dencode.c52 int16_t diff, start_pos; local
92 diff = iLBCenc_inst->diff;
165 diff = STATE_LEN - iLBCenc_inst->state_short_len;
168 index += diff;
176 start_pos = (iLBCbits_inst->startIdx-1)*SUBL + diff;
204 mem+CB_MEML-ST_MEM_L_TBL, ST_MEM_L_TBL, diff,
212 diff
220 WebRtcSpl_MemCpyReversedOrder(&reverseResidual[diff-1],
221 &residual[(iLBCbits_inst->startIdx+1)*SUBL-STATE_LEN], diff);
[all...]
/external/chromium_org/ui/compositor/
H A Ddip_util.cc84 float diff = std::abs(snapped_position - gfx::ToRoundedInt(snapped_position)); local
85 DCHECK_LT(diff, kEplison);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_sync.cc187 uptr diff = dst - src; local
209 s->addr += diff;
/external/eigen/Eigen/src/Geometry/
H A DParametrizedLine.h84 VectorType diff = p - origin(); local
85 return (diff - direction().dot(diff) * direction()).squaredNorm();
/external/freetype/src/cff/
H A Dcf2blues.c286 CF2_Fixed flatFamilyEdge, diff; local
304 diff = cf2_fixedAbs( flatEdge - flatFamilyEdge );
306 if ( diff < minDiff && diff < csUnitsPerPixel )
309 minDiff = diff;
311 if ( diff == 0 )
322 diff = cf2_fixedAbs( flatEdge - flatFamilyEdge );
324 if ( diff < minDiff && diff < csUnitsPerPixel )
345 diff
[all...]
/external/freetype/src/truetype/
H A Dttpload.c134 FT_Long diff = entry->Offset - pos; local
137 if ( diff > 0 && diff < dist )
138 dist = diff;
/external/harfbuzz_ng/util/
H A Dansi-print.cc80 color_diff_t diff (const color_t &o) function in struct:color_t
199 color_diff_t diff = fgc.diff (bgc);
200 int dd = diff.dot (diff);
203 int d = diff.dot (image (x, y).diff (bgc));
/external/icu/icu4c/source/common/
H A Duarrsort.c72 int32_t diff=cmp(context, item, array+i*itemSize); local
73 if(diff==0) {
87 } else if(diff<0) {
96 int32_t diff=cmp(context, item, array+start*itemSize); local
97 if(diff==0) {
99 } else if(diff<0) {
/external/icu/icu4c/source/i18n/
H A Dsortkey.cpp205 int diff = uprv_memcmp(src, tgt, minLength); local
206 if (diff > 0) {
210 if (diff < 0) {
/external/icu/icu4c/source/test/cintltst/
H A Dsorttest.c180 int32_t diff=u_strCompare(p->s, STR_LEN, q->s, STR_LEN, FALSE); local
181 if(diff==0) {
189 diff=ucol_strcoll(coll, p->s, STR_LEN, q->s, STR_LEN);
190 if(diff>=0) {
/external/libgsm/src/
H A Dadd.c31 longword diff = (longword)a - (longword)b; local
32 return saturate(diff);
/external/libnl/lib/fib_lookup/
H A Drequest.c61 int diff = 0; local
65 diff |= REQ_DIFF(FWMARK, a->lr_fwmark != b->lr_fwmark);
66 diff |= REQ_DIFF(TOS, a->lr_tos != b->lr_tos);
67 diff |= REQ_DIFF(SCOPE, a->lr_scope != b->lr_scope);
68 diff |= REQ_DIFF(TABLE, a->lr_table != b->lr_table);
69 diff |= REQ_DIFF(ADDR, nl_addr_cmp(a->lr_addr, b->lr_addr));
73 return diff;
/external/libopus/silk/
H A Dstereo_LR_to_MS.c51 opus_int32 sum, diff, smooth_coef_Q16, pred_Q13[ 2 ], pred0_Q13, pred1_Q13; local
65 diff = x1[ n - 2 ] - (opus_int32)x2[ n - 2 ];
67 side[ n ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( diff, 1 ) );
/external/libvpx/libvpx/test/
H A Ddct32x32_test.cc119 const uint32_t diff = dst[j] - src[j]; local
120 const uint32_t error = diff * diff;
234 const int diff = dst[j] - src[j]; local
235 const int error = diff * diff;
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dvp8_enc_stubs_mmx.c69 short *diff, unsigned char *predictor,
75 short *diff = &be->src_diff[0]; local
77 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
/external/ltrace/
H A Dsummary.c60 struct timeval diff; local
61 diff.tv_sec = tv.tv_sec - start.tv_sec;
63 diff.tv_usec = tv.tv_usec - start.tv_usec;
65 diff.tv_sec--;
66 diff.tv_usec = 1000000 + tv.tv_usec - start.tv_usec;
69 struct timedelta ret = { diff };
/external/netperf/
H A Dnetcpu_perfstat.c299 diff; local
302 diff = lib_end_count[i] - lib_start_count[i];
305 diff = lib_end_count[i] - lib_start_count[i] + LONG_LONG_MAX;
307 actual_rate = (float) diff / lib_elapsed;
H A Dnetcpu_pstat.c256 diff; local
259 diff = lib_end_count[i] - lib_start_count[i];
262 diff = lib_end_count[i] - lib_start_count[i] + LONG_LONG_MAX;
264 actual_rate = (float) diff / lib_elapsed;
/external/oprofile/pp/
H A Dopreport_options.cpp162 void check_options(bool diff) argument
175 if (diff) {
194 if (details && diff) {
200 if (diff) {
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2blues.c284 CF2_Fixed flatFamilyEdge, diff; local
302 diff = cf2_fixedAbs( flatEdge - flatFamilyEdge );
304 if ( diff < minDiff && diff < csUnitsPerPixel )
307 minDiff = diff;
309 if ( diff == 0 )
320 diff = cf2_fixedAbs( flatEdge - flatFamilyEdge );
322 if ( diff < minDiff && diff < csUnitsPerPixel )
343 diff
[all...]
/external/pixman/test/
H A Dmatrix-test.c157 double diff = fabs (result_f.v[j] - local
160 if (is_affine && diff > (0.51 / 65536.0))
163 testnum, i, diff);
166 else if (diff > (0.71 / 65536.0))
169 testnum, i, diff);
/external/sepolicy/tools/sepolicy-analyze/
H A Dtypecmp.c7 fprintf(stderr, "\ttypecmp [-d|--diff] [-e|--equiv]\n");
157 static int analyze_types(policydb_t * policydb, char diff, char equiv) argument
231 if (diff) {
268 char ch, diff = 0, equiv = 0; local
271 {"diff", no_argument, NULL, 'd'},
279 diff = 1;
290 if (!(diff || equiv)) {
294 return analyze_types(policydb, diff, equiv);
/external/skia/src/views/animated/
H A DSkImageView.cpp172 SkAnimator::DifferenceType diff = fData.fAnim->draw(canvas, &paint, now); local
174 SkDEBUGF(("SkImageView : now = %X[%12.3f], diff = %d\n", now, now/1000., diff));
176 if (diff == SkAnimator::kDifferent)
178 else if (diff == SkAnimator::kPartiallyDifferent)

Completed in 471 milliseconds

1234567891011>>