/external/proguard/src/proguard/gui/ |
D | FilterBuilder.java | 54 StringBuffer negative = new StringBuffer(); in buildFilter() local 56 buildFilter("", positive, negative); in buildFilter() 58 return positive.length() <= negative.length() ? in buildFilter() 60 negative.toString(); in buildFilter() 74 StringBuffer negative) in buildFilter() argument 120 if (negative.length() > 0) in buildFilter() 122 negative.append(','); in buildFilter() 124 negative.append(prefix); in buildFilter() 128 negative.append('*'); in buildFilter() 189 if (negative.length() > 0 && in buildFilter() [all …]
|
/external/dng_sdk/source/ |
D | dng_validate.cpp | 129 AutoPtr<dng_negative> negative; in dng_validate() local 144 negative.Reset (host.Make_dng_negative ()); in dng_validate() 146 negative->Parse (host, stream, info); in dng_validate() 148 negative->PostParse (host, stream, info); in dng_validate() 154 negative->ReadStage1Image (host, stream, info); in dng_validate() 163 negative->ReadTransparencyMask (host, stream, info); in dng_validate() 167 negative->ValidateRawImageDigest (host); in dng_validate() 178 const dng_image &stage1 = *negative->Stage1Image (); in dng_validate() 194 negative->SynchronizeMetadata (); in dng_validate() 200 negative->SetFourColorBayer (); in dng_validate() [all …]
|
D | dng_image_writer.cpp | 1723 const dng_negative &negative); 1730 const dng_negative &negative) in range_tag_set() argument 1765 const dng_image &rawImage (negative.RawImage ()); in range_tag_set() 1767 const dng_linearization_info *rangeInfo = negative.GetLinearizationInfo (); in range_tag_set() 1933 fWhiteLevelData32 [c] = negative.WhiteLevel (c); in range_tag_set() 2105 const dng_negative &negative); 2112 const dng_negative &negative) in color_tag_set() argument 2114 : fColorChannels (negative.ColorChannels ()) in color_tag_set() 2117 negative.CameraCalibration1 ()) in color_tag_set() 2120 negative.CameraCalibration2 ()) in color_tag_set() [all …]
|
D | dng_opcodes.cpp | 117 dng_negative &negative) in AboutToApply() argument 123 negative.SetIsPreview (true); in AboutToApply() 142 else if (!IsValidForNegative (negative)) in AboutToApply() 256 dng_negative &negative, in dng_filter_opcode_task() argument 264 , fNegative (negative) in dng_filter_opcode_task() 360 dng_negative &negative, in Apply() argument 397 negative, in Apply() 432 dng_negative &negative, in dng_inplace_opcode_task() argument 438 , fNegative (negative) in dng_inplace_opcode_task() 534 dng_negative &negative, in Apply() argument [all …]
|
D | dng_opcodes.h | 226 dng_negative &negative); 231 dng_negative &negative, 257 dng_negative &negative, 388 virtual void ProcessArea (dng_negative &negative, 396 dng_negative &negative, 491 virtual void ProcessArea (dng_negative &negative, 498 dng_negative &negative,
|
D | dng_color_spec.cpp | 66 dng_color_spec::dng_color_spec (const dng_negative &negative, in dng_color_spec() argument 69 : fChannels (negative.ColorChannels ()) in dng_color_spec() 125 if (negative. CameraCalibrationSignature () == in dng_color_spec() 129 if (negative.CameraCalibration1 ().Rows () == fChannels && in dng_color_spec() 130 negative.CameraCalibration1 ().Cols () == fChannels) in dng_color_spec() 133 fCameraCalibration1 = negative.CameraCalibration1 (); in dng_color_spec() 137 if (negative.CameraCalibration2 ().Rows () == fChannels && in dng_color_spec() 138 negative.CameraCalibration2 ().Cols () == fChannels) in dng_color_spec() 141 fCameraCalibration2 = negative.CameraCalibration2 (); in dng_color_spec() 152 fAnalogBalance [j] [j] = negative.AnalogBalance (j); in dng_color_spec()
|
D | 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,
|
D | dng_mosaic_info.h | 100 dng_negative &negative); 150 dng_negative &negative, 164 dng_negative &negative, 179 dng_negative &negative,
|
D | dng_lens_correction.h | 114 virtual bool IsValidForNegative (const dng_negative &negative) const; 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, 623 virtual void ProcessArea (dng_negative &negative,
|
/external/v8/src/ |
D | conversions-inl.h | 33 inline double SignedZero(bool negative) { in SignedZero() argument 34 return negative ? uint64_to_double(Double::kSignMask) : 0.0; in SignedZero() 50 bool negative = x < 0; in FastD2UI() local 51 if (negative) { in FastD2UI() 64 return negative ? ~result + 1 : result; in FastD2UI() 201 bool negative, in InternalStringToIntDouble() argument 208 if (current == end) return SignedZero(negative); in InternalStringToIntDouble() 286 if (negative) { in InternalStringToIntDouble() 294 return std::ldexp(static_cast<double>(negative ? -number : number), exponent); in InternalStringToIntDouble() 310 bool negative = false; in InternalStringToInt() local [all …]
|
D | conversions.cc | 178 bool negative = false; in IntToCString() local 182 negative = true; in IntToCString() 192 if (negative) buffer[--i] = '-'; in IntToCString() 204 bool negative = false; in DoubleToFixedCString() local 208 negative = true; in DoubleToFixedCString() 257 if (negative) builder.AddCharacter('-'); in DoubleToFixedCString() 270 bool negative, in CreateExponentialRepresentation() argument 284 if (negative) builder.AddCharacter('-'); in CreateExponentialRepresentation() 305 bool negative = false; in DoubleToExponentialCString() local 308 negative = true; in DoubleToExponentialCString() [all …]
|
/external/smali/smali/src/main/java/org/jf/smali/ |
D | LiteralTools.java | 54 boolean negative = false; in parseByte() 57 negative = true; in parseByte() 93 if (negative) { in parseByte() 124 boolean negative = false; in parseShort() 127 negative = true; in parseShort() 163 if (negative) { in parseShort() 188 boolean negative = false; in parseInt() 191 negative = true; in parseInt() 227 if (negative) { in parseInt() 258 boolean negative = false; in parseLong() [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | 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 difference [all …]
|
D | variance_halfpixvar16x16_h_media.asm | 53 sel r6, r6, lr ; select bytes with negative difference 57 usad8 r5, r6, lr ; calculate sum of negative differences 61 subs r8, r8, r5 ; subtract negative differences from sum 83 sel r6, r6, lr ; select bytes with negative difference 87 usad8 r5, r6, lr ; calculate sum of negative differences 92 sub r8, r8, r5 ; subtract negative differences from sum 114 sel r6, r6, lr ; select bytes with negative difference 118 usad8 r5, r6, lr ; calculate sum of negative differences 123 sub r8, r8, r5 ; subtract negative differences from sum 147 sel r6, r6, lr ; select bytes with negative difference [all …]
|
D | variance_halfpixvar16x16_v_media.asm | 54 sel r6, r6, lr ; select bytes with negative difference 58 usad8 r5, r6, lr ; calculate sum of negative differences 62 subs r8, r8, r5 ; subtract negative differences from sum 84 sel r6, r6, lr ; select bytes with negative difference 88 usad8 r5, r6, lr ; calculate sum of negative differences 93 sub r8, r8, r5 ; subtract negative differences from sum 115 sel r6, r6, lr ; select bytes with negative difference 119 usad8 r5, r6, lr ; calculate sum of negative differences 124 sub r8, r8, r5 ; subtract negative differences from sum 148 sel r6, r6, lr ; select bytes with negative difference [all …]
|
D | variance_halfpixvar16x16_hv_media.asm | 64 sel r6, r6, lr ; select bytes with negative difference 68 usad8 r5, r6, lr ; calculate sum of negative differences 72 subs r8, r8, r5 ; subtract negative differences from sum 105 sel r6, r6, lr ; select bytes with negative difference 109 usad8 r5, r6, lr ; calculate sum of negative differences 114 sub r8, r8, r5 ; subtract negative differences from sum 147 sel r6, r6, lr ; select bytes with negative difference 151 usad8 r5, r6, lr ; calculate sum of negative differences 156 sub r8, r8, r5 ; subtract negative differences from sum 189 sel r6, r6, lr ; select bytes with negative difference [all …]
|
/external/llvm/test/MC/AsmParser/ |
D | directive_rept-diagnostics.s | 24 .global negative symbol 25 .type negative,@object 26 negative: label 29 # CHECK: error: Count is negative
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_printf.cc | 46 bool negative) { in AppendNumber() argument 49 RAW_CHECK(base == 10 || !negative); in AppendNumber() 50 RAW_CHECK(absolute_value || !negative); in AppendNumber() 53 if (negative && minimal_num_length) in AppendNumber() 55 if (negative && pad_with_zero) in AppendNumber() 76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-'); in AppendNumber() 93 bool negative = (num < 0); in AppendSignedDecimal() local 94 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10, in AppendSignedDecimal() 95 minimal_num_length, pad_with_zero, negative); in AppendSignedDecimal()
|
/external/pdfium/third_party/bigint/ |
D | BigInteger.cc | 27 case negative: in BigInteger() 46 case negative: in BigInteger() 79 : BigInteger::negative; in signOf() 100 if (sign == negative) in convertToUnsignedPrimitive() 152 case negative: in compareTo() 257 sign = (a.sign == b.sign) ? positive : negative; in multiply() 316 q.sign = negative; in divideWithRemainder() 378 if (sign == negative) { in operator ++() 401 sign = negative; in operator --()
|
D | BigIntegerUtils.cc | 15 return (x.getSign() == BigInteger::negative) in bigIntegerToString() 26 … (s[0] == '-') ? BigInteger(stringToBigUnsigned(s.substr(1, s.length() - 1)), BigInteger::negative) in stringToBigInteger() 53 if (x.getSign() == BigInteger::negative) in operator <<()
|
/external/llvm/test/Transforms/InstSimplify/ |
D | 2011-11-23-MaskedBitsCrash.ll | 3 ; The mul can be proved to always overflow (turning a negative value 6 ; be assumed to have a negative value (since if not it has an undefined 7 ; value, which can be taken to be negative). We were reporting the mul 8 ; as being both positive and negative, firing an assertion!
|
/external/llvm/test/Transforms/CorrelatedValuePropagation/ |
D | basic.ll | 108 br i1 %cmp, label %negative, label %out 110 negative: 128 …p = phi i32 [ 1, %entry ], [ -1, %negative ], [ -1, %negative ], [ -1, %negative ], [ -1, %negativ… 132 %q = phi i32 [ 0, %negative ], [ 0, %negative ]
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | byte_io_unittest.cc | 28 T CreateTestValue(bool negative, uint8_t num_bytes) { in CreateTestValue() argument 31 val = (val << 8) + (negative ? (0xFF - i) : (i + 1)); in CreateTestValue() 33 if (negative && std::numeric_limits<T>::is_signed) { in CreateTestValue() 59 bool negative = neg > 0; in TestRead() local 62 T test_value = CreateTestValue<T>(negative, B); in TestRead() 81 bool negative = neg > 0; in TestWrite() local 84 T test_value = CreateTestValue<T>(negative, B); in TestWrite()
|
/external/bison/lib/ |
D | strtol.c | 241 int negative; in INTERNAL() local 298 negative = 1; in INTERNAL() 303 negative = 0; in INTERNAL() 307 negative = 0; in INTERNAL() 385 && i > (negative in INTERNAL() 397 return negative ? STRTOL_LONG_MIN : STRTOL_LONG_MAX; in INTERNAL() 402 return negative ? -i : i; in INTERNAL()
|
/external/autotest/server/site_tests/brillo_Invariants/ |
D | brillo_Invariants.py | 15 def assert_path_test(self, path, test, negative=False): argument 24 self.dut.run('test %s -%s %s' % ('!' if negative else '', test, path)) 49 self.assert_path_test('/fstab.device', 'e', negative=True)
|