HomeSort by relevance Sort by last modified time
    Searched refs:floor (Results 126 - 150 of 513) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
PerturbFilter.java 45 return (int) Math.floor(this.magnitude * (margin + size) + margin);
  /external/skia/include/core/
SkFloatingPoint.h 44 #define sk_float_floor(x) (float)::floor(x)
  /external/skia/legacy/include/core/
SkFloatingPoint.h 45 #define sk_float_floor(x) (float)::floor(x)
  /external/tremolo/Tremolo/
codec_internal.h 77 /* Floor backend generic *****************************************/
166 char floor; member in struct:submap
  /external/v8/test/mjsunit/
parse-int-float.js 77 assertEquals(Math.floor(x), parseInt(x));
81 assertEquals(Math.floor(x), parseInt(x));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.1.2.js 89 n = sign * Math.floor( Math.abs(n) )
15.4.2.2-1.js 115 n = sign * Math.floor( Math.abs(n) )
15.4.4.4-2.js 32 3. Compute floor(Result(2)/2).
129 var r3 = Math.floor( r2/2 );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.3.2-3.js 104 num = sign * Math.floor( Math.abs( num ) );
  /external/webkit/Source/WebCore/inspector/front-end/
FontView.js 128 var finalFontSize = Math.floor(WebInspector.FontView._measureFontSize * Math.min(widthRatio, heightRatio)) - 2;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 186 view.invalidate((int) Math.floor(childBounds.left),
187 (int) Math.floor(childBounds.top),
191 Log.v(TAG, "INVALIDATE(" + (int) Math.floor(childBounds.left)
192 + "," + (int) Math.floor(childBounds.top)
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 53 IMPORT_F32_FN_F32(floor)
  /packages/apps/DeskClock/src/com/android/deskclock/widget/swipeablelistview/
SwipeHelper.java 189 view.invalidate((int) Math.floor(childBounds.left),
190 (int) Math.floor(childBounds.top),
194 Log.v(TAG, "INVALIDATE(" + (int) Math.floor(childBounds.left)
195 + "," + (int) Math.floor(childBounds.top)
  /external/guava/guava/src/com/google/common/math/
DoubleMath.java 59 case FLOOR:
60 return (x >= 0.0) ? x : Math.floor(x);
69 return (x >= 0.0) ? Math.ceil(x) : Math.floor(x);
224 case FLOOR:
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 114 @Override public E floor(E e) { method in class:SafeTreeSet
115 return delegate.floor(checkValid(e));
  /external/replicaisland/src/com/replica/replicaisland/
CameraSystem.java 154 mFocalPosition.x = (float) Math.floor(mCurrentCameraPosition.x);
157 mFocalPosition.y = (float) Math.floor(mCurrentCameraPosition.y + mShakeOffsetY);
  /external/speex/libspeex/
_kiss_fft_guts.h 133 # define KISS_FFT_COS(phase) floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase))))
134 # define KISS_FFT_SIN(phase) floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))
speex.c 101 short_in[i] = (spx_int16_t)floor(.5+in[i]);
172 out[i] = (spx_int16_t)floor(.5+float_out[i]);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 141 return TropicalWeight(floor(Value()/delta + 0.5F) * delta);
207 return LogWeight(floor(Value()/delta + 0.5F) * delta);
  /external/v8/test/mjsunit/regress/
regress-3218530.js 32 var p = "floor";
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 150 fractionalTime = (floor(stepFunction->numberOfSteps() * fractionalTime) + 1) / stepFunction->numberOfSteps();
154 fractionalTime = floor(stepFunction->numberOfSteps() * fractionalTime) / stepFunction->numberOfSteps();
  /system/extras/tests/lib/testUtil/
testUtil.c 72 rv.tv_sec = floor(amt);
88 rv.tv_sec = floor(amt);
  /external/libxslt/libxslt/
numbers.c     [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainQuad.java     [all...]
  /libcore/luni/src/main/java/java/lang/
Math.java 304 * <li>{@code floor(+0.0) = +0.0}</li>
305 * <li>{@code floor(-0.0) = -0.0}</li>
306 * <li>{@code floor(+infinity) = +infinity}</li>
307 * <li>{@code floor(-infinity) = -infinity}</li>
308 * <li>{@code floor(NaN) = NaN}</li>
311 public static native double floor(double d); method in class:Math
644 * equivalent to {@code (long) Math.floor(d+0.5)}.
666 return (long) floor(d + 0.5d);
671 * equivalent to {@code (int) Math.floor(f+0.5)}.
693 return (int) floor(f + 0.5f)
    [all...]

Completed in 782 milliseconds

1 2 3 4 56 7 8 91011>>