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

1 2 3 4 5

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ieee754.h 36 unsigned int negative:1; member in struct:ieee754_float::__anon14246
43 unsigned int negative:1; member in struct:ieee754_float::__anon14246
51 unsigned int negative:1; member in struct:ieee754_float::__anon14247
60 unsigned int negative:1; member in struct:ieee754_float::__anon14247
76 unsigned int negative:1; member in struct:ieee754_double::__anon14248
86 unsigned int negative:1; member in struct:ieee754_double::__anon14248
93 unsigned int negative:1; member in struct:ieee754_double::__anon14248
102 unsigned int negative:1; member in struct:ieee754_double::__anon14249
113 unsigned int negative:1;
121 unsigned int negative:1
138 unsigned int negative:1; member in struct:ieee854_long_double::__anon14250
147 unsigned int negative:1; member in struct:ieee854_long_double::__anon14250
155 unsigned int negative:1; member in struct:ieee854_long_double::__anon14250
165 unsigned int negative:1; member in struct:ieee854_long_double::__anon14251
176 unsigned int negative:1; member in struct:ieee854_long_double::__anon14251
188 unsigned int negative:1; member in struct:ieee854_long_double::__anon14251
    [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...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
FloatingPointParser.java 32 boolean negative; field in class:FloatingPointParser.StringExponentPair
34 StringExponentPair(String s, int e, boolean negative) {
37 this.negative = negative;
95 boolean negative = false;
143 negative = true;
186 return new StringExponentPair(s, e, negative);
199 boolean negative = false;
203 negative = true; // fall through
210 return negative ? Double.NEGATIVE_INFINIT
    [all...]
  /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...]
  /libcore/luni/src/main/java/java/lang/
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...]
Integer.java 119 * @return a negative value if the value of this integer is less than the
153 boolean negative = firstDigit == '-';
154 if (negative) {
187 int result = parse(string, i, base, negative);
365 boolean negative = string.charAt(i) == '-';
366 if (negative && ++i == length) {
372 return parse(string, i, radix, negative);
376 boolean negative) throws NumberFormatException {
399 if (!negative) {
460 * negative and characters from '0' to '9'
    [all...]
Long.java 106 * @return a negative value if the value of this long is less than the value
137 boolean negative = firstDigit == '-';
138 if (negative) {
167 long result = parse(string, i, base, negative);
339 boolean negative = string.charAt(i) == '-';
340 if (negative && ++i == length) {
344 return parse(string, i, radix, negative);
347 private static long parse(String string, int offset, int radix, boolean negative) {
364 if (!negative) {
423 * negative and characters from '0' to '9'
    [all...]
Double.java 68 * Constant for the negative infinity value of the {@code double} type.
151 * @return a negative value if the value of this double is less than the
247 * @return {@code true} if the value of this double is positive or negative
259 * @return {@code true} if the value of {@code d} is positive or negative
371 * @return a negative value if {@code double1} is less than {@code double2};
441 boolean negative = (bitValue & 0x8000000000000000L) != 0;
448 return (negative ? "-0x0.0p0" : "0x0.0p0");
452 if (negative) {
Float.java 65 * Constant for the negative infinity value of the {@code float} type.
157 * @return a negative value if the value of this float is less than the
263 * @return {@code true} if the value of this float is positive or negative
275 * @return {@code true} if the value of {@code f} is positive or negative
377 * @return a negative value if {@code float1} is less than {@code float2};
449 boolean negative = (bitValue & 0x80000000) != 0;
457 return (negative ? "-0x0.0p0" : "0x0.0p0");
461 if (negative) {
  /external/v8/src/
conversions.cc 429 bool negative = false; local
431 // We must not negate the most negative int.
433 negative = true;
443 if (negative) buffer[--i] = '-';
451 bool negative = false; local
455 negative = true;
497 if (negative) builder.AddCharacter('-');
510 bool negative,
524 if (negative) builder.AddCharacter('-');
545 bool negative = false local
579 bool negative = false; local
    [all...]
  /external/bison/lib/
strtol.c 130 /* True if negative values of the signed integer type T use two's
255 int negative; local
312 negative = 1;
317 negative = 0;
321 negative = 0;
399 && i > (negative
411 return negative ? STRTOL_LONG_MIN : STRTOL_LONG_MAX;
416 return negative ? -i : i;
  /dalvik/vm/mterp/armv5te/
OP_NEW_ARRAY.S 2 %verify "negative array length"
19 bmi common_errNegativeArraySize @ negative length, bail
  /external/bluetooth/glib/glib/gnulib/
vasnprintf.c 88 int negative = FALSE; local
116 negative = FALSE;
121 negative = FALSE;
126 negative = FALSE;
131 negative = (long long)number < 0;
132 if (negative)
161 if (negative || (flags & FLAG_SHOWSIGN) || (flags & FLAG_SPACE))
188 if (negative)
  /dalvik/vm/mterp/x86-atom/
OP_NEW_ARRAY.S 39 cmp $$0, %edx # check for negative length
41 js common_errNegativeArraySize # handle negative array length
  /external/webkit/JavaScriptCore/runtime/
UString.cpp 196 bool negative = false; local
198 negative = true;
205 if (negative)
229 bool negative = false; local
231 negative = true;
238 if (negative)
276 bool negative = false; local
278 negative = true;
285 if (negative)
  /cts/tools/vm-tests/src/dot/junit/opcodes/goto_16/d/
T_goto_16_1.d 37 ; test negative offset
  /cts/tools/vm-tests/src/dot/junit/opcodes/goto_32/d/
T_goto_32_1.d 37 ; test negative offset
  /cts/tools/vm-tests/src/dot/junit/opcodes/opc_goto/d/
T_opc_goto_1.d 37 ; test negative offset
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 306 // the number is negative, then set it again using setBit().
627 final boolean negative = currentToken.startsWith("-");
629 return negative ? Double.NEGATIVE_INFINITY : Double.POSITIVE_INFINITY;
652 final boolean negative = currentToken.startsWith("-");
654 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_mastergain_gnu.s 81 CMN r4, r6 @check for negative saturation
90 CMN r5, r6 @check for negative saturation
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_mastergain_gnu.s 81 CMN r4, r6 @check for negative saturation
90 CMN r5, r6 @check for negative saturation
  /development/scripts/app_engine_server/
memcache_zipserve.py 258 negative cache, or store (zip) and form the response.
294 # ELSE put it in the negative cache
302 logging.info(' Adding %s to negative cache, serving 404', name)
307 # found it in negative cache
453 A negative number if file2 is before file1
553 Future work should consider setting a maximum negative cache size to
557 filename: URL to add ot negative cache
565 """Retrieve from negative cache.
571 The file contents if present in the negative cache.
  /frameworks/base/location/java/android/location/
Location.java 176 // Handle negative values
216 boolean negative = false;
219 negative = true;
232 return negative ? -val : val;
248 boolean isNegative180 = negative && (deg == 180) &&
266 return negative ? -val : val;
  /cts/tests/tests/widget/src/android/widget/cts/
AbsSeekBarTest.java 98 final int negative = -5; local
107 myAbsSeekBar.setThumbOffset(negative);
108 assertEquals(negative, myAbsSeekBar.getThumbOffset());
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_string.c 37 SDL_bool negative = SDL_FALSE; local
40 negative = SDL_TRUE;
62 if ( negative && value ) {
140 SDL_bool negative = SDL_FALSE; local
143 negative = SDL_TRUE;
165 if ( negative && value ) {
213 SDL_bool negative = SDL_FALSE; local
216 negative = SDL_TRUE;
232 if ( negative && value ) {
    [all...]

Completed in 448 milliseconds

1 2 3 4 5