Searched refs:diff (Results 1 - 25 of 1000) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Dconceal.cpp1475 FIXP_SGL diff = fixp_abs((pFactor[i]>>1) - referenceVal); local
1476 if (diff < minDiff) {
1477 minDiff = diff;
/external/aac/libAACenc/src/
H A Dadj_thr.cpp2024 INT diff; local
2030 diff = (currPe-*peMax) ;
2031 *peMin += fMultI(minFacHi,diff);
2032 *peMax += fMultI(maxFacHi,diff);
2036 diff = (*peMin-currPe) ;
2037 *peMin -= fMultI(minFacLo,diff);
2038 *peMax -= fMultI(maxFacLo,diff);
2421 * diff = amp * ((bitsBalLast - headroom) / (bitresLevel + headroom)
2422 * diff = max ( min ( diff, maxDif
2427 FIXP_DBL diff = (bitsBalLast>=headroom) local
[all...]
H A Dquantize.cpp304 FIXP_DBL diff; local
323 diff = fixp_abs(fixp_abs(invQuantSpec) - fixp_abs(mdctSpectrum[i]>>1));
325 scale = CountLeadingBits(diff);
326 diff = scaleValue(diff, scale);
327 diff = fPow2(diff);
330 diff = scaleValue(diff, -scale);
332 xfsf = xfsf + diff;
359 FIXP_DBL diff; local
[all...]
/external/aac/libFDK/src/
H A Dfft.cpp326 #define SUMDIFF_PIFOURTH(diff,sum,a,b) \
331 diff = wb - wa;\
H A Dqmf.cpp1165 int diff; local
1173 diff = synQmf->outScalefactor - outScalefactor;
1175 qmfAdaptFilterStates(synQmf, diff);
/external/aac/libSBRdec/src/
H A Denv_calc.cpp1186 int diff; local
1189 diff = (int) (nrgGain_e[band] - filtBuffer_e[band]);
1190 if (diff>0) {
1191 filtBuffer[band] >>= diff; /* Compensate for the scale change by shifting the mantissa. */ local
1192 filtBuffer_e[band] += diff; /* New gain is bigger, use its exponent */
1194 else if (diff<0) {
1200 if ((-diff) <= reserve) {
1204 filtBuffer[band] <<= (-diff);
1205 filtBuffer_e[band] += diff; /* becomes equal to *ptrNewExp */
1212 diff
1213 nrgGain[band] >>= diff; local
[all...]
H A Dsbrdec_freq_sca.cpp102 static void CalcBands(UCHAR * diff, UCHAR start, UCHAR stop, UCHAR num_bands);
103 static SBR_ERROR modifyBands(UCHAR max_band, UCHAR * diff, UCHAR length);
104 static void cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress);
397 /* Adjust diff vector to get sepc. SBR range */
526 CalcBands(UCHAR * diff, /*!< Vector of widths to be calculated */ argument
552 diff[i] = previous - current;
562 cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress) argument
567 start_adress[i] = start_adress[i-1] + diff[i-1];
579 modifyBands(UCHAR max_band_previous, UCHAR * diff, UCHAR length) argument
581 int change = max_band_previous - diff[
[all...]
/external/aac/libSBRenc/src/
H A Dmh_det.cpp148 static void diff(FIXP_DBL *RESTRICT pTonalityOrig, function
313 diff(pQuotaBuffer[est+move],
H A Dnf_est.cpp181 FIXP_DBL meanOrig=FL2FXCONST_DBL(0.0f), meanSbr=FL2FXCONST_DBL(0.0f), diff; local
244 diff = RELAXATION;
249 diff = fixMax( RELAXATION,
258 accu = fDivNorm(diff, meanOrig, &scale);
H A Dps_encode.cpp231 quantErr += (fixp_abs(input[band]-quantTable[idx])>>PS_QUANT_SCALE); /* don't scale before subtraction; diff smaller (64-25)/64 */
521 INT diff = 0; local
531 diff = fixp_abs(psData->iidIdx[env][b] - psData->iidIdxLast[b]);
532 sumDiff += diff;
533 if ( (diff > diffThr) /* more than x quantization steps in any band */
553 INT diff = 0; local
563 diff = fixp_abs(psData->iccIdx[env][b] - psData->iccIdxLast[b]);
564 sumDiff += diff;
565 if ( (diff > diffThr) /* more than x quantisation step in any band */
H A Dsbrenc_freq_sca.cpp102 static void CalcBands(INT * diff, INT start , INT stop , INT num_bands);
103 static INT modifyBands(INT max_band, INT * diff, INT length);
104 static void cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress);
528 /* Adjust diff vector to get sepc. SBR range */
559 CalcBands(INT * diff, INT start , INT stop , INT num_bands) argument
575 diff[i-1] = current-previous;
583 cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress) argument
588 start_adress[i]=start_adress[i-1]+diff[i-1];
593 modifyBands(INT max_band_previous, INT * diff, INT length) argument
595 INT change=max_band_previous-diff[
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as27 * if no token payload but you might have to set token type for diff
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DInterval.java125 Interval diff = null;
128 diff = Interval.create(Math.max(this.a,other.b+1),
134 diff = Interval.create(this.a, other.a-1);
136 return diff;
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java309 private String diff = null; field in class:TestCertUtils.TestCertificate
323 public TestCertificate(String diff) { argument
325 this.diff = diff;
330 * diff. Leave the <code>diff</code> null when no difference needed.
332 * @param diff
335 public TestCertificate(String diff, String type) { argument
337 this.diff = diff;
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DSoundexUtils.java118 int diff = 0;
121 diff++;
124 return diff;
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DNodeSorter.java178 double diff;
182 diff = 0.0;
184 diff = -1;
187 diff = 1;
189 diff = n1Num - n2Num;
192 result = (int) ((diff < 0.0)
194 : (diff > 0.0) ? (k.m_descending ? -1 : 1) : 0);
/external/arduino/hardware/arduino/cores/arduino/
H A DWMath.cpp50 long diff = howbig - howsmall; local
51 return random(diff) + howsmall;
/external/bison/build-aux/
H A Dgit-version-gen200 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
/external/bison/
H A Dconfigure6218 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
6284 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
37577 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
38899 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
H A Dmaint.mk247 # .diff suffix, set this Make variable:
249 # exclude_file_name_regexp--sc_space_tab = \.diff$
1150 diff -u -L $(po_file) -L $(po_file) $@-1 $@-2 \
1273 vc-diff-check:
1274 $(AM_V_GEN)(unset CDPATH; cd $(srcdir) && $(VC) diff) > vc-diffs || :
1374 diff=$$(cd $(srcdir) && git submodule -q foreach \
1375 git diff-index --name-only HEAD) \
1377 case $$diff in '') ;; \
1379 echo "$$diff"; exit 1;; esac; \
1417 $(AM_V_at)$(MAKE) vc-diff
[all...]
/external/bison/doc/
H A DMakefile.am34 $(AM_V_at)diff -u $@~ $@.tmp || true
/external/bison/lib/
H A Dstrverscmp.c34 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
67 int diff; local
103 while ((diff = c1 - c2) == 0 && c1 != '\0')
116 return diff;
123 return ISDIGIT (*p2) ? -1 : diff;
/external/bison/tests/
H A Dtestsuite1776 # Emit a diff between /dev/null and FILE. Uses "test -s" to avoid useless diff
1862 # Can we diff with `/dev/null'? DU 5.0 refuses.
1863 if diff /dev/null /dev/null >/dev/null 2>&1; then
1870 # Use `diff -u' when possible.
1871 if at_diff=`diff -u "$at_devnull" "$at_devnull" 2>&1` && test -z "$at_diff"
1873 at_diff='diff -u'
1875 at_diff=diff
23521 // keep it so that the paser table diff is easier to code.
23933 // keep it so that the paser table diff i
[all...]
/external/blktrace/
H A Dstrverscmp.c79 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
95 int diff; local
131 while ((diff = c1 - c2) == 0 && c1 != '\0')
144 return diff;
151 return isdigit (*p2) ? -1 : diff;

Completed in 951 milliseconds

1234567891011>>