HomeSort by relevance Sort by last modified time
    Searched refs:negative (Results 1 - 25 of 324) 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/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
ieee754.h 36 unsigned int negative:1; member in struct:ieee754_float::__anon30720
43 unsigned int negative:1; member in struct:ieee754_float::__anon30720
51 unsigned int negative:1; member in struct:ieee754_float::__anon30721
60 unsigned int negative:1; member in struct:ieee754_float::__anon30721
76 unsigned int negative:1; member in struct:ieee754_double::__anon30722
86 unsigned int negative:1; member in struct:ieee754_double::__anon30722
93 unsigned int negative:1; member in struct:ieee754_double::__anon30722
102 unsigned int negative:1; member in struct:ieee754_double::__anon30723
113 unsigned int negative:1;
121 unsigned int negative:1
138 unsigned int negative:1; member in struct:ieee854_long_double::__anon30724
147 unsigned int negative:1; member in struct:ieee854_long_double::__anon30724
155 unsigned int negative:1; member in struct:ieee854_long_double::__anon30724
165 unsigned int negative:1; member in struct:ieee854_long_double::__anon30725
176 unsigned int negative:1; member in struct:ieee854_long_double::__anon30725
188 unsigned int negative:1; member in struct:ieee854_long_double::__anon30725
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
ieee754.h 36 unsigned int negative:1; member in struct:ieee754_float::__anon32622
43 unsigned int negative:1; member in struct:ieee754_float::__anon32622
51 unsigned int negative:1; member in struct:ieee754_float::__anon32623
60 unsigned int negative:1; member in struct:ieee754_float::__anon32623
76 unsigned int negative:1; member in struct:ieee754_double::__anon32624
86 unsigned int negative:1; member in struct:ieee754_double::__anon32624
93 unsigned int negative:1; member in struct:ieee754_double::__anon32624
102 unsigned int negative:1; member in struct:ieee754_double::__anon32625
113 unsigned int negative:1;
121 unsigned int negative:1
138 unsigned int negative:1; member in struct:ieee854_long_double::__anon32626
147 unsigned int negative:1; member in struct:ieee854_long_double::__anon32626
155 unsigned int negative:1; member in struct:ieee854_long_double::__anon32626
165 unsigned int negative:1; member in struct:ieee854_long_double::__anon32627
176 unsigned int negative:1; member in struct:ieee854_long_double::__anon32627
188 unsigned int negative:1; member in struct:ieee854_long_double::__anon32627
    [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/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/llvm/test/MC/AsmParser/
directive_rept-diagnostics.s 24 .global negative
25 .type negative,@object
26 negative: label
29 # CHECK: error: Count is negative
  /external/valgrind/memcheck/tests/
malloc3.stderr.exp 1 Argument 'size' of function malloc has a fishy (possibly negative) value: -1
5 Argument 'size' of function calloc has a fishy (possibly negative) value: -1
  /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/pdfium/third_party/bigint/
BigIntegerUtils.cc 15 return (x.getSign() == BigInteger::negative)
26 return (s[0] == '-') ? BigInteger(stringToBigUnsigned(s.substr(1, s.length() - 1)), BigInteger::negative)
53 if (x.getSign() == BigInteger::negative)
BigInteger.cc 27 case negative:
46 case negative:
58 * Same idea as in BigUnsigned.cc, except that negative input results in a
59 * negative BigInteger instead of an exception. */
79 : BigInteger::negative;
100 if (sign == negative)
107 * nonnegative and negative numbers. */
152 case negative:
214 // Take the negative of _b_'s, sign, not ours.
256 // is positive, otherwise it is negative
    [all...]
  /external/v8/src/
conversions-inl.h 32 inline double SignedZero(bool negative) {
33 return negative ? uint64_to_double(Double::kSignMask) : 0.0;
49 bool negative = x < 0; local
50 if (negative) {
63 return negative ? ~result + 1 : result;
133 bool negative,
140 if (current == end) return SignedZero(negative);
218 if (negative) {
226 return std::ldexp(static_cast<double>(negative ? -number : number), exponent);
242 bool negative = false
    [all...]
conversions.cc 177 bool negative = false; local
179 // We must not negate the most negative int.
181 negative = true;
191 if (negative) buffer[--i] = '-';
203 bool negative = false; local
207 negative = true;
256 if (negative) builder.AddCharacter('-');
269 bool negative,
283 if (negative) builder.AddCharacter('-');
304 bool negative = false local
350 bool negative = false; local
    [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;
230 boolean negative = false;
235 negative = true;
244 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
290 return info.negative ? -result : result;
331 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/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/bison/lib/
strtol.c 124 /* True if negative values of the signed integer type T use two's
241 int negative; local
298 negative = 1;
303 negative = 0;
307 negative = 0;
385 && i > (negative
397 return negative ? STRTOL_LONG_MIN : STRTOL_LONG_MAX;
402 return negative ? -i : i;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 47 bool negative) {
50 RAW_CHECK(base == 10 || !negative);
51 RAW_CHECK(absolute_value || !negative);
54 if (negative && minimal_num_length)
56 if (negative && pad_with_zero)
77 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
89 pad_with_zero, false /* negative */);
94 bool negative = (num < 0); local
95 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10,
96 minimal_num_length, pad_with_zero, negative);
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ProcFileReader.java 190 final boolean negative = mBuffer[0] == '-';
194 for (int i = negative ? 1 : 0; i < tokenIndex; i++) {
200 // always parse as negative number and apply sign later; this
210 return negative ? result : -result;

Completed in 1008 milliseconds

1 2 3 4 5 6 7 8 91011>>