Searched defs:floor (Results 1 - 25 of 26) sorted by last modified time

12

/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c1581 (b) armSignedSatQ is that in (a) the floor is set to 0, whereas in
1582 (b) the floor is computed from the value of imm5. these two fnsn
1602 UInt floor = 0; local
1616 assign( nd4, mkU32(floor) );
1646 Int floor = -(1 << (imm5-1)); // -(2^(imm5-1)) local
1660 assign( nd4, mkU32(floor) );
/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/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/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/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h259 /// double floor(double x);
260 floor, enumerator in enum:llvm::LibFunc::Func
737 case LibFunc::floor: case LibFunc::floorf: case LibFunc::floorl:
/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/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/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/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h451 friend const mpreal floor(const mpreal& v);
843 // digits = floor(bits*log[10](2))
1781 // digits = floor(bits*log[10](2))
1794 return (int) std::floor( b * LOG10_2 );
2289 m = mod(x,y) if y != 0, returns x - n*y where n = floor(x/y)
2301 mpreal m = x - floor(x / y) * y;
2384 inline const mpreal floor(const mpreal& v) function in namespace:mpfr
/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 ...
/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/chromium_org/v8/src/
H A Dmath.js14 var $floor = MathFloor;
72 // We avoid doing so for -0, because the result of Math.floor(-0)
351 "floor", MathFloor,
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dfast_log.h25 // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0.
51 int floor = Log2Floor(n); local
53 return floor;
55 return floor + 1;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLayoutUnit.h152 int floor() const function in class:blink::LayoutUnit
768 return value.floor();
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Djstemplate_compiled.js530 var floor = Math.floor; variable
/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();

Completed in 425 milliseconds

12