/external/stlport/test/unit/ |
bcompos_test.cpp | 38 binary_compose<logical_and<bool>, odd, positive> 39 b = binary_compose<logical_and<bool>, odd, positive>(logical_and<bool>(), odd(), positive()); 52 compose2(logical_and<bool>(), odd(), positive()));
|
unary.h | 15 struct positive : public unary_function<int, bool> { struct in inherits:unary_function
|
/ndk/sources/android/stlport/test/unit/ |
bcompos_test.cpp | 38 binary_compose<logical_and<bool>, odd, positive> 39 b = binary_compose<logical_and<bool>, odd, positive>(logical_and<bool>(), odd(), positive()); 52 compose2(logical_and<bool>(), odd(), positive()));
|
unary.h | 15 struct positive : public unary_function<int, bool> { struct in inherits:unary_function
|
/libcore/luni/src/main/java/java/math/ |
Logical.java | 112 // PRE: both arguments are positive 128 /** @return sign = positive.magnitude & magnitude = -negative.magnitude */ 129 static BigInteger andDiffSigns(BigInteger positive, BigInteger negative) { 130 // PRE: positive is positive and negative is negative 131 int iPos = positive.getFirstNonzeroDigit(); 135 // the positive digits 136 if (iNeg >= positive.numberLength) { 139 int resLength = positive.numberLength; 145 resDigits[i] = -negative.digits[i] & positive.digits[i] [all...] |
RoundingMode.java | 27 * Rounding mode where positive values are rounded towards positive infinity 42 * Rounding mode to round towards positive infinity. For positive values 51 * Rounding mode to round towards negative infinity. For positive values
|
Multiplication.java | 87 * Multiplies a number by a positive integer. 89 * @param factor a positive {@code int} number 102 * @param exp a positive {@code long} exponent 116 * @param exp the exponent of power of ten, it must be positive. 179 * @param exp a positive {@code int} exponent
|
/external/proguard/src/proguard/gui/ |
FilterBuilder.java | 53 StringBuffer positive = new StringBuffer(); local 56 buildFilter("", positive, negative); 58 return positive.length() <= negative.length() ? 59 positive.toString() : 67 * @param positive the filter to be extended, assuming the matching 73 StringBuffer positive, 101 // Extend the positive filter with exceptions and return. 102 if (positive.length() > 0) 104 positive.append(','); 106 positive.append('!').append(prefix) [all...] |
/external/dropbear/libtommath/ |
bn_mp_sub.c | 28 /* subtract a negative from a positive, OR */ 29 /* subtract a positive from a negative. */ 35 /* subtract a positive from a positive, OR */
|
bn_mp_abs.c | 20 * Simple function copies the input and fixes the sign to positive 34 /* force the sign of b to positive */
|
bn_mp_add.c | 29 /* both positive or both negative */ 34 /* one positive, the other negative */
|
bn_mp_read_signed_bin.c | 18 /* read signed bin, big endian, first byte is 0==positive or 1==negative */ 28 /* first byte is 0 for positive, non-zero for negative */
|
bn_mp_add_d.c | 52 /* sign always positive */ 61 /* if a is positive */
|
/libcore/luni/src/main/java/java/lang/ |
RealToString.java | 68 boolean positive = (inputNumberBits & Double.SIGN_MASK) == 0; 76 quickResult = positive ? "Infinity" : "-Infinity"; 82 quickResult = positive ? "0.0" : "-0.0"; 85 quickResult = positive ? "4.9E-324" : "-4.9E-324"; 117 freeFormatExponential(dst, positive); 119 freeFormat(dst, positive); 134 boolean positive = (inputNumberBits & Float.SIGN_MASK) == 0; 142 quickResult = positive ? "Infinity" : "-Infinity"; 147 quickResult = positive ? "0.0" : "-0.0"; 182 freeFormatExponential(dst, positive); [all...] |
/libcore/luni/src/main/java/java/security/acl/ |
Acl.java | 29 * (<i>positive</i>) or denied 39 * <li>For each {@code Principal} there can be only one <i>positive</i> and one 41 * <li>If the two {@code AclEntry}'s (<i>positive</i> and <i>negative</i>) for a 77 * positive</i> or <i>negative</i>) and principal, then the new entry is not added. 116 * <li>The two permission lists (<i>positive</i> and <i>negative</i>) of the 117 * principal's groups ({@link Group}) are collected. The positive (granted) 118 * permissions are the union of all group's positive permissions that the 121 * specific permission is in both the positive and the negative list, it is 123 * <li>The individual permissions (<i>positive</i> and <i>negative</i>) of 124 * the principal override the group permissions. The positive individua [all...] |
AclEntry.java | 27 * granted (<i>positive</i>) or denied (<i>negative</i>) to a {@link Principal}. 56 * Note: An ACL entry is <i>positive</i> by default and can only become 64 * @return {@code true} if this ACL entry is negative, {@code false} if it's positive.
|
/bionic/libm/man/ |
fdim.3 | 34 .Nd positive difference functions 51 functions return the positive difference between 57 is positive, then
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
IInterfaceCollection.java | 35 * @return constant pool index [always positive] 60 * @param interface_index constant pool index [must be positive; input not validated] 73 * @param interface_index constant pool index [must be positive; input not validated] 74 * @return previous value at the given index [always positive]
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
IDeclaredExceptionTable.java | 35 * @return constant pool index [always positive] 63 * @param exception_index constant pool index [must be positive; input not validated] 76 * @param exception_index constant pool index [must be positive; input not validated] 77 * @return previous value at the given index [always positive]
|
/external/skia/include/core/ |
SkMath.h | 78 /** Given an integer and a positive (max) integer, return the value 82 @param max The positive max value 86 // ensure that max is positive 102 // clear diff if diff is positive 110 /** Given a positive value and a positive max, return the value 123 // clear diff if diff is positive
|
/bionic/libc/stdlib/ |
div.c | 54 * truncated towards -inf, r.rem will be positive (will 58 * If both are num and denom are positive, r will always 59 * be positive.
|
/external/bluetooth/glib/build/win32/dirent/ |
dirent.h | 56 * positive = 0 based index of next entry
103 * positive = 0 based index of next entry
|
/frameworks/base/core/java/android/util/ |
FloatMath.java | 33 * Returns the float conversion of the most positive (i.e. closest to 34 * positive infinity) integer value which is less than the argument.
|
/frameworks/base/core/java/android/widget/ |
Scroller.java | 251 * @param startX Starting horizontal scroll offset in pixels. Positive 253 * @param startY Starting vertical scroll offset in pixels. Positive numbers 255 * @param dx Horizontal distance to travel. Positive numbers will scroll the 257 * @param dy Vertical distance to travel. Positive numbers will scroll the 267 * @param startX Starting horizontal scroll offset in pixels. Positive 269 * @param startY Starting vertical scroll offset in pixels. Positive numbers 271 * @param dx Horizontal distance to travel. Positive numbers will scroll the 273 * @param dy Vertical distance to travel. Positive numbers will scroll the
|
/frameworks/base/graphics/java/android/graphics/ |
RadialGradient.java | 24 @param radius Must be positive. The radius of the circle for this gradient 48 @param radius Must be positive. The radius of the circle for this gradient
|