HomeSort by relevance Sort by last modified time
    Searched refs:floor (Results 151 - 175 of 365) sorted by null

1 2 3 4 5 67 8 91011>>

  /development/ndk/platforms/android-9/include/
math.h 227 double floor(double);
  /external/chromium/chrome/browser/extensions/
convert_web_app.cc 76 stamp = stamp >= (floor(stamp) + 0.5) ? (stamp + 1) : stamp;
  /external/chromium/chrome/browser/net/
url_info.cc 235 return static_cast<int>(floor(sqrt(variance) + .5));
  /external/skia/samplecode/
SampleFuzz.cpp 31 return (int)floor(SkScalarToFloat(gRand.nextUScalar1()) * x);
  /external/speex/libspeex/
filterbank.c 89 id1 = (int)(floor(mel/mel_interval));
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-xparb.js 287 + String.leftPad(Math.floor(this.getTimezoneOffset() / 60), 2, "0")
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-xparb.js 287 + String.leftPad(Math.floor(this.getTimezoneOffset() / 60), 2, "0")
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.4-1.js 32 3. Compute floor(Result(2)/2).
238 var r3 = Math.floor( r2/2 );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.11-1.js 484 var t = Math.floor( n / Math.pow(16, i));
15.5.4.11-2.js 603 var t = Math.floor( n / Math.pow(16, i));
15.5.4.11-3.js 479 var t = Math.floor( n / Math.pow(16, i));
15.5.4.11-4.js 478 var t = Math.floor( n / Math.pow(16, i));
15.5.4.11-5.js 484 var t = Math.floor( n / Math.pow(16, i));
15.5.4.11-6.js 481 var t = Math.floor( n / Math.pow(16, i));
15.5.4.12-1.js 497 var t = Math.floor( n / Math.pow(16, i));
15.5.4.12-2.js 483 var t = Math.floor( n / Math.pow(16, i));
15.5.4.12-3.js 526 var t = Math.floor( n / Math.pow(16, i));
15.5.4.12-4.js 481 var t = Math.floor( n / Math.pow(16, i));
15.5.4.12-5.js 493 var t = Math.floor( n / Math.pow(16, i));
15.5.4.7-1.js 220 return ( sign * Math.floor(Math.abs(n)) );
15.5.4.7-2.js 219 return ( sign * Math.floor(Math.abs(n)) );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.5-2.js 36 3 compute (sign (result(1)) * floor(abs(result 1)))
81 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
9.7.js 69 num = sign * Math.floor( Math.abs( num ) );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
split-002.js 255 n = sign * Math.floor( Math.abs(n) )
  /external/webkit/Source/JavaScriptCore/wtf/
MathExtras.h 130 inline double trunc(double num) { return num > 0 ? floor(num) : ceil(num); }

Completed in 1328 milliseconds

1 2 3 4 5 67 8 91011>>