HomeSort by relevance Sort by last modified time
    Searched refs:negative (Results 1 - 25 of 299) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
JoyAxisTrigger.java 40 private final boolean negative; field in class:JoyAxisTrigger
46 public JoyAxisTrigger(int joyId, int axisId, boolean negative) {
49 this.negative = negative;
52 public static int joyAxisHash(int joyId, int joyAxis, boolean negative){
54 return (2048 * joyId) | (negative ? 1280 : 1024) | (joyAxis & 0xff);
66 return negative;
70 return "JoyAxis[joyId="+joyId+", axisId="+axisId+", neg="+negative+"]";
74 return joyAxisHash(joyId, axisId, negative);
MouseAxisTrigger.java 47 private boolean negative; field in class:MouseAxisTrigger
53 * @param negative True if listen to negative axis events, false if
56 public MouseAxisTrigger(int mouseAxis, boolean negative){
61 this.negative = negative;
69 return negative;
73 String sign = negative ? "Negative" : "Positive";
82 public static int mouseAxisHash(int mouseAxis, boolean negative){
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ieee754.h 36 unsigned int negative:1; member in struct:ieee754_float::__anon39237
43 unsigned int negative:1; member in struct:ieee754_float::__anon39237
51 unsigned int negative:1; member in struct:ieee754_float::__anon39238
60 unsigned int negative:1; member in struct:ieee754_float::__anon39238
76 unsigned int negative:1; member in struct:ieee754_double::__anon39239
86 unsigned int negative:1; member in struct:ieee754_double::__anon39239
93 unsigned int negative:1; member in struct:ieee754_double::__anon39239
102 unsigned int negative:1; member in struct:ieee754_double::__anon39240
113 unsigned int negative:1;
121 unsigned int negative:1
138 unsigned int negative:1; member in struct:ieee854_long_double::__anon39241
147 unsigned int negative:1; member in struct:ieee854_long_double::__anon39241
155 unsigned int negative:1; member in struct:ieee854_long_double::__anon39241
165 unsigned int negative:1; member in struct:ieee854_long_double::__anon39242
176 unsigned int negative:1; member in struct:ieee854_long_double::__anon39242
188 unsigned int negative:1; member in struct:ieee854_long_double::__anon39242
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
ieee754.h 36 unsigned int negative:1; member in struct:ieee754_float::__anon40827
43 unsigned int negative:1; member in struct:ieee754_float::__anon40827
51 unsigned int negative:1; member in struct:ieee754_float::__anon40828
60 unsigned int negative:1; member in struct:ieee754_float::__anon40828
76 unsigned int negative:1; member in struct:ieee754_double::__anon40829
86 unsigned int negative:1; member in struct:ieee754_double::__anon40829
93 unsigned int negative:1; member in struct:ieee754_double::__anon40829
102 unsigned int negative:1; member in struct:ieee754_double::__anon40830
113 unsigned int negative:1;
121 unsigned int negative:1
138 unsigned int negative:1; member in struct:ieee854_long_double::__anon40831
147 unsigned int negative:1; member in struct:ieee854_long_double::__anon40831
155 unsigned int negative:1; member in struct:ieee854_long_double::__anon40831
165 unsigned int negative:1; member in struct:ieee854_long_double::__anon40832
176 unsigned int negative:1; member in struct:ieee854_long_double::__anon40832
188 unsigned int negative:1; member in struct:ieee854_long_double::__anon40832
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
ieee754.h 36 unsigned int negative:1; member in struct:ieee754_float::__anon42342
43 unsigned int negative:1; member in struct:ieee754_float::__anon42342
51 unsigned int negative:1; member in struct:ieee754_float::__anon42343
60 unsigned int negative:1; member in struct:ieee754_float::__anon42343
76 unsigned int negative:1; member in struct:ieee754_double::__anon42344
86 unsigned int negative:1; member in struct:ieee754_double::__anon42344
93 unsigned int negative:1; member in struct:ieee754_double::__anon42344
102 unsigned int negative:1; member in struct:ieee754_double::__anon42345
113 unsigned int negative:1;
121 unsigned int negative:1
138 unsigned int negative:1; member in struct:ieee854_long_double::__anon42346
147 unsigned int negative:1; member in struct:ieee854_long_double::__anon42346
155 unsigned int negative:1; member in struct:ieee854_long_double::__anon42346
165 unsigned int negative:1; member in struct:ieee854_long_double::__anon42347
176 unsigned int negative:1; member in struct:ieee854_long_double::__anon42347
188 unsigned int negative:1; member in struct:ieee854_long_double::__anon42347
    [all...]
  /external/proguard/src/proguard/gui/
FilterBuilder.java 54 StringBuffer negative = new StringBuffer(); local
56 buildFilter("", positive, negative);
58 return positive.length() <= negative.length() ?
60 negative.toString();
69 * @param negative the filter to be extended, assuming the matching
74 StringBuffer negative)
119 // Extend the negative filter with exceptions and return.
120 if (negative.length() > 0)
122 negative.append(',');
124 negative.append(prefix)
    [all...]
  /external/valgrind/main/drd/tests/
annotate_ignore_read.stderr.exp 3 test69: negative
annotate_order_1.stderr.exp 3 test03: negative
annotate_order_2.stderr.exp 3 test30: negative
annotate_order_3.stderr.exp 3 test31: negative
annotate_spinlock.stderr.exp 3 test27: negative
  /external/guava/guava/src/com/google/common/primitives/
AndroidInteger.java 51 boolean negative = string.charAt(i) == '-';
52 if (negative && ++i == length) {
55 return tryParse(string, i, radix, negative);
60 boolean negative) {
77 if (!negative) {
  /external/smack/src/org/xbill/DNS/
APLRecord.java 25 public final boolean negative; field in class:APLRecord.Element
30 Element(int family, boolean negative, Object address, int prefixLength)
33 this.negative = negative;
44 * @param negative Indicates if this prefix is a negation.
50 Element(boolean negative, InetAddress address, int prefixLength) {
51 this(Address.familyOf(address), negative, address,
58 if (negative)
77 negative == elt.negative &
    [all...]
  /external/v8/src/
conversions-inl.h 66 bool negative = x < 0; local
67 if (negative) {
76 return negative ? ~result + 1 : result;
138 bool negative,
145 if (current == end) return SignedZero(negative);
223 if (negative) {
233 return static_cast<double>(negative ? -number : number) * pow(2.0, exponent);
249 bool negative = false;
263 negative = true;
270 if (current == end) return SignedZero(negative);
    [all...]
conversions.cc 124 bool negative = false; local
126 // We must not negate the most negative int.
128 negative = true;
138 if (negative) buffer[--i] = '-';
150 bool negative = false; local
154 negative = true;
203 if (negative) builder.AddCharacter('-');
216 bool negative,
230 if (negative) builder.AddCharacter('-');
252 bool negative = false local
298 bool negative = false; local
    [all...]
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.cpp 27 const SparseWeightVector<Key, Hash> &negative,
35 gradient.AdditiveWeightUpdate(-1.0, negative, 0.0);
64 const SparseWeightVector<Key, Hash> &negative) {
71 const double negative_score = ScoreSample(negative);
83 UpdateSubGradient(positive, negative, learning_rate,
90 UpdateSubGradient(positive, negative, learning_rate,
94 current_negative_.LoadWeightVector(negative);
  /libcore/luni/src/main/java/java/math/
Logical.java 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
132 int iNeg = negative.getFirstNonzeroDigit();
134 // Look if the trailing zeros of the negative will "blank" all
145 resDigits[i] = -negative.digits[i] & positive.digits[i];
148 int limit = Math.min(negative.numberLength, positive.numberLength);
150 resDigits[i] = ~negative.digits[i] & positive.digits[i];
152 // if the negative was shorter must copy the remaining digit
    [all...]
  /external/chromium_org/v8/src/
conversions.cc 129 bool negative = false; local
131 // We must not negate the most negative int.
133 negative = true;
143 if (negative) buffer[--i] = '-';
155 bool negative = false; local
159 negative = true;
208 if (negative) builder.AddCharacter('-');
221 bool negative,
235 if (negative) builder.AddCharacter('-');
257 bool negative = false local
303 bool negative = false; local
    [all...]
conversions-inl.h 54 inline double SignedZero(bool negative) {
55 return negative ? uint64_to_double(Double::kSignMask) : 0.0;
71 bool negative = x < 0; local
72 if (negative) {
81 return negative ? ~result + 1 : result;
143 bool negative,
150 if (current == end) return SignedZero(negative);
228 if (negative) {
236 return ldexp(static_cast<double>(negative ? -number : number), exponent);
252 bool negative = false
    [all...]
  /libcore/luni/src/main/java/java/lang/
StringToReal.java 30 boolean negative; field in class:StringToReal.StringExponentPair
38 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
40 return negative ? -0.0f : 0.0f;
78 result.negative = (s.charAt(0) == '-');
145 result.negative = true;
211 boolean negative = false;
216 negative = true;
225 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
271 return info.negative ? -result : result;
312 return info.negative ? -result : result
    [all...]
IntegralToString.java 134 * expect. It is necessary because the range of the negative values is
138 boolean negative = false;
140 negative = true;
155 if (negative) {
181 boolean negative = false;
184 negative = true;
188 // If -n is still negative, n is Integer.MIN_VALUE
238 if (negative) {
268 * expect. It is necessary because the range of the negative values is
272 boolean negative = false
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_xml_parser_unittest.cc 216 double negative = 0; local
217 AutofillUploadXmlParser parse_handler(&positive, &negative);
222 EXPECT_DOUBLE_EQ(0.3, negative);
230 double negative = 0; local
232 new AutofillUploadXmlParser(&positive, &negative));
237 EXPECT_DOUBLE_EQ(0.3, negative); // Partially parsed.
238 negative = 0;
242 parse_handler.reset(new AutofillUploadXmlParser(&positive, &negative));
247 EXPECT_DOUBLE_EQ(0, negative);
250 parse_handler.reset(new AutofillUploadXmlParser(&positive, &negative));
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 54 boolean negative = false;
57 negative = true;
93 if (negative) {
124 boolean negative = false;
127 negative = true;
163 if (negative) {
188 boolean negative = false;
191 negative = true;
227 if (negative) {
258 boolean negative = false
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
IntegralToString.java 127 * expect. It is necessary because the range of the negative values is
131 boolean negative = false;
133 negative = true;
148 if (negative) {
174 boolean negative = false;
177 negative = true;
181 // If -n is still negative, n is Integer.MIN_VALUE
231 if (negative) {
261 * expect. It is necessary because the range of the negative values is
265 boolean negative = false
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 45 bool negative) {
48 RAW_CHECK(base == 10 || !negative);
49 RAW_CHECK(absolute_value || !negative);
52 if (negative && minimal_num_length)
54 if (negative && pad_with_zero)
75 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
87 pad_with_zero, false /* negative */);
92 bool negative = (num < 0); local
93 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10,
94 minimal_num_length, pad_with_zero, negative);
    [all...]

Completed in 666 milliseconds

1 2 3 4 5 6 7 8 91011>>