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

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
fpu_control.h 35 * ZM: Zero-divide mask
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
fpu_control.h 35 * ZM: Zero-divide mask
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
fpu_control.h 35 * ZM: Zero-divide mask
  /bionic/libm/man/
fenv.3 94 A divide-by-zero exception occurs when the program attempts to
95 divide a finite non-zero number by zero.
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECFieldElement.java 16 public abstract ECFieldElement divide(ECFieldElement b); method in class:ECFieldElement
85 public ECFieldElement divide(ECFieldElement b) method in class:ECFieldElement.Fp
179 // BigInteger legendreExponent = qMinusOne.shiftRight(1); //divide(ECConstants.TWO);
196 // BigInteger n1 = qMinusOne.shiftRight(2); //.divide(ECConstants.FOUR);
197 // BigInteger n2 = n1.add(ECConstants.ONE); //q.add(ECConstants.THREE).divide(ECConstants.FOUR);
217 // n = n.shiftRight(1);//divide(ECConstants.TWO);
593 // public ECFieldElement divide(final ECFieldElement b)
1018 public ECFieldElement divide(final ECFieldElement b) method in class:ECFieldElement.F2m
    [all...]
  /external/dropbear/libtomcrypt/src/math/
gmp_desc.c 251 static int divide(void *a, void *b, void *c, void *d) function
424 &divide,
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 137 public UnsignedInteger divide(UnsignedInteger val) { method in class:UnsignedInteger
139 return asUnsigned(UnsignedInts.divide(value, val.value));
UnsignedLong.java 134 public UnsignedLong divide(UnsignedLong val) { method in class:UnsignedLong
136 return asUnsigned(UnsignedLongs.divide(value, val.value));
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector3f.java 571 * <code>divide</code> divides the values of this vector by a scalar and
575 * the value to divide this vectors attributes by.
578 public Vector3f divide(float scalar) { method in class:Vector3f
602 * <code>divide</code> divides the values of this vector by a scalar and
606 * the value to divide this vectors attributes by.
609 public Vector3f divide(Vector3f scalar) { method in class:Vector3f
752 // return divide(length);
755 // return divide(1);
    [all...]
Vector4f.java 508 * <code>divide</code> divides the values of this vector by a scalar and
512 * the value to divide this vectors attributes by.
515 public Vector4f divide(float scalar) { method in class:Vector4f
539 * <code>divide</code> divides the values of this vector by a scalar and
543 * the value to divide this vectors attributes by.
546 public Vector4f divide(Vector4f scalar) { method in class:Vector4f
698 // return divide(length);
701 // return divide(1);
  /external/kernel-headers/original/asm-generic/
siginfo.h 172 #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
174 #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
  /external/libvpx/examples/includes/geshi/geshi/
cobol.php 74 'DELETE', 'DISPLAY', 'DIVIDE', 'INTO', 'REMAINDER', 'ENTER',
100 'END-COMPUTE', 'END-DELETE', 'END-DIVIDE', 'END-EVALUATE', 'END-IF',
  /external/oprofile/events/i386/atom/
unit_masks 30 0x01 s Divide operations executed
31 0x81 ar Divide operations retired
  /external/quake/quake/src/QW/progs/
subs.qc 88 // divide by speed to get time to reach dest
149 // divide by speed to get time to reach dest
  /external/skia/include/core/
Sk64.h 166 /** Divide the number by the specified 32 bit integer, using the specified
167 divide option (either truncate or round).
  /frameworks/native/libs/utils/
LinearTransform.cpp 71 // Divide. Going in we know
87 // Divide again. Keep the remainder around in order to round properly.
  /hardware/ti/omap4xxx/camera/
NV12_resize.c 172 /* divide by sum of the weights */
278 /* divide by sum of the weights */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
siginfo.h 176 FPE_INTDIV = 1, /* Integer divide by zero. */
180 FPE_FLTDIV, /* Floating point divide by zero. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
siginfo.h 176 FPE_INTDIV = 1, /* Integer divide by zero. */
180 FPE_FLTDIV, /* Floating point divide by zero. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
siginfo.h 176 FPE_INTDIV = 1, /* Integer divide by zero. */
180 FPE_FLTDIV, /* Floating point divide by zero. */
  /dalvik/vm/mterp/c/
opcommon.cpp 152 dvmThrowArithmeticException("divide by zero"); \
198 dvmThrowArithmeticException("divide by zero"); \
232 dvmThrowArithmeticException("divide by zero"); \
277 dvmThrowArithmeticException("divide by zero"); \
319 dvmThrowArithmeticException("divide by zero"); \
365 dvmThrowArithmeticException("divide by zero"); \
    [all...]
  /external/apache-harmony/math/src/test/java/tests/api/java/math/
BigDecimalTest.java 215 * @tests java.math.BigDecimal#divide(java.math.BigDecimal, int)
220 BigDecimal divd3 = divd1.divide(divd2, BigDecimal.ROUND_UP);
228 divd3 = divd1.divide(divd2, BigDecimal.ROUND_DOWN);
235 divd1.divide(divd2, BigDecimal.ROUND_DOWN);
236 fail("divide by zero is not caught");
242 * @tests java.math.BigDecimal#divide(java.math.BigDecimal, int, int)
247 BigDecimal divd3 = divd1.divide(divd2, 3, BigDecimal.ROUND_HALF_UP);
252 divd3 = divd1.divide(divd2, 0, BigDecimal.ROUND_DOWN);
259 divd1.divide(divd2, 4, BigDecimal.ROUND_DOWN);
260 fail("divide by zero is not caught")
    [all...]
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 221 // q = p.subtract(BigInteger.ONE).divide(TWO);
651 assertTrue(">>1 == /2", d.divide(two).equals(c));
657 assertTrue(">>1 == /2", f.subtract(one).divide(two).equals(e));
734 * java.math.BigInteger#divide(java.math.BigInteger)
767 largePos.divide(zero);
773 bi1.divide(zero);
779 bi3.negate().divide(zero);
785 zero.divide(zero);
    [all...]
  /gdk/build/gmsl/
gmsl-tests 390 $(call start_test,divide)
391 $(call test_assert,$(call divide,3,4),0)
392 $(call test_assert,$(call divide,4,3),1)
393 $(call test_assert,$(call divide,21,2),10)
394 $(call test_assert,$(call divide,20,2),10)
395 $(call test_assert,$(call divide,19,2),9)
396 $(call test_assert,$(call divide,1,0),10)
  /ndk/build/gmsl/
gmsl-tests 390 $(call start_test,divide)
391 $(call test_assert,$(call divide,3,4),0)
392 $(call test_assert,$(call divide,4,3),1)
393 $(call test_assert,$(call divide,21,2),10)
394 $(call test_assert,$(call divide,20,2),10)
395 $(call test_assert,$(call divide,19,2),9)
396 $(call test_assert,$(call divide,1,0),10)

Completed in 2398 milliseconds

1 2 3 4 5 6 78 91011>>