HomeSort by relevance Sort by last modified time
    Searched refs:negative (Results 26 - 50 of 495) sorted by null

12 3 4 5 6 7 8 91011>>

  /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...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-d10v/
reloc-009.d 5 # Test 10 bit pc rel reloc negative normal case
reloc-010.d 5 # Test 10 bit pc rel reloc negative good boundary case
reloc-013.d 5 # Test 18 bit pc rel reloc negative normal case
reloc-014.d 5 # Test 18 bit pc rel reloc negative good boundary case
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
movi-3.s 1 ! There was a bug with negative pc-relative numbers.
movi-3.d 4 #name: Assembler PC-rel resolved negative MOVI.
  /external/autotest/server/site_tests/brillo_Invariants/
brillo_Invariants.py 15 def assert_path_test(self, path, test, negative=False):
22 @param negative: if True, test for the negative.
24 self.dut.run('test %s -%s %s' % ('!' if negative else '', test, path))
49 self.assert_path_test('/fstab.device', 'e', negative=True)
  /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)
  /external/dng_sdk/source/
dng_opcodes.cpp 117 dng_negative &negative)
123 negative.SetIsPreview (true);
142 else if (!IsValidForNegative (negative))
227 dng_negative & /* negative */,
256 dng_negative &negative,
264 , fNegative (negative)
360 dng_negative &negative,
397 negative,
432 dng_negative &negative,
438 , fNegative (negative)
    [all...]
dng_opcodes.h 209 /// Is this opcode valid for the specified negative?
211 virtual bool IsValidForNegative (const dng_negative & /* negative */) const
222 /// specified negative. Returns true if this opcode should be applied to
223 /// the negative, false otherwise.
226 dng_negative &negative);
228 /// Apply this opcode to the specified image with associated negative.
231 dng_negative &negative,
257 dng_negative &negative,
337 /// \param negative The negative object to be processed
    [all...]
dng_color_spec.cpp 40 // Negative white coordinates are kind of meaningless.
66 dng_color_spec::dng_color_spec (const dng_negative &negative,
69 : fChannels (negative.ColorChannels ())
125 if (negative. CameraCalibrationSignature () ==
129 if (negative.CameraCalibration1 ().Rows () == fChannels &&
130 negative.CameraCalibration1 ().Cols () == fChannels)
133 fCameraCalibration1 = negative.CameraCalibration1 ();
137 if (negative.CameraCalibration2 ().Rows () == fChannels &&
138 negative.CameraCalibration2 ().Cols () == fChannels)
141 fCameraCalibration2 = negative.CameraCalibration2 ()
    [all...]
dng_jpeg_image.h 80 const dng_negative &negative,
dng_image_writer.cpp     [all...]
dng_lens_correction.h 112 /// Are these warp params valid for the specified negative?
114 virtual bool IsValidForNegative (const dng_negative &negative) const;
124 /// [0,1]. The returned result is non-negative.
134 /// computed result are non-negative.
146 /// itself. The returned result is non-negative. Mathematically,
472 virtual bool IsValidForNegative (const dng_negative &negative) const;
477 dng_negative &negative,
508 virtual bool IsValidForNegative (const dng_negative &negative) const;
513 dng_negative &negative,
615 virtual void Prepare (dng_negative &negative,
    [all...]
dng_misc_opcodes.h 49 dng_negative &negative,
185 virtual void ProcessArea (dng_negative &negative,
245 virtual void ProcessArea (dng_negative &negative,
286 virtual void ProcessArea (dng_negative &negative,
327 virtual void ProcessArea (dng_negative &negative,
366 virtual void ProcessArea (dng_negative &negative,
405 virtual void ProcessArea (dng_negative &negative,
  /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/v8/src/
conversions.cc 178 bool negative = false; local
180 // We must not negate the most negative int.
182 negative = true;
192 if (negative) buffer[--i] = '-';
204 bool negative = false; local
208 negative = true;
257 if (negative) builder.AddCharacter('-');
270 bool negative,
284 if (negative) builder.AddCharacter('-');
305 bool negative = false local
351 bool negative = false; local
    [all...]
conversions-inl.h 33 inline double SignedZero(bool negative) {
34 return negative ? uint64_to_double(Double::kSignMask) : 0.0;
50 bool negative = x < 0; local
51 if (negative) {
64 return negative ? ~result + 1 : result;
205 bool negative,
212 if (current == end) return SignedZero(negative);
290 if (negative) {
298 return std::ldexp(static_cast<double>(negative ? -number : number), exponent);
314 bool negative = false
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Integer.java 94 * <p>If the first argument is negative, the first element of the
97 * negative, no sign character appears in the result.
141 boolean negative = (i < 0);
144 if (!negative) {
155 if (negative) {
167 * if the argument is negative; otherwise, it is equal to the
205 * if the argument is negative; otherwise, it is equal to the
237 * if the argument is negative; otherwise it is equal to the
336 boolean negative = i < 0;
337 boolean small = negative ? i > -100 : i < 100
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
variance_media.asm 50 sel r6, r9, lr ; select bytes with negative difference
54 usad8 r5, r6, lr ; calculate sum of negative differences
58 subs r8, r8, r5 ; subtract negative differences from sum
73 sel r6, r9, lr ; select bytes with negative difference
77 usad8 r5, r6, lr ; calculate sum of negative differences
82 sub r8, r8, r5 ; subtract negative differences from sum
97 sel r6, r9, lr ; select bytes with negative difference
101 usad8 r5, r6, lr ; calculate sum of negative differences
106 sub r8, r8, r5 ; subtract negative differences from sum
123 sel r6, r9, lr ; select bytes with negative differenc
    [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/webrtc/webrtc/modules/rtp_rtcp/source/
byte_io_unittest.cc 28 T CreateTestValue(bool negative, uint8_t num_bytes) {
31 val = (val << 8) + (negative ? (0xFF - i) : (i + 1));
33 if (negative && std::numeric_limits<T>::is_signed) {
57 // Test both for values that are positive and negative (if signed)
59 bool negative = neg > 0; local
62 T test_value = CreateTestValue<T>(negative, B);
79 // Test both for values that are positive and negative (if signed).
81 bool negative = neg > 0; local
84 T test_value = CreateTestValue<T>(negative, B);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 46 bool negative) {
49 RAW_CHECK(base == 10 || !negative);
50 RAW_CHECK(absolute_value || !negative);
53 if (negative && minimal_num_length)
55 if (negative && pad_with_zero)
76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
88 pad_with_zero, false /* negative */);
93 bool negative = (num < 0); local
94 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10,
95 minimal_num_length, pad_with_zero, negative);
    [all...]

Completed in 1868 milliseconds

12 3 4 5 6 7 8 91011>>