/external/compiler-rt/lib/i386/ |
moddi3.S | 11 // No other exceptions are generated, as the divide cannot overflow. 14 // on x86_64. The performance goal is ~40 cycles per divide, which is faster than 69 cmpl %ebx, %edx // to avoid overflowing the upcoming divide. 107 subl %ebx, %edx // subtract bhi from ahi so that divide will not
|
/external/dropbear/libtommath/ |
bn_mp_div_3.c | 18 /* divide by three (based on routine from MPI and the GMP manual) */
|
bn_mp_lcm.c | 34 /* divide the smallest by the GCD */
|
/external/icu4c/common/ |
dictbe.h | 117 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 174 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 237 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 295 * <p>Divide up a range of known dictionary characters.</p>
|
/external/iptables/include/net/netfilter/ |
nf_conntrack_tuple.h | 24 We divide the structure along "manipulatable" and
|
/external/proguard/src/proguard/evaluation/value/ |
UnknownDoubleValue.java | 80 public DoubleValue divide(DoubleValue other) method in class:UnknownDoubleValue
|
UnknownFloatValue.java | 80 public FloatValue divide(FloatValue other) method in class:UnknownFloatValue
|
ParticularIntegerValue.java | 127 public IntegerValue divide(IntegerValue other) method in class:ParticularIntegerValue 136 return other.divide(this); 255 public IntegerValue divide(ParticularIntegerValue other) method in class:ParticularIntegerValue
|
ParticularLongValue.java | 100 public LongValue divide(LongValue other) method in class:ParticularLongValue 109 return other.divide(this); 188 public LongValue divide(ParticularLongValue other) method in class:ParticularLongValue
|
LongValue.java | 112 public LongValue divide(LongValue other) method in class:LongValue 124 return other.divide(this); 269 public LongValue divide(SpecificLongValue other) method in class:LongValue 425 public LongValue divide(ParticularLongValue other) method in class:LongValue 427 return divide((SpecificLongValue)other);
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
factor.sed | 70 :divide
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
Rational.java | 62 * Gets the rational value as type double. Will cause a divide-by-zero error
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
prctl.h | 33 # define PR_FP_EXC_DIV 0x010000 /* floating point divide by zero */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
prctl.h | 33 # define PR_FP_EXC_DIV 0x010000 /* floating point divide by zero */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
prctl.h | 33 # define PR_FP_EXC_DIV 0x010000 /* floating point divide by zero */
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
UnsignedIntegerTest.java | 151 aUnsigned.bigIntegerValue().divide(bUnsigned.bigIntegerValue()).intValue(); 152 UnsignedInteger unsignedDiv = aUnsigned.divide(bUnsigned); 162 UnsignedInteger.asUnsigned(a).divide(UnsignedInteger.ZERO);
|
UnsignedLongTest.java | 161 .divide(bUnsigned.bigIntegerValue()) 163 UnsignedLong unsignedDiv = aUnsigned.divide(bUnsigned); 173 UnsignedLong.asUnsigned(a).divide(UnsignedLong.ZERO);
|
/external/openfst/src/include/fst/ |
lexicographic-weight.h | 142 inline LexicographicWeight<W1, W2> Divide(const LexicographicWeight<W1, W2> &w, 145 return LexicographicWeight<W1, W2>(Divide(w.Value1(), v.Value1(), typ), 146 Divide(w.Value2(), v.Value2(), typ));
|
power-weight.h | 117 // Semiring divide operation 119 inline PowerWeight<W, n> Divide(const PowerWeight<W, n> &w1, 124 w.SetValue(i, Divide(w1.Value(i), w2.Value(i), type));
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
product-weight.h | 185 inline ProductWeight<W1, W2> Divide(const ProductWeight<W1, W2> &w, 188 return ProductWeight<W1, W2>(Divide(w.Value1(), v.Value1(), typ), 189 Divide(w.Value2(), v.Value2(), typ));
|
/packages/apps/Gallery2/jni/filters/ |
kmeans.h | 56 inline void divide(T dst[], N divisor, int dimension) { function 165 // divide to get centroid and set dst to result 167 divide<N, int>(tmp + x, popularities[x / stride], dimension);
|
/dalvik/vm/compiler/codegen/x86/libenc/ |
enc_defs_ext.h | 148 //Mnemonic_DIV, // Unsigned Divide 149 Mnemonic_DIVSD, // Divide Scalar Double-Precision Floating-Point Values 150 Mnemonic_DIVSS, // Divide Scalar Single-Precision Floating-Point Values 209 Mnemonic_DIV, // Unsigned Divide 210 Mnemonic_IDIV, // Signed Divide
|
/external/llvm/lib/Transforms/Utils/ |
BypassSlowDivision.cpp | 14 // positive and less than 256 use an unsigned 8-bit divide. 95 // Basic Block is split before divide 100 // Add new basic block for slow divide operation 116 // Add new basic block for fast divide operation 221 // be profitably bypassed and carried out with a shorter, faster divide.
|
/external/clang/test/Driver/ |
fsanitize.c | 4 // CHECK-UNDEFINED-TRAP: "-fsanitize={{((signed-integer-overflow|integer-divide-by-zero|float-divide-by-zero|shift|unreachable|return|vla-bound|alignment|null|object-size|float-cast-overflow|bounds|enum|bool),?){14}"}} 8 // CHECK-UNDEFINED: "-fsanitize={{((signed-integer-overflow|integer-divide-by-zero|float-divide-by-zero|shift|unreachable|return|vla-bound|alignment|null|vptr|object-size|float-cast-overflow|bounds|enum|bool),?){15}"}} 11 // CHECK-INTEGER: "-fsanitize={{((signed-integer-overflow|unsigned-integer-overflow|integer-divide-by-zero|shift),?){4}"}} 14 // CHECK-PARTIAL-UNDEFINED: "-fsanitize={{((signed-integer-overflow|integer-divide-by-zero|float-divide-by-zero|shift|unreachable|return|vla-bound|alignment|null|object-size|bounds),?){11}"}}
|
/external/guava/guava-tests/test/com/google/common/math/ |
BigIntegerMathTest.java | 348 new BigDecimal(p).divide(new BigDecimal(q), 0, mode).toBigIntegerExact(); 349 assertEquals(expected, BigIntegerMath.divide(p, q, mode)); 361 assertEquals(p, BigIntegerMath.divide(p, q, UNNECESSARY).multiply(q)); 373 assertEquals(ZERO, BigIntegerMath.divide(ZERO, q, mode)); 382 BigIntegerMath.divide(p, ZERO, mode); 416 .divide(BigIntegerMath.factorial(k)) 417 .divide(BigIntegerMath.factorial(n - k));
|