HomeSort by relevance Sort by last modified time
    Searched defs:divisor (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /external/chromium_org/v8/src/
fast-dtoa.cc 423 uint32_t divisor; local
426 &divisor, &divisor_exponent);
431 // with the divisor exponent + 1. And the divisor is the biggest power of ten
434 int digit = integrals / divisor;
437 integrals %= divisor;
439 // Note that kappa now equals the exponent of the divisor and that the
450 static_cast<uint64_t>(divisor) << -one.e(), unit);
452 divisor /= 10;
531 uint32_t divisor; local
    [all...]
fixed-dtoa.cc 341 uint64_t divisor = kFive17; local
358 quotient = static_cast<uint32_t>(dividend / divisor);
359 remainder = (dividend % divisor) << divisor_power;
361 divisor <<= divisor_power - exponent;
362 quotient = static_cast<uint32_t>(dividend / divisor);
363 remainder = (dividend % divisor) << exponent;
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedLongsTest.java 85 long divisor = r.nextLong(); local
87 assertTrue(dividend - (divisor * UnsignedLongs.divide(dividend, divisor)
88 + UnsignedLongs.remainder(dividend, divisor)) == 0);
  /external/qemu/audio/
paaudio.c 67 int divisor; member in struct:__anon26577
73 .divisor = 2,
93 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
188 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
565 .name = "DIVISOR",
567 .valp = &conf.divisor,
568 .descr = "threshold divisor"
esdaudio.c 94 int divisor; member in struct:__anon26570
99 .divisor = 2,
120 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
329 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
596 .name = "DIVISOR",
598 .valp = &conf.divisor,
599 .descr = "threshold divisor"
  /external/v8/src/
fast-dtoa.cc 423 uint32_t divisor; local
426 &divisor, &divisor_exponent);
431 // with the divisor exponent + 1. And the divisor is the biggest power of ten
434 int digit = integrals / divisor;
437 integrals %= divisor;
439 // Note that kappa now equals the exponent of the divisor and that the
450 static_cast<uint64_t>(divisor) << -one.e(), unit);
452 divisor /= 10;
531 uint32_t divisor; local
    [all...]
fixed-dtoa.cc 341 uint64_t divisor = kFive17; local
358 quotient = static_cast<uint32_t>(dividend / divisor);
359 remainder = (dividend % divisor) << divisor_power;
361 divisor <<= divisor_power - exponent;
362 quotient = static_cast<uint32_t>(dividend / divisor);
363 remainder = (dividend % divisor) << exponent;
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
SunCalculator.java 237 double divisor = cosineSunDeclination * cosLatitude; local
239 return dividend / divisor;
  /external/bison/lib/
hash.c 446 size_t divisor = 3; local
447 size_t square = divisor * divisor;
449 while (square < candidate && (candidate % divisor))
451 divisor++;
452 square += 4 * divisor;
453 divisor++;
456 return (candidate % divisor ? true : false);
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_field_trial.cc 60 const FieldTrial::Probability divisor = 1000; local
64 "Prefetch", divisor, "ContentPrefetchPrefetchOff",
72 const FieldTrial::Probability divisor = 1000; local
93 release_experiment_no_use_probability == divisor,
113 dev_experiment_no_use_probability == divisor,
126 "Prerender", divisor, "PrerenderEnabled",
  /external/chromium_org/gpu/command_buffer/client/
vertex_array_object_manager.cc 101 GLuint divisor() const { function in class:gpu::gles2::VertexArrayObject::VertexAttrib
120 void SetDivisor(GLuint divisor) {
121 divisor_ = divisor;
147 // Divisor, for geometry instancing.
171 void SetAttribDivisor(GLuint index, GLuint divisor);
300 void VertexArrayObject::SetAttribDivisor(GLuint index, GLuint divisor) {
303 attrib.SetDivisor(divisor);
448 void VertexArrayObjectManager::SetAttribDivisor(GLuint index, GLuint divisor) {
449 bound_vertex_array_object_->SetAttribDivisor(index, divisor);
507 GLsizei elements = (primcount && attrib.divisor() > 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEConvolveMatrix.cpp 43 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
47 , m_divisor(divisor)
60 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
63 return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
90 float FEConvolveMatrix::divisor() const function in class:WebCore::FEConvolveMatrix
95 bool FEConvolveMatrix::setDivisor(float divisor)
97 ASSERT(divisor);
98 if (m_divisor == divisor)
100 m_divisor = divisor;
237 ALWAYS_INLINE void setDestinationPixels(Uint8ClampedArray* image, int& pixel, float* totals, float divisor, float bias, Uint8ClampedArray* src
    [all...]
  /external/icu4c/i18n/
nfsubs.cpp 70 double divisor; member in class:MultiplierSubstitution
80 : NFSubstitution(_pos, _ruleSet, formatter, description, status), divisor(_divisor)
82 ldivisor = util64_fromDouble(divisor);
83 if (divisor == 0) {
90 divisor = uprv_pow(radix, exponent);
91 ldivisor = util64_fromDouble(divisor);
93 if(divisor == 0) {
106 return uprv_floor(number / divisor);
108 return number/divisor;
113 return newRuleValue * divisor;
128 double divisor; member in class:ModulusSubstitution
    [all...]
compactdecimalformat.cpp 750 double divisor = power10; local
752 divisor /= 10.0;
754 result->divisors[log10Value] = divisor;
844 // a divisor for each log10 value.
850 // For each log10 value not defined in CLDR, it uses the divisor for
  /external/iproute2/tc/
f_u32.c 39 fprintf(stderr, "or u32 divisor DIVISOR\n");
43 " u{32|16|8} | mark } SAMPLE_ARGS [divisor DIVISOR]\n");
1035 } else if (matches(*argv, "divisor") == 0) {
1036 unsigned divisor; local
1038 if (get_unsigned(&divisor, *argv, 0) ||
1039 divisor == 0 ||
1040 divisor > 0x100 || ((divisor - 1) & divisor))
1080 unsigned divisor = 0x100; local
    [all...]
  /external/qemu/android/utils/
ini.c 521 int64_t divisor = 0; local
528 divisor = giga;
532 divisor = mega;
536 divisor = kilo;
539 if (divisor) {
540 snprintf(temp, sizeof temp, "%" PRId64 "%c", size/divisor, suffix);
  /external/webrtc/src/system_wrappers/source/spreadsortlib/
spreadsort.hpp 43 unsigned divisor = rough_log_2_size(count); local
44 //Making sure the divisor is positive
45 if(divisor > LOG_MEAN_BIN_SIZE)
46 divisor -= LOG_MEAN_BIN_SIZE;
48 divisor = 1;
49 unsigned relative_width = (LOG_CONST * log_range)/((divisor > MAX_SPLITS) ? MAX_SPLITS : divisor);
86 //Gets a non-negative right bit shift to operate as a logarithmic divisor
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 243 double Aacc,Bacc,Aacc2,Bacc2,divisor,divisor2,m,Am,Bm; local
292 divisor=sqrt(Aacc*Aacc+Bacc*Bacc);
293 m=db_SafeReciprocal(divisor);
304 divisor=0.0;
309 if(divisor2>divisor)
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_image_homography.cpp 243 double Aacc,Bacc,Aacc2,Bacc2,divisor,divisor2,m,Am,Bm; local
292 divisor=sqrt(Aacc*Aacc+Bacc*Bacc);
293 m=db_SafeReciprocal(divisor);
304 divisor=0.0;
309 if(divisor2>divisor)
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 243 double Aacc,Bacc,Aacc2,Bacc2,divisor,divisor2,m,Am,Bm; local
292 divisor=sqrt(Aacc*Aacc+Bacc*Bacc);
293 m=db_SafeReciprocal(divisor);
304 divisor=0.0;
309 if(divisor2>divisor)
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 434 int divisor = 2 * nDays; local
441 int x = (mWidth - mPadding * 2) / divisor + mPadding;
458 int x = (2 * i + 1) * (mWidth - mPadding * 2) / (divisor) + mPadding;
  /art/runtime/
utils.cc 503 uint64_t divisor = GetNsToTimeUnitDivisor(time_unit); local
524 uint64_t whole_part = nano_duration / divisor;
525 uint64_t fractional_part = nano_duration % divisor;
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java 878 * Returns a {@code BigInteger} whose value is greatest common divisor
882 * @param value value with which the greatest common divisor is computed.
912 * {@code this / divisor} at index 0 and {@code this % divisor} at index 1.
914 * @param divisor value by which {@code this} is divided.
915 * @throws NullPointerException if {@code divisor == null}.
916 * @throws ArithmeticException if {@code divisor == 0}.
920 public BigInteger[] divideAndRemainder(BigInteger divisor) {
921 BigInt divisorBigInt = divisor.getBigInt();
929 * Returns a {@code BigInteger} whose value is {@code this / divisor}
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
apicdef_32.h 395 u32 divisor : 4, member in struct:local_apic::__anon265
  /bionic/libc/kernel/common/linux/
pkt_sched.h 141 unsigned divisor; member in struct:tc_sfq_qopt

Completed in 797 milliseconds

12 3 4 5 6 7