HomeSort by relevance Sort by last modified time
    Searched refs:floor (Results 201 - 225 of 758) sorted by null

1 2 3 4 5 6 7 891011>>

  /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);
GameOverActivity.java 96 int totalHours = (int)Math.floor(hours);
  /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";
  /system/extras/tests/lib/testUtil/
testUtil.c 72 rv.tv_sec = floor(amt);
88 rv.tv_sec = floor(amt);
  /external/chromium_org/third_party/libxslt/libxslt/
numbers.c     [all...]
  /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 312 * <li>{@code floor(+0.0) = +0.0}</li>
313 * <li>{@code floor(-0.0) = -0.0}</li>
314 * <li>{@code floor(+infinity) = +infinity}</li>
315 * <li>{@code floor(-infinity) = -infinity}</li>
316 * <li>{@code floor(NaN) = NaN}</li>
319 public static native double floor(double d); method in class:Math
656 * equivalent to {@code (long) Math.floor(d+0.5)}.
678 return (long) floor(d + 0.5d);
683 * equivalent to {@code (int) Math.floor(f+0.5)}.
705 return (int) floor(f + 0.5f)
    [all...]
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer.cc 25 return static_cast<int>(floor(x + 0.5));
  /external/chromium_org/ash/wm/
session_state_animator.cc 38 floor(0.5 * (1.0 - kSlowCloseSizeRatio) * root_size.width() + 0.5),
39 floor(0.5 * (1.0 - kSlowCloseSizeRatio) * root_size.height() + 0.5));
49 transform.Translate(floor(0.5 * root_size.width() + 0.5),
50 floor(0.5 * root_size.height() + 0.5));
  /external/chromium_org/base/json/
json_writer.cc 91 std::floor(value) == value) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp 222 numberValue = numberValue < 0 ? -floor(fabs(numberValue)) : floor(fabs(numberValue));
264 numberValue = numberValue < 0 ? -floor(fabs(numberValue)) : floor(fabs(numberValue));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineEventOverview.js 84 var recordStart = Math.floor((WebInspector.TimelineModel.startTimeInSeconds(record) - timeOffset) * scale);
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 44 #define sk_float_floor(x) (float)::floor(x)
  /external/chromium_org/third_party/tlslite/scripts/
tlsdb.py 183 return int(math.floor(math.log(n, 2))+1)
  /external/chromium_org/third_party/tlslite/tlslite/utils/
compat.py 80 return int(math.floor(math.log(n, 2))+1)
  /external/chromium_org/tools/perf/metrics/
statistics.py 210 floor_index = int(math.floor(n * percentile - 0.5))
  /external/chromium_org/ui/gfx/animation/
tween.cc 142 return std::floor(0.5 + DoubleValueBetween(value, start, target));
  /external/chromium_org/v8/test/mjsunit/
readonly.js 77 p = inherits[Math.floor(inherits.length * Math.random())](p)();
81 p = constructs[Math.floor(constructs.length * Math.random())](p)();
  /external/libvorbis/examples/
decoder_example.c 251 int val=floor(mono[j]*32767.f+.5f);
  /external/libvpx/libvpx/test/
idct8x8_test.cc 33 return static_cast<int>(floor(x + 0.5));
  /external/skia/include/core/
SkFloatingPoint.h 44 #define sk_float_floor(x) (float)::floor(x)

Completed in 1896 milliseconds

1 2 3 4 5 6 7 891011>>