HomeSort by relevance Sort by last modified time
    Searched full:remainder (Results 51 - 75 of 553) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
SpecificLongValue.java 92 public LongValue remainder(LongValue other) method in class:SpecificLongValue
101 return other.remainder(this);
184 public LongValue remainder(SpecificLongValue other) method in class:SpecificLongValue
187 return new CompositeLongValue(this, CompositeLongValue.REMAINDER, other);
193 return new CompositeLongValue(other, CompositeLongValue.REMAINDER, this);
ParticularDoubleValue.java 110 public DoubleValue remainder(DoubleValue other) method in class:ParticularDoubleValue
117 return other.remainder(this);
164 public DoubleValue remainder(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 110 public FloatValue remainder(FloatValue other) method in class:ParticularFloatValue
117 return other.remainder(this);
164 public FloatValue remainder(ParticularFloatValue other) method in class:ParticularFloatValue
IntegerValue.java 121 * Returns the remainder of this IntegerValue divided by the given
124 public abstract IntegerValue remainder(IntegerValue other) method in class:IntegerValue
128 * Returns the remainder of the given IntegerValue divided by this
312 * Returns the remainder of this IntegerValue divided by the given
315 public IntegerValue remainder(UnknownIntegerValue other) method in class:IntegerValue
317 return remainder((IntegerValue)other);
321 * Returns the remainder of the given UnknownIntegerValue divided by this
556 * Returns the remainder of this IntegerValue divided by the given
559 public IntegerValue remainder(SpecificIntegerValue other) method in class:IntegerValue
561 return remainder((IntegerValue)other)
803 public IntegerValue remainder(ParticularIntegerValue other) method in class:IntegerValue
    [all...]
  /external/proguard/src/proguard/util/
NameParser.java 51 // remainder of the string.
65 // remainder of the string.
77 // if any, and the remainder.
  /bionic/libm/man/
fmod.3 41 .Nd floating-point remainder functions
55 functions compute the floating-point remainder of
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 134 dP = d.remainder(pSub1);
135 dQ = d.remainder(qSub1);
  /dalvik/vm/mterp/x86-atom/
binopD.S 20 * returns the quotient, else it returns the remainder.
54 SET_VREG %edx rINST # vAA<- %edx (remainder)
binopD2addr.S 21 * the remainder. Also, a divide-by-zero check is done.
56 SET_VREG %edx rINST # vAA<- %edx (remainder)
binopDLit16.S 20 * returns the quotient, else it returns the remainder.
57 SET_VREG %edx, rINST # vA<- %edx (remainder)
binopDLit8.S 20 * returns the quotient, else it returns the remainder.
55 SET_VREG %edx, rINST # vA<- %edx (remainder)
  /external/dropbear/libtommath/
bn_mp_div_2d.c 18 /* shift right by a certain bit count (store quotient in c, optional remainder in d) */
39 /* get the remainder */
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.5.3.js 27 The binary % operator is said to yield the remainder of its operands from
29 is the divisor. In C and C++, the remainder operator accepts only integral
32 The result of a floating-point remainder operation as computed by the %
33 operator is not the same as the "remainder" operation defined by IEEE 754.
34 The IEEE 754 "remainder" operation computes the remainder from a rounding
36 to that of the usual integer remainder operator. Instead the ECMAScript
38 analogous to that of the Java integer remainder operator; this may be
41 The result of a ECMAScript floating-point remainder operation is determined by the rules of IEEE arithmetic:
48 In the remaining cases, where neither an infinity, nor a zero, nor NaN is involved, the floating-point remainder
    [all...]
  /bionic/libc/arch-x86/string/
bzero.S 38 L1: movl %edx,%ecx /* zero remainder by bytes */
memcmp.S 22 movl 20(%esp),%ecx /* compare remainder by bytes */
memset.S 47 movl %ebx,%ecx /* set remainder by bytes */
swab.S 35 L2: shrl $3,%ecx # copy remainder 8 words at a time
  /external/proguard/src/proguard/gui/
OptimizationsDialog.java 62 constraintsLast.gridwidth = GridBagConstraints.REMAINDER;
67 constraintsLastStretch.gridwidth = GridBagConstraints.REMAINDER;
74 panelConstraints.gridwidth = GridBagConstraints.REMAINDER;
93 cancelButtonConstraints.gridwidth = GridBagConstraints.REMAINDER;
  /external/skia/src/animator/
SkBase64.cpp 123 size_t remainder = length % 3;
124 const unsigned char* end = &src[length - remainder];
138 if (remainder > 0) {
142 if (remainder == 2)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
diagnostic.def 14 /* The remainder are real diagnostic types. */
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 327 const char *remainder; local
330 remainder = match_prefix (descendant_uri, parent_uri);
332 if (remainder != NULL && *remainder == '/')
349 const char *remainder; local
352 remainder = match_prefix (descendant_uri, parent_uri);
354 if (remainder != NULL && *remainder == '/')
355 retval = g_strdup (remainder + 1);
  /external/icu4c/i18n/
gregoimp.h 54 * the modulus remainder. Unlike the built-in division, this is
57 * -1 with <code>remainder</code> => 3. NOTE: If numerator is
61 * @param remainder output parameter to receive the
62 * remainder. Unlike <code>numerator % denominator</code>, this
68 int32_t& remainder);
71 * For a positive divisor, return the quotient and remainder
72 * such that dividend = quotient*divisor + remainder and
73 * 0 <= remainder < divisor.
81 double& remainder);
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 313 // Remainder is 20. The maximum pixels of line we could paint
316 int remainder = distance%patWidth; local
317 int coverage = distance-remainder;
326 if (remainder)
329 if (remainder) {
330 patternOffset += patWidth - remainder;
331 patternOffset += remainder / 2;
335 if (remainder)
336 patternOffset = (patWidth - remainder) / 2;
426 // Remainder is 20. The maximum pixels of line we could pain
434 int remainder = distance % patWidth; local
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 290 // Remainder is 20. The maximum pixels of line we could paint
293 int remainder = distance % patWidth; local
294 int coverage = distance - remainder;
303 if (remainder)
306 if (remainder) {
307 patternOffset += patWidth - remainder;
308 patternOffset += remainder / 2;
312 if (remainder)
313 patternOffset = (patWidth - remainder)/2;
402 // Remainder is 20. The maximum pixels of line we could pain
410 int remainder = distance % patWidth; local
    [all...]
  /external/opencore/oscl/pvlogger/src/
pvlogger_file_appender.h 150 uint32 remainder = length - (jj - 10); local
151 if (remainder > 0 && remainder <= 10)
153 oscl_memcpy(remainderbuf, buffer, remainder);
154 oscl_memset(remainderbuf + remainder, 0, 10 - remainder);

Completed in 1054 milliseconds

1 23 4 5 6 7 8 91011>>