HomeSort by relevance Sort by last modified time
    Searched full:positive (Results 101 - 125 of 4422) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/compiler-rt/test/msan/Linux/
process_vm_readv.cc 23 #ifdef POSITIVE
55 #ifdef POSITIVE
  /external/libunwind/doc/
unw_is_signal_frame.man 32 routine returns a positive value
51 positive value if the current frame is a signal frame, or 0 if it is
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerXorTest.java 32 * Xor for zero and a positive number
58 * Xor for a positive number and zero
123 * Xor for two positive numbers of the same length
136 * Xor for two positive numbers; the first is longer
149 * Xor for two positive numbers; the first is shorter
227 * Xor for a negative and a positive numbers; the first is longer
253 * Xor for a positive and a negative numbers; the first is longer
266 * Xor for a positive and a negative number; the first is shorter
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_int_literal.py 34 # Positive constants
45 # Positive constants
95 # Positive constants
106 # Positive constants
118 # Positive constants
129 # Positive constants
162 # Positive constants
173 # Positive constants
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_int_literal.py 34 # Positive constants
45 # Positive constants
95 # Positive constants
106 # Positive constants
118 # Positive constants
129 # Positive constants
162 # Positive constants
173 # Positive constants
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_int_literal.py 34 # Positive constants
45 # Positive constants
95 # Positive constants
106 # Positive constants
118 # Positive constants
129 # Positive constants
162 # Positive constants
173 # Positive constants
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_int_literal.py 34 # Positive constants
45 # Positive constants
95 # Positive constants
106 # Positive constants
118 # Positive constants
129 # Positive constants
162 # Positive constants
173 # Positive constants
  /system/core/toolbox/upstream-netbsd/lib/libc/stdlib/
strsuftoll.c 100 * 1) A positive decimal number.
101 * 2) A positive decimal number followed by a b (mult by 512).
102 * 3) A positive decimal number followed by a k (mult by 1024).
103 * 4) A positive decimal number followed by a m (mult by 1048576).
104 * 5) A positive decimal number followed by a g (mult by 1073741824).
105 * 6) A positive decimal number followed by a t (mult by 1099511627776).
106 * 7) A positive decimal number followed by a w (mult by sizeof int)
107 * 8) Two or more positive decimal numbers (with/without k,b or w).
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
branchs12.s 10 ;; Branchs to defined symbols, positive offset < 128
50 ;; Branchs to defined symbols, positive offset > -128
  /external/autotest/client/site_tests/security_x86Registers/
security_x86Registers.py 28 # Inverted from positive case: none of these bits should be set.
32 # Inverted from positive case: none of these bits should be set.
52 # GCS register, BILD bit inverted from positive test.
56 # GCS register, BILD bit inverted from positive test.
75 logging.error('BAD: no positive %s tests defined!', name)
84 # Positive tests; make sure values are for real.
  /external/guava/guava/src/com/google/common/hash/
SipHashFunction.java 47 * @param c the number of compression rounds (must be positive)
48 * @param d the number of finalization rounds (must be positive)
54 "The number of SipRound iterations (c=%s) during Compression must be positive.", c);
56 "The number of SipRound iterations (d=%s) during Finalization must be positive.", d);
115 // and ending with a byte encoding the positive integer b mod 256.
141 // End with a byte encoding the positive integer b mod 256.
  /external/opencv3/3rdparty/openexr/Imath/
ImathFun.cpp 59 // Positive float, normalized or denormalized.
60 // Incrementing the largest positive float
94 // Positive float, normalized or denormalized.
129 // Positive double, normalized or denormalized.
130 // Incrementing the largest positive double
164 // Positive double, normalized or denormalized.
  /frameworks/base/core/java/android/hardware/camera2/params/
StreamConfiguration.java 49 * @param width image width, in pixels (positive)
50 * @param height image height, in pixels (positive)
54 * if width/height were not positive
63 mWidth = checkArgumentPositive(width, "width must be positive");
64 mHeight = checkArgumentPositive(height, "height must be positive");
102 * @return a Size with positive width and height
  /libcore/ojluni/src/main/java/java/security/acl/
AclEntry.java 39 * as being either positive or negative. If positive, the permissions are
41 * are to be denied. Each principal can have at most one positive ACL entry
42 * and one negative entry; that is, multiple positive or negative ACL
45 * Note: ACL entries are by default positive. An entry becomes a
86 * Note: ACL entries are by default positive. An entry becomes a
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpReplyCode.java 103 * Determines if the code is a Positive Preliminary response.
106 * @return <code>true</code> if the reply code is a positive preliminary
114 * Determines if the code is a Positive Completion response.
117 * @return <code>true</code> if the reply code is a positive completion
125 * Determines if the code is a positive internediate response.
128 * @return <code>true</code> if the reply code is a positive intermediate
  /frameworks/support/compat/java/android/support/v4/widget/
ScrollerCompat.java 124 * @param startX Starting horizontal scroll offset in pixels. Positive
126 * @param startY Starting vertical scroll offset in pixels. Positive numbers
128 * @param dx Horizontal distance to travel. Positive numbers will scroll the
130 * @param dy Vertical distance to travel. Positive numbers will scroll the
140 * @param startX Starting horizontal scroll offset in pixels. Positive
142 * @param startY Starting vertical scroll offset in pixels. Positive numbers
144 * @param dx Horizontal distance to travel. Positive numbers will scroll the
146 * @param dy Vertical distance to travel. Positive numbers will scroll the
243 * desired distance from finalX. Absolute value - must be positive.
260 * desired distance from finalY. Absolute value - must be positive
    [all...]
  /external/pdfium/third_party/bigint/
BigInteger.cc 26 case positive:
45 case positive:
62 BigInteger::BigInteger(unsigned long x) : mag(x) { sign = mag.isZero() ? zero : positive; }
63 BigInteger::BigInteger(unsigned int x) : mag(x) { sign = mag.isZero() ? zero : positive; }
64 BigInteger::BigInteger(unsigned short x) : mag(x) { sign = mag.isZero() ? zero : positive; }
78 : (x > 0) ? BigInteger::positive
115 if (sign == positive) {
149 case positive:
256 // is positive, otherwise it is negative.
257 sign = (a.sign == b.sign) ? positive : negative
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
locale.h 76 char *positive_sign; /* Sign for positive values. */
80 /* 1 if currency_symbol precedes a positive value, 0 if succeeds. */
82 /* 1 iff a space separates currency_symbol from a positive value. */
88 /* Positive and negative sign positions:
97 /* 1 if int_curr_symbol precedes a positive value, 0 if succeeds. */
99 /* 1 iff a space separates int_curr_symbol from a positive value. */
105 /* Positive and negative sign positions:
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
locale.h 76 char *positive_sign; /* Sign for positive values. */
80 /* 1 if currency_symbol precedes a positive value, 0 if succeeds. */
82 /* 1 iff a space separates currency_symbol from a positive value. */
88 /* Positive and negative sign positions:
97 /* 1 if int_curr_symbol precedes a positive value, 0 if succeeds. */
99 /* 1 iff a space separates int_curr_symbol from a positive value. */
105 /* Positive and negative sign positions:
  /external/clang/test/Parser/
pragma-loop.cpp 21 /* expected-error {{invalid value '-1'; must be positive}} */ #pragma clang loop vectorize_width(V)
26 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop vectorize_width(V / 2)
34 /* expected-error {{invalid value '-1'; must be positive}} */ #pragma clang loop interleave_count(I)
39 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop interleave_count(2 % I)
73 /* expected-error {{invalid value '-1'; must be positive}} */ #pragma clang loop vectorize_width(Value)
146 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop vectorize_width(0)
147 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop interleave_count(0)
148 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop unroll_count(0)
151 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop interleave_count(10 / 5 - 2)
  /external/mesa3d/src/mesa/main/
querymatrix.c 54 case _FPCLASS_PINF: /* positive infinity */
57 case _FPCLASS_PN: /* positive normal */
60 case _FPCLASS_PD: /* positive denormalized */
63 case _FPCLASS_PZ: /* positive zero */
185 /* Return +/- 1 based on whether it's a positive or
  /frameworks/support/v7/preference/src/android/support/v7/preference/
DialogPreference.java 184 * Sets the text of the positive button of the dialog. This will be shown on
187 * @param positiveButtonText The text of the positive button.
195 * @param positiveButtonTextResId The positive button text as a resource.
202 * Returns the text of the positive button to be shown on subsequent
205 * @return The text of the positive button.
  /libcore/luni/src/main/java/java/math/
Multiplication.java 86 * Multiplies a number by a positive integer.
88 * @param factor a positive {@code int} number
101 * @param exp a positive {@code long} exponent
115 * @param exp the exponent of power of ten, it must be positive.
174 * @param exp a positive {@code int} exponent
  /libcore/ojluni/src/main/java/sun/net/
InetAddressCachePolicy.java 48 /* default value for positive lookups */
58 * any positive value: the number of seconds to cache an address for
69 * any positive value: the number of seconds to cache an address for
121 /* No properties defined for positive caching. If there is no
122 * security manager then use the default positive cache value.
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
div.c 64 * truncated towards -inf, r.rem will be positive (will
68 * If both are num and denom are positive, r will always
69 * be positive.

Completed in 2380 milliseconds

1 2 3 45 6 7 8 91011>>