Searched defs:diff (Results 1 - 23 of 23) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dsub.cpp39 Description: Changed all occurrences of L_diff to diff, deleted "short" in
113 diff = 16-bit limited difference between var1 and var2 (Word16)
146 Word32 diff;
148 diff = (Word32) var1 - var2;
154 var_out = saturate (diff);
193 Word32 diff; local
195 diff = (Word32) var1 - var2;
199 /* to conserve MIPS, i.e., var_out = saturate (diff) */
202 if ((UWord32)(diff - 0xFFFF8000L) > 0x000FFFF)
204 if (diff > (Word3
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dstatistics.cpp52 const float diff = value - mean_; local
53 return expf(-diff * diff / exp_denom_) / pdf_denom_;
H A Dgeometry.cpp41 Point diff = p1 - p0; local
42 return diff.Length();
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dc_g_aver.cpp284 Word16 cbGainMix, diff, tmp_diff, bgMix, cbGainMean;
320 diff = tmp[0];
322 diff = add(diff, tmp[i]); // Q13
326 if (sub(diff, 5325) > 0) // 0.65 in Q11
352 // bgMix = min(0.25, max(0.0, diff-0.55)) / 0.25;
353 tmp_diff = sub(diff, 4506); // 0.55 in Q13
355 // max(0.0, diff-0.55)
377 // bgMix = min(0.25, max(0.0, diff-0.40)) / 0.25;
378 tmp_diff = sub(diff, 327
480 Word16 diff; local
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp272 int64_t diff = duration - mLastQueuedTimeUs; local
273 if (diff < kNearEOSMarkUs && diff > -kNearEOSMarkUs) {
/frameworks/base/core/jni/
H A DTime.cpp39 int diff = a.t.field - b.t.field; \
40 if (diff != 0) return diff; \
60 int64_t diff = am-bm; local
61 return (diff < 0) ? -1 : ((diff > 0) ? 1 : 0);
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.cpp40 Point diff = p1 - p0; local
41 return diff.Length();
/frameworks/base/packages/Keyguard/scripts/
H A Dnew_merge.py27 DIFF_TOOLS=["meld", "kdiff3", "xdiff", "diffmerge.sh", "diff"]
76 print "Running diff for: %s" %(file)
77 diff(sourceFile, destFile)
81 diff(sourceFile, destFile)
96 pipe = Popen(['git', 'diff', '--name-only', argv[1]], stdout=PIPE).stdout
150 def diff(file1, file2): function
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp125 audio_coef_t diff = coefs[i] - mCoefs[i]; local
126 if (diff > maxDelta) {
128 } else if (diff < -maxDelta) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.cpp502 int64_t diff = firstVideoTimeUs - firstAudioTimeUs; local
504 ALOGV("queueDiff = %.2f secs", diff / 1E6);
506 if (diff > 100000ll) {
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dquantize.c349 Word32 diff; local
364 diff = saShft - repquat[0];
365 distSingle = (diff * diff) >> g2;
370 diff = saShft - repquat[1];
371 distSingle = (diff * diff) >> g2;
376 diff = saShft - repquat[2];
377 distSingle = (diff * diff) >> g
399 Word32 diff; local
[all...]
H A Dadj_thr.c889 Word16 diff; local
896 diff = currPe - *peMax ;
898 if (diff > 0) {
899 *peMin = *peMin + ((diff * minFacHi) / 100);
900 *peMax = *peMax + ((diff * maxFacHi) / 100);
902 diff = *peMin - currPe;
904 if (diff > 0) {
905 *peMin = *peMin - ((diff * minFacLo) / 100);
906 *peMax = *peMax - ((diff * maxFacLo) / 100);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp237 int diff = compareExtendedRangeAndTime(mid, seekTimeUs); local
238 if (diff == 0) {
240 } else if (diff < 0) {
/frameworks/base/core/java/android/app/
H A DProgressDialog.java261 public void incrementProgressBy(int diff) { argument
263 mProgress.incrementProgressBy(diff);
266 mIncrementBy += diff;
270 public void incrementSecondaryProgressBy(int diff) { argument
272 mProgress.incrementSecondaryProgressBy(diff);
275 mIncrementSecondaryBy += diff;
/frameworks/base/core/java/android/os/
H A DWorkSource.java132 return o instanceof WorkSource && !diff((WorkSource)o);
154 public boolean diff(WorkSource other) { method in class:WorkSource
299 int diff = mNames[i].compareTo(name);
300 if (diff > 0) {
303 if (diff == 0) {
528 final int diff = mUids[i1] - other.mUids[i2];
529 if (diff != 0) {
530 return diff;
554 int diff = -1;
555 if (i1 >= mNum || (i2 < N2 && (diff
[all...]
/frameworks/av/libvideoeditor/osal/src/
H A DLVOSA_FileReader_optim.c226 M4OSA_FilePosition diff; local
249 diff = gridPos - apContext->readFilePos;
251 if(diff != 0)
254 fileSeekPosition = diff;
267 ret_val = apContext->FS->pFctPtr_Seek(apContext->aFileDesc, diff,
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp249 int64_t diff = timestampUs - seekTimeUs; local
251 if (diff < 0) {
252 diff = -diff;
255 if ((gReproduceBug == 4 && diff > 500000)
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java795 * {@link #diff}.
959 public int diff(Configuration delta) { method in class:Configuration
1073 int diff = other.seq - seq;
1074 if (diff > 0x10000) {
1079 return diff > 0;
/frameworks/base/core/java/android/widget/
H A DProgressBar.java826 * @param diff the amount by which the progress must be increased
830 public synchronized final void incrementProgressBy(int diff) { argument
831 setProgress(mProgress + diff);
837 * @param diff the amount by which the secondary progress must be increased
841 public synchronized final void incrementSecondaryProgressBy(int diff) { argument
842 setSecondaryProgress(mSecondaryProgress + diff);
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp46 | base col1 | base col2 | table | table |diff|flip|
61 | base col 1 | dcol 2 | table | table |diff|flip|
162 inline int convertDiff(int base, int diff) { argument
163 return convert5To8((0x1f & base) + kLookup[0x7 & diff]);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarICS.java590 * @param diff the amount by which the progress must be increased
594 public synchronized final void incrementProgressBy(int diff) { argument
595 setProgress(mProgress + diff);
601 * @param diff the amount by which the secondary progress must be increased
605 public synchronized final void incrementSecondaryProgressBy(int diff) { argument
606 setSecondaryProgress(mSecondaryProgress + diff);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp2057 Int diff, QPtmp; local
2421 diff = PV_ABS(QPtmp);
2422 S2 += diff;
2437 diff = PV_ABS(QPtmp);
2438 S2 += diff;
2470 //if (diff > 2047)
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1572 int32_t diff = (int32_t)(imsi - o.imsi); local
1573 if (diff != 0) return diff;
1574 diff = (int32_t)(locale - o.locale);
1575 if (diff != 0) return diff;
1576 diff = (int32_t)(screenType - o.screenType);
1577 if (diff != 0) return diff;
1578 diff
1655 int ResTable_config::diff(const ResTable_config& o) const { function in class:android::ResTable_config
[all...]

Completed in 2205 milliseconds