HomeSort by relevance Sort by last modified time
    Searched refs:smax (Results 1 - 25 of 32) sorted by null

1 2

  /external/webrtc/src/common_audio/signal_processing/
get_scaling_square.c 24 WebRtc_Word16 smax = -1; local
33 smax = (sabs > smax ? sabs : smax);
35 t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax));
37 if (smax == 0)
auto_correlation.c 28 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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
HydraulicErodeFilter.java 143 float smax = this.Kc * wt[idx]; local
144 if (st[idx] > smax) {
145 ga[idx] += st[idx] - smax;
146 st[idx] -= st[idx] - smax;
  /external/quake/quake/src/WinQuake/
r_surf.cpp 70 int smax, tmax; local
74 smax = (surf->extents[0]>>4)+1;
109 for (s=0 ; s<smax ; s++)
123 i = t*smax + s;
135 blocklights[t*smax + s] += (rad - dist)*256;
151 int smax, tmax; local
161 smax = (surf->extents[0]>>4)+1;
163 size = smax*tmax;
251 int smax, tmax, twidth; local
297 smax = mt->width >> r_drawsurf.surfmip;
    [all...]
gl_rsurf.cpp 76 int smax, tmax; local
79 smax = (surf->extents[0]>>4)+1;
114 for (s=0 ; s<smax ; s++)
124 blocklights[t*smax + s] += (int)((rad - dist)*256);
140 int smax, tmax; local
151 smax = (surf->extents[0]>>4)+1;
153 size = smax*tmax;
189 stride -= (smax<<2);
193 for (j=0 ; j<smax ; j++)
210 for (j=0 ; j<smax ; j++
860 int smax, tmax; local
938 int smax, tmax; local
1675 int smax, tmax, s, t, l, i; local
    [all...]
  /external/quake/quake/src/QW/client/
r_surf.c 70 int smax, tmax; local
74 smax = (surf->extents[0]>>4)+1;
109 for (s=0 ; s<smax ; s++)
119 blocklights[t*smax + s] += (rad - dist)*256;
134 int smax, tmax; local
144 smax = (surf->extents[0]>>4)+1;
146 size = smax*tmax;
234 int smax, tmax, twidth; local
280 smax = mt->width >> r_drawsurf.surfmip;
286 r_sourcemax = r_source + (tmax * smax);
    [all...]
gl_rsurf.c 76 int smax, tmax; local
79 smax = (surf->extents[0]>>4)+1;
114 for (s=0 ; s<smax ; s++)
124 blocklights[t*smax + s] += (rad - dist)*256;
140 int smax, tmax; local
150 smax = (surf->extents[0]>>4)+1;
152 size = smax*tmax;
188 stride -= (smax<<2);
192 for (j=0 ; j<smax ; j++)
209 for (j=0 ; j<smax ; j++
790 int smax, tmax; local
869 int smax, tmax; local
1600 int smax, tmax; local
    [all...]
  /external/libgsm/src/
lpc.c 36 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/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFA.java 502 int smax = Label.MIN_ATOM_VALUE - 1;
511 if ( label.getAtom()>smax ) {
512 smax = label.getAtom();
523 if ( labels.getMaxElement()>smax ) {
524 smax = labels.getMaxElement();
529 if ( smax<0 ) {
532 smax = Label.MIN_CHAR_VALUE;
536 max.set(s.stateNumber, Utils.integer((char)smax));
538 if ( smax<0 || smin>Label.MAX_CHAR_VALUE || smin<0 ) {
548 int smax = ((Integer)max.get(s.stateNumber)).intValue()
    [all...]
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 421 TEST_F(ConstantRangeTest, SMax) {
422 EXPECT_EQ(Full.smax(Full), Full);
423 EXPECT_EQ(Full.smax(Empty), Empty);
424 EXPECT_EQ(Full.smax(Some), ConstantRange(APInt(16, 0xa),
426 EXPECT_EQ(Full.smax(Wrap), Full);
427 EXPECT_EQ(Full.smax(One), ConstantRange(APInt(16, 0xa),
429 EXPECT_EQ(Empty.smax(Empty), Empty);
430 EXPECT_EQ(Empty.smax(Some), Empty);
431 EXPECT_EQ(Empty.smax(Wrap), Empty);
432 EXPECT_EQ(Empty.smax(One), Empty)
    [all...]
  /external/llvm/include/llvm/Support/
ConstantRange.h 218 /// smax - Return a new range representing the possible values resulting
220 ConstantRange smax(const ConstantRange &Other) const;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
LineGraph.java 85 String smax= this.fDimension.getDisplayValue(max); local
86 Point emax= g.stringExtent(smax);
102 g.drawString(smax, PADDING/2+labelWidth-emax.x, top, true);
TimeLineGraph.java 49 String smax= this.fDimension.getDisplayValue(max); local
50 Point emax= g.stringExtent(smax);
66 g.drawString(smax, PADDING/2+labelWidth-emax.x, top, true);
  /external/llvm/lib/Support/
ConstantRange.cpp 72 APInt SMax(CR.getSignedMax());
73 if (SMax.isMinSignedValue())
75 return ConstantRange(APInt::getSignedMinValue(W), SMax);
84 APInt SMax(CR.getSignedMax());
85 if (SMax.isMaxSignedValue())
87 return ConstantRange(APInt::getSignedMinValue(W), SMax + 1);
598 ConstantRange::smax(const ConstantRange &Other) const { function in class:ConstantRange
599 // X smax Y is: range(smax(X_smin, Y_smin),
600 // smax(X_smax, Y_smax)
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /external/safe-iop/include/
safe_iop.h 82 ((typeof(_a))(-__sio(m)(smax)(_a) - 1))
366 if ((_a) > (typeof(_a))(__sio(m)(smax)(_a) - (_b))) __sio(var)(ok) = 0; \
383 if (!((_b) <= 0 && (_a) > (__sio(m)(smax)(_a) + (_b))) && \
402 if ((_a) > (__sio(m)(smax)(_a) / (_b))) { \
419 if( ((_a) != 0) && ((_b) < (__sio(m)(smax)(_a) / (_a)))) { \
  /external/opencv/cxcore/src/
cxutils.cpp 701 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);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
form.h 64 short smax; /* index of bottom rightmost field on page */ member in struct:__anon26258
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
form.h 64 short smax; /* index of bottom rightmost field on page */ member in struct:__anon27848
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
form.h 64 short smax; /* index of bottom rightmost field on page */ member in struct:__anon29363
  /external/safe-iop/src/
safe_iop.c     [all...]
  /external/eigen/Eigen/src/misc/
blas.h 106 float BLASFUNC(smax) (int *, float *, int *);
    [all...]

Completed in 359 milliseconds

1 2