/external/skia/src/pathops/ |
SkPathOpsTriangle.cpp | 26 // introduces error with divide; doesn't short circuit on early answer
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
Rational.java | 62 * Gets the rational value as type double. Will cause a divide-by-zero error
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
factor.sed | 70 :divide
|
/packages/apps/Camera2/src/com/android/camera/exif/ |
Rational.java | 62 * Gets the rational value as type double. Will cause a divide-by-zero error
|
/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
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/ |
Rational.java | 62 * Gets the rational value as type double. Will cause a divide-by-zero error
|
/packages/apps/Mms/src/com/android/mms/exif/ |
Rational.java | 62 * Gets the rational value as type double. Will cause a divide-by-zero error
|
/system/core/libmincrypt/tools/ |
DumpPublicKey.java | 143 N = N.divide(B); 157 RR = RR.divide(B); 199 X = X.divide(B); 213 Y = Y.divide(B);
|
/external/chromium_org/third_party/icu/source/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> 235 * <p>Divide up a range of known dictionary characters handled by this break engine.</p>
|
/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/llvm/lib/Target/AArch64/ |
AArch64Schedule.td | 34 def WriteID32 : SchedWrite; // 32-bit Divide 35 def WriteID64 : SchedWrite; // 64-bit Divide 36 def ReadID : SchedRead; // 32/64-bit Divide
|
/external/proguard/src/proguard/evaluation/value/ |
ParticularDoubleValue.java | 106 public DoubleValue divide(DoubleValue other) method in class:ParticularDoubleValue 113 return other.divide(this); 163 public DoubleValue divide(ParticularDoubleValue other) method in class:ParticularDoubleValue
|
ParticularFloatValue.java | 106 public FloatValue divide(FloatValue other) method in class:ParticularFloatValue 113 return other.divide(this); 163 public FloatValue divide(ParticularFloatValue other) method in class:ParticularFloatValue
|
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);
|
/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);
|
/external/eigen/unsupported/Eigen/src/SVD/ |
BDCSVD.h | 4 // We used the "A Divide-And-Conquer Algorithm for the Bidiagonal SVD" 31 * \brief class Bidiagonal Divide and Conquer SVD 199 void divide (Index firstCol, Index lastCol, Index firstRowW, 284 //**** step 2 Divide 294 divide(0, this->m_diagSize - 1, 0, 0, 0); 352 // The divide algorithm is done "in place", we are always working on subsets of the same matrix. The divide methods takes as argument the 363 void BDCSVD<MatrixType>::divide (Index firstCol, Index lastCol, Index firstRowW, function in class:Eigen::BDCSVD 396 // We use the divide and conquer algorithm 399 // The divide must be done in that order in order to have good results. Divide change the data inside the submat (…) [all...] |
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/ |
resample_by_2_mips.c | 135 // add two allpass outputs, divide by two and round 179 // add two allpass outputs, divide by two and round 208 // add two allpass outputs, divide by two and round 237 // add two allpass outputs, divide by two and round 266 // add two allpass outputs, divide by two and round
|
/external/llvm/lib/Transforms/Utils/ |
BypassSlowDivision.cpp | 14 // positive and less than 256 use an unsigned 8-bit divide. 96 // Basic Block is split before divide 101 // Add new basic block for slow divide operation 117 // Add new basic block for fast divide operation 222 // be profitably bypassed and carried out with a shorter, faster divide.
|
/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));
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/ |
h264bsd_interpolate_ver_half.s | 175 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 219 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 235 AND tmpa, tmpa, tmpb, LSL #3 ;// mask and divide by 32 263 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 283 AND tmpa, tmpa, tmpb, LSL #3 ;// mask and divide by 32 311 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 329 AND tmpa, tmp4, tmpb, LSL #3 ;// mask and divide by 32
|
h264bsd_interpolate_ver_quarter.s | 176 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 228 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 245 AND tmpa, tmpa, tmpb, LSL #3 ;// mask and divide by 32 277 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 295 AND tmpa, tmpa, tmpb, LSL #3 ;// mask and divide by 32 327 AND res, res, tmpb, LSR #5 ;// mask and divide by 32 344 AND tmpa, tmp4, tmpb, LSL #3 ;// mask and divide by 32
|