Searched defs:diff (Results 1 - 21 of 21) 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/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DVisualDiffUtils.java32 * diff.text
37 * diff.text
45 for (diff_match_patch.Diff diff : diffs) {
46 parts = diff.text.split("\n", -1);
48 newDiffs.add(diff);
54 newDiffs.add(new diff_match_patch.Diff(diff.operation, parts[i] + "\n"));
57 newDiffs.add(new diff_match_patch.Diff(diff.operation, parts[lengthMinusOne]));
71 diff_match_patch.Diff diff;
75 diff = diffs.get(j);
77 switch (diff
159 processDiff(diff_match_patch.Diff diff, LinkedList<Integer> lineNums, LinkedList<String> lines, String line, int i, String begSpan, boolean forceOutputLine) argument
[all...]
/frameworks/base/core/java/android/os/
H A DWorkSource.java85 return o instanceof WorkSource && !diff((WorkSource)o);
102 public boolean diff(WorkSource other) { method in class:WorkSource
/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/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.cpp467 int64_t diff = firstVideoTimeUs - firstAudioTimeUs; local
469 ALOGV("queueDiff = %.2f secs", diff / 1E6);
471 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.cpp238 int diff = compareExtendedRangeAndTime(mid, seekTimeUs); local
239 if (diff == 0) {
241 } 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/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.cpp250 int64_t diff = timestampUs - seekTimeUs; local
252 if (diff < 0) {
253 diff = -diff;
256 if ((gReproduceBug == 4 && diff > 500000)
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java755 * {@link #diff}.
911 public int diff(Configuration delta) { method in class:Configuration
1020 int diff = other.seq - seq;
1021 if (diff > 0x10000) {
1026 return diff > 0;
/frameworks/base/core/java/android/widget/
H A DProgressBar.java857 * @param diff the amount by which the progress must be increased
861 public synchronized final void incrementProgressBy(int diff) { argument
862 setProgress(mProgress + diff);
868 * @param diff the amount by which the secondary progress must be increased
872 public synchronized final void incrementSecondaryProgressBy(int diff) { argument
873 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/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.cpp1432 int32_t diff = (int32_t)(imsi - o.imsi); local
1433 if (diff != 0) return diff;
1434 diff = (int32_t)(locale - o.locale);
1435 if (diff != 0) return diff;
1436 diff = (int32_t)(screenType - o.screenType);
1437 if (diff != 0) return diff;
1438 diff
1515 int ResTable_config::diff(const ResTable_config& o) const { function in class:android::ResTable_config
[all...]

Completed in 1344 milliseconds