Searched defs:floor (Results 1 - 22 of 22) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFloatMath.java27 public static float floor(float value) { method in class:ShadowFloatMath
28 return (float) Math.floor(value);
/external/libvorbis/doc/
H A D01-introduction.tex179 floor and residue vectors within a mapping. The submap functions as a
180 last layer of indirection such that specific special floor or residue
183 the proper floor and residue instance number to use for decoding that
184 submap's spectral floor and spectral residue vectors.
192 apply a full range floor and residue encoding to channels 0 through 4,
195 of a full-range floor) and channel 5 belongs to submap 1, which uses a
201 Vorbis encodes a spectral 'floor' vector for each PCM channel. This
204 whitening filter. It is named a 'floor' because the Xiph.Org
208 A floor encoding may be of two types. Floor 0 uses a packed LSP
213 encoding/decoding. However, floor typ
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
H A DHelloPhysics.java78 private static final Box floor; field in class:HelloPhysics
92 /** Initialize the floor geometry */
93 floor = new Box(Vector3f.ZERO, 10f, 0.1f, 5f);
94 floor.scaleTextureCoordinates(new Vector2f(3, 6));
155 /** Make a solid floor and add it to the scene. */
157 Geometry floor_geo = new Geometry("Floor", floor);
161 /* Make the floor physical with mass 0.0f! */
/external/v8/src/
H A Dmath.js32 var $floor = MathFloor;
105 // We avoid doing so for -0, because the result of Math.floor(-0)
277 "floor", MathFloor,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java154 public BigInteger floor() method in class:SimpleBigDecimal
162 return add(oneHalf.adjustScale(scale)).floor();
167 return floor().intValue();
172 return floor().longValue();
197 BigInteger floorBigInt = floor();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java114 @Override public E floor(E e) { method in class:SafeTreeSet
115 return delegate.floor(checkValid(e));
/external/jmonkeyengine/engine/src/android/jme3tools/android/
H A DFixed.java400 * Equivalent to <code>Math.floor()</code> in the standard library.
402 public static int floor(int n) { method in class:Fixed
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
H A DShaderUtils.java125 public static final int floor(final float x) { method in class:ShaderUtils
278 return f - ShaderUtils.floor(f);
281 public static float[] floor(float[] fs) { method in class:ShaderUtils
284 retval[i] = ShaderUtils.floor(fs[i]);
/external/tremolo/Tremolo/
H A Dcodec_internal.h166 char floor; member in struct:submap
H A Dfloor1.c34 function: floor backend 1 implementation
48 #define floor1_rangedB 140 /* floor 1 fixed at -140dB to 0dB range */
222 void render_lineARM(int n, ogg_int32_t *d,const ogg_int32_t *floor, int base, int err, int adx, int ady);
231 const ogg_int32_t *floor; local
242 floor=&FLOOR_fromdB_LOOKUP[y0];
266 *d = MULT31_SHIFT15(*d,*floor);
268 floor+=base;
272 floor+=1;
277 render_lineARM(n,d,floor,base,err,adx,ady);
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Djstemplate_compiled.js530 var floor = Math.floor; variable
/external/bison/lib/
H A Dmath.in.h753 # define floor rpl_floor macro
755 _GL_FUNCDECL_RPL (floor, double, (double x));
756 _GL_CXXALIAS_RPL (floor, double, (double x));
758 _GL_CXXALIAS_SYS (floor, double, (double x));
760 _GL_CXXALIASWARN (floor); variable
/external/clang/lib/Headers/
H A Dtgmath.h714 // floor
722 __tg_floor(double __x) {return floor(__x);}
728 #undef floor macro
729 #define floor(__x) __tg_floor(__tg_promote1((__x))(__x)) macro
/external/clang/lib/include/
H A Dtgmath.h714 // floor
722 __tg_floor(double __x) {return floor(__x);}
728 #undef floor macro
729 #define floor(__x) __tg_floor(__tg_promote1((__x))(__x)) macro
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java572 * @see java.lang.Math#floor(double)
574 public static float floor(float fValue) { method in class:FastMath
575 return (float) Math.floor(fValue);
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h437 friend const mpreal floor(const mpreal& v);
685 // digits = floor(bits*log[10](2))
1414 // digits = floor(bits*log[10](2))
1431 return (int)std::floor((b)*LOG10_2);
2214 inline const mpreal floor(const mpreal& v) function in namespace:mpfr
/external/libvorbis/lib/
H A Dpsy.c173 bin=floor(fromOC(i*.5)/binHz);
175 hi_curve= floor(toOC((bin+1)*binHz)*2);
802 val = val - logmdct[i]; /* val == mdct line value relative to floor in dB */
805 /* mdct value is > -17.2 dB below floor */
809 -0.00 dB boost if mdct value is -17.2dB (relative to floor)
810 -0.77 dB boost if mdct value is 0dB (relative to floor)
811 -1.64 dB boost if mdct value is +17.2dB (relative to floor)
816 /* mdct value is <= -17.2 dB below floor */
820 +0.00 dB atten if mdct value is -17.2dB (relative to floor)
821 +0.45 dB atten if mdct value is -34.4dB (relative to floor)
917 flag_lossless(int limit, float prepoint, float postpoint, float *mdct, float *floor, int *flag, int i, int jn) argument
1035 float **floor = alloca(ch*sizeof(*floor)); local
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h226 /// double floor(double x);
227 floor, enumerator in enum:llvm::LibFunc::Func
680 case LibFunc::floor: case LibFunc::floorf: case LibFunc::floorl:
/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c1575 (b) armSignedSatQ is that in (a) the floor is set to 0, whereas in
1576 (b) the floor is computed from the value of imm5. these two fnsn
1596 UInt floor = 0; local
1612 assign( node4, mkU32(floor) );
1644 Int floor = -(1 << (imm5-1)); // -(2^(imm5-1)) local
1659 assign( node4, mkU32(floor) );
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 639 milliseconds