HomeSort by relevance Sort by last modified time
    Searched full:divide (Results 176 - 200 of 1557) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/r/
ropers.swg 50 %rename(Divide) operator /;
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
oi_codec_sbc_private.h 72 #ifndef DIVIDE
73 #define DIVIDE(a, b) ((a) / (b))
  /external/ceres-solver/include/ceres/internal/
numeric_diff.h 151 // 3. Divide out the run.
173 // Divide out the run to get slope.
  /external/chromium_org/net/quic/congestion_control/
cubic.cc 23 // allow a 10 shift right to divide.
139 // divide operator.
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
71 sub divide { subroutine
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
common_x86_asm.S 173 /* Perform an SSE divide-by-zero to see if the operating system
191 /* Unmask the divide-by-zero exception and perform one.
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdfprotect.asm 101 idt0: idesc32 isrP, 0x0008, 0 ; 0x00, 0 #DE, Divide Error
139 dw isrR, 0 ; 0x00, 0 #DE, Divide Error
  /external/compiler-rt/lib/builtins/arm/
udivmodsi4.S 1 /*===-- udivmodsi4.S - 32-bit unsigned integer divide and modulus ---------===//
10 * This file implements the __udivmodsi4 (32-bit unsigned integer divide and
udivsi3.S 1 /*===-- udivsi3.S - 32-bit unsigned integer divide ------------------------===//
10 * This file implements the __udivsi3 (32-bit unsigned integer divide)
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntsTest.java 65 assertEquals((int) (a / b), UnsignedInts.divide((int) a, (int) b));
96 - (divisor * UnsignedInts.divide(dividend, divisor) + UnsignedInts.remainder(dividend,
  /external/icu/icu4c/source/test/perf/perldriver/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
71 sub divide { subroutine
  /external/lldb/source/Plugins/Process/POSIX/
ProcessMessage.cpp 80 str = "integer divide by zero";
86 str = "floating point divide by zero";
  /external/mesa3d/src/mesa/x86/
common_x86_asm.S 173 /* Perform an SSE divide-by-zero to see if the operating system
191 /* Unmask the divide-by-zero exception and perform one.
  /external/replicaisland/src/com/replica/replicaisland/
PhysicsComponent.java 158 entity1Adjust.divide(getMass());
201 entity1Adjust.divide(getMass());
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 168 inline TropicalWeight Divide(const TropicalWeight &w1,
241 inline LogWeight Divide(const LogWeight &w1,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
siginfo.h 162 #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
164 #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
siginfo.h 162 #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
164 #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
humanize_number.c 128 * Divide the number until it fits the given column.
130 * divide once more.
  /external/guava/guava-tests/test/com/google/common/math/
LongMathTest.java 285 new BigDecimal(valueOf(p)).divide(new BigDecimal(valueOf(q)), 0, mode).longValue();
286 assertEquals(expected, LongMath.divide(p, q, mode));
298 assertEquals(p, LongMath.divide(p, q, UNNECESSARY) * q);
310 assertEquals(0L, LongMath.divide(0L, q, mode));
319 LongMath.divide(p, 0L, mode);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
balanced_quicksort.h 91 /** @brief Balanced quicksort divide step.
141 // Divide, returning __end - __begin - 1 in the worst case.
193 // Divide step.
282 // Divide.
294 // Divide, leave pivot unchanged in last place.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
balanced_quicksort.h 91 /** @brief Balanced quicksort divide step.
141 // Divide, returning __end - __begin - 1 in the worst case.
193 // Divide step.
282 // Divide.
294 // Divide, leave pivot unchanged in last place.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
balanced_quicksort.h 91 /** @brief Balanced quicksort divide step.
141 // Divide, returning __end - __begin - 1 in the worst case.
193 // Divide step.
282 // Divide.
294 // Divide, leave pivot unchanged in last place.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
balanced_quicksort.h 91 /** @brief Balanced quicksort divide step.
141 // Divide, returning __end - __begin - 1 in the worst case.
193 // Divide step.
282 // Divide.
294 // Divide, leave pivot unchanged in last place.
  /external/guava/guava/src/com/google/common/math/
LongMath.java 296 public static long divide(long p, long q, RoundingMode mode) { method in class:LongMath
416 a >>= aTwos; // divide out all 2s
418 b >>= bTwos; // divide out all 2s
426 a >>= Long.numberOfTrailingZeros(a); // divide out all 2s, since 2 doesn't divide b
592 result /= i / d; // (i/d) is guaranteed to divide result
616 // These values were generated by using checkedMultiply to see when the simple multiply/divide
  /external/proguard/src/proguard/evaluation/value/
IntegerValue.java 111 public abstract IntegerValue divide(IntegerValue other) method in class:IntegerValue
297 public IntegerValue divide(UnknownIntegerValue other) method in class:IntegerValue
299 return divide((IntegerValue)other);
541 public IntegerValue divide(SpecificIntegerValue other) method in class:IntegerValue
543 return divide((IntegerValue)other);
785 public IntegerValue divide(ParticularIntegerValue other) method in class:IntegerValue
787 return divide((SpecificIntegerValue)other);

Completed in 621 milliseconds

1 2 3 4 5 6 78 91011>>