/external/v8/src/ |
bignum-dtoa.cc | 52 // Computes v / 10^estimated_power exactly, as a ratio of two bignums, numerator 57 Bignum* numerator, 61 // Multiplies numerator/denominator so that its values lies in the range 1-10. 63 // v = numerator'/denominator' * 10^(decimal_point-1) 64 // where numerator' and denominator' are the values of numerator and 68 Bignum* numerator, Bignum* denominator, 72 static void GenerateShortestDigits(Bignum* numerator, Bignum* denominator, 78 Bignum* numerator, Bignum* denominator, 80 // Generates 'count' digits of numerator/denominator 114 Bignum numerator; local [all...] |
/external/webkit/Source/WebCore/rendering/mathml/ |
RenderMathMLFraction.cpp | 64 RenderObject* numerator = firstChild(); local 67 numerator->style()->setTextAlign(LEFT); 69 numerator->style()->setTextAlign(RIGHT); 71 numerator->style()->setTextAlign(CENTER); 73 RenderObject* denominator = numerator->nextSibling(); 149 RenderMathMLBlock* numerator = toRenderMathMLBlock(firstChild()); local 150 if (numerator->isRenderMathMLRow()) 151 verticalOffset = numerator->offsetHeight() + adjustForThickness; 153 verticalOffset = numerator->offsetHeight(); 173 RenderMathMLBlock* numerator = toRenderMathMLBlock(firstChild()) local [all...] |
/libcore/luni/src/main/java/java/util/ |
Grego.java | 181 public static long floorDivide(long numerator, long denominator) {
183 // a numerator of Long.MIN_VALUE correctly
184 return (numerator >= 0) ?
185 numerator / denominator :
186 ((numerator + 1) / denominator) - 1;
189 private static long floorDivide(long numerator, long denominator, long[] remainder) {
190 if (numerator >= 0) {
191 remainder[0] = numerator % denominator;
192 return numerator / denominator;
194 long quotient = ((numerator + 1) / denominator) - 1; [all...] |
/external/quake/quake/src/QW/client/ |
adivtab.h | 19 // numerator = -15 52 // numerator = -14 85 // numerator = -13 118 // numerator = -12 151 // numerator = -11 184 // numerator = -10 217 // numerator = -9 250 // numerator = -8 283 // numerator = -7 316 // numerator = - [all...] |
/external/quake/quake/src/WinQuake/ |
adivtab.h | 22 // numerator = -15
55 // numerator = -14
88 // numerator = -13
121 // numerator = -12
154 // numerator = -11
187 // numerator = -10
220 // numerator = -9
253 // numerator = -8
286 // numerator = -7
319 // numerator = -6 [all...] |
/external/icu4c/i18n/ |
gregoimp.h | 35 * @param numerator the numerator 39 static int32_t floorDivide(int32_t numerator, int32_t denominator); 46 * @param numerator the numerator 50 static inline double floorDivide(double numerator, double denominator); 57 * -1 with <code>remainder</code> => 3. NOTE: If numerator is 59 * @param numerator the numerator 62 * remainder. Unlike <code>numerator % denominator</code>, thi [all...] |
gregoimp.cpp | 27 int32_t ClockMath::floorDivide(int32_t numerator, int32_t denominator) { 28 return (numerator >= 0) ? 29 numerator / denominator : ((numerator + 1) / denominator) - 1; 32 int32_t ClockMath::floorDivide(double numerator, int32_t denominator, 35 quotient = uprv_floor(numerator / denominator); 36 remainder = (int32_t) (numerator - (quotient * denominator));
|
nfrs.cpp | 469 * same base value, the first one is used when the numerator of the 489 int64_t numerator; local 494 numerator = util64_fromDouble(number * (double)leastCommonMultiple + 0.5); 501 // "numerator" is the numerator of the fraction if the 502 // denominator is the LCD. The numerator if the rule's 503 // base value is the denominator is "numerator" times the 507 tempDifference = numerator * rules[i]->getBaseValue() % leastCommonMultiple; 511 // the numerator's distance from the CLOSEST multiple 532 // the numerator of the fraction is 1 and the second one is used i [all...] |
/external/icu4c/test/testdata/ |
translit_rules.txt | 119 \ue075>\u09F4; # CURRENCY NUMERATOR ONE 120 \ue076>\u09F5; # CURRENCY NUMERATOR TWO 121 \ue077>\u09F6; # CURRENCY NUMERATOR THREE 122 \ue078>\u09F7; # CURRENCY NUMERATOR FOUR 123 \ue079>\u09F8; # CURRENCY NUMERATOR ONE LESS THAN THE DENOMINATOR
|
ra.xlf | 275 \ue075>\u09F4; # CURRENCY NUMERATOR ONE 277 \ue076>\u09F5; # CURRENCY NUMERATOR TWO 279 \ue077>\u09F6; # CURRENCY NUMERATOR THREE 281 \ue078>\u09F7; # CURRENCY NUMERATOR FOUR 283 \ue079>\u09F8; # CURRENCY NUMERATOR ONE LESS THAN THE DENOMINATOR
|
/external/libvpx/vpx_scale/include/generic/ |
vpxscale_arbitrary.h | 26 // numerator for the width and height
|
/external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/ |
fallerEstimator.m | 8 % 3) Separated numerator and denomerator filters
|
/external/speex/libspeex/ |
filters_sse.h | 43 /* Copy numerator, denominator and memory to aligned xmm */ 96 /* Copy numerator, denominator and memory to aligned xmm */ 150 /* Copy numerator, denominator and memory to aligned xmm */ 199 /* Copy numerator, denominator and memory to aligned xmm */ 248 /* Copy numerator, denominator and memory to aligned xmm */ 296 /* Copy numerator, denominator and memory to aligned xmm */
|
/external/llvm/include/llvm/Support/ |
BranchProbability.h | 26 // Numerator
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11mouse.c | 189 The first number is the numerator, followed by the acceleration 255 &mouse_accel.numerator, 271 mouse_accel.numerator,
|
/hardware/ti/omap4xxx/camera/ |
Encoder_libjpeg.cpp | 224 unsigned int numerator = 0; local 233 numerator = atoi(temp); 235 if (!numerator) 236 numerator = 1; 246 numerator = numerator * denominator + atoi(temp); 253 *num = numerator;
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
LoopBlinnMathUtils.cpp | 326 // Divides the numerator by the denominator safely for the case where 329 bool safeUnitDivide(float numerator, float denominator, float& ratio) 331 if (numerator < 0) { 332 // Make the "numerator >= denominator" check below work. 333 numerator = -numerator; 336 if (!numerator || !denominator || numerator >= denominator) 338 float r = numerator / denominator; 342 if (!r) // catch underflow if numerator <<<< denominato [all...] |
/external/speex/include/speex/ |
speex_resampler.h | 130 * rate ratio is an arbitrary rational number with both the numerator and 133 * @param ratio_num Numerator of the sampling rate ratio 240 * @param ratio_num Numerator of the sampling rate ratio 254 * @param ratio_num Numerator of the sampling rate ratio copied
|
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/ |
OMXExif.cpp | 320 unsigned int numerator = 0, denominator = 0; local 322 &numerator, &denominator); 323 if (numerator || denominator) { 324 exifTags->ulFocalLength[0] = (OMX_U32) numerator; 521 unsigned int numerator = 0, denominator = 0; local 523 &numerator, &denominator); 524 if (numerator || denominator) { 528 "%u/%u", numerator, denominator);
|
/external/dropbear/libtommath/ |
bn_mp_n_root.c | 70 /* numerator */
|
/external/webrtc/src/modules/audio_processing/ns/main/source/ |
nsx_core.h | 71 WebRtc_Word32 pinkNoiseNumerator; //pink noise parameter: numerator
|
/frameworks/base/media/libstagefright/codecs/amrwbenc/inc/ |
cnst.h | 56 #define GAMMA1 30147 /* Weighting factor (numerator) (0.92 in Q15) */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
thread_db.h | 226 int nrunnable_num; /* Average runnable threads, numerator. */ 228 int a_concurrency_num; /* Achieved concurrency level, numerator. */ 231 numerator. */ 235 numerator. */
|
/frameworks/base/opengl/tests/hwc/ |
hwcCommit.cpp | 209 uint32_t numerator(void) { return _n; } function in class:Rational 211 void setNumerator(uint32_t numerator) { _n = numerator; } [all...] |
/external/icu4c/test/intltest/ |
winnmtst.cpp | 98 int64_t numerator = randomInt64(); local 105 ran = (double)numerator / (double)denomenator;
|