Searched defs:smax (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dauto_correlation.c20 int16_t smax = 0; local
31 smax = WebRtcSpl_MaxAbsValueW16(in_vector, in_vector_length);
34 // samples so that (in_vector_length * smax * smax) will not overflow.
35 if (smax == 0) {
40 // Number of bits to normalize smax.
41 int t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax));
H A Dget_scaling_square.c26 int16_t smax = -1; local
35 smax = (sabs > smax ? sabs : smax);
37 t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax));
39 if (smax == 0)
/external/webrtc/src/common_audio/signal_processing/
H A Dget_scaling_square.c24 WebRtc_Word16 smax = -1; local
33 smax = (sabs > smax ? sabs : smax);
35 t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax));
37 if (smax == 0)
H A Dauto_correlation.c28 WebRtc_Word16 smax; // Sample max local
43 smax = WebRtcSpl_MaxAbsValueW16(in_vector, in_vector_length);
46 // (in_vector_length * smax * smax) will not overflow.
48 if (smax == 0)
54 int t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax)); // # of bits to normalize smax
/external/libgsm/src/
H A Dlpc.c36 word temp, smax, scalauto; local
47 smax = 0;
50 if (temp > smax) smax = temp;
55 if (smax == 0) scalauto = 0;
57 assert(smax > 0);
58 scalauto = 4 - gsm_norm( (longword)smax << 16 );/* sub(4,..) */
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
H A Dgenperf.c78 ub4 smax, /* range of scramble[] */
86 if (smax > UB2MAXVAL+1) {
105 if (smax <= UB1MAXVAL+1 || blen >= USE_SCRAMBLE)
159 ub4 smax; /* scramble[] values in 0..smax-1, a power of 2 */ local
198 scramble, &smax, keys, nkeys, &form);
205 /* output the dir table: this should loop up to smax for NORMAL_HP,
232 make_c_tab(out, tab, smax, blen, scramble);
75 make_c_tab( FILE *f, bstuff *tab, ub4 smax, ub4 blen, ub4 *scramble) argument
H A Dperfect.c33 predetermined mapping of 0..255 into 0..smax-1. *tab* is an
96 /* initialize scramble[] with distinct random values in 0..smax-1 */
99 ub4 smax) /* scramble values should be in 0..smax-1 */
103 /* fill scramble[] with distinct random integers in 0..smax-1 */
106 scramble[i] = permute(i, phash_log2(smax));
198 ub4 smax, /* maximum range of computable hash values */
240 if (smax <= 1)
264 ub4 smax, /* range of computable hash values */
287 if (smax <
97 scrambleinit( ub4 *scramble, ub4 smax) argument
194 initnorm( key *keys, ub4 alen, ub4 blen, ub4 smax, ub4 salt, gencode *final) argument
260 initinl( key *keys, ub4 alen, ub4 blen, ub4 smax, ub4 salt, gencode *final) argument
311 initkey( key *keys, ub4 nkeys, bstuff *tabb, ub4 alen, ub4 blen, ub4 smax, ub4 salt, hashform *form, gencode *final) argument
452 augment( bstuff *tabb, hstuff *tabh, qstuff *tabq, ub4 blen, ub4 *scramble, ub4 smax, bstuff *item, ub4 nkeys, ub4 highwater, hashform *form) argument
536 perfect( bstuff *tabb, hstuff *tabh, qstuff *tabq, ub4 blen, ub4 smax, ub4 *scramble, ub4 nkeys, hashform *form) argument
579 hash_ab( bstuff **tabb, ub4 *alen, ub4 *blen, ub4 *salt, gencode *final, ub4 *scramble, ub4 *smax, key *keys, ub4 nkeys, hashform *form) argument
680 initalen( ub4 *alen, ub4 *blen, ub4 *smax, ub4 nkeys, hashform *form) argument
813 findhash( bstuff **tabb, hstuff **tabh, ub4 *alen, ub4 *blen, ub4 *salt, gencode *final, ub4 *scramble, ub4 *smax, key *keys, ub4 nkeys, hashform *form) argument
[all...]
/external/llvm/lib/IR/
H A DConstantRange.cpp601 ConstantRange::smax(const ConstantRange &Other) const { function in class:ConstantRange
602 // X smax Y is: range(smax(X_smin, Y_smin),
603 // smax(X_smax, Y_smax))
606 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin());
607 APInt NewU = APIntOps::smax(getSignedMax(), Other.getSignedMax()) + 1;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Derrors.c598 int s, t, sev, smax, tmax, sevmax; local
602 smax = SOURCE_COUNT;
604 smax = source+1;
622 for (s = source; s < smax; s++)
/external/mesa3d/src/mesa/main/
H A Derrors.c598 int s, t, sev, smax, tmax, sevmax; local
602 smax = SOURCE_COUNT;
604 smax = source+1;
622 for (s = source; s < smax; s++)
/external/opencv/cxcore/src/
H A Dcxutils.cpp701 double smin = 0, smax = 0; local
703 cvMinMaxLoc( src, &smin, &smax, 0, 0, mask );
704 scale = (dmax - dmin)*(smax - smin > DBL_EPSILON ? 1./(smax - smin) : 0);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/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/ ...

Completed in 308 milliseconds