/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()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/ |
D | TarUtils.java | 173 final boolean negative = buffer[offset] == (byte) 0xff; in parseOctalOrBinary() 175 return parseBinaryLong(buffer, offset, length, negative); in parseOctalOrBinary() 177 return parseBinaryBigInteger(buffer, offset, length, negative); in parseOctalOrBinary() 182 final boolean negative) { in parseBinaryLong() argument 193 if (negative) { in parseBinaryLong() 198 return negative ? -val : val; in parseBinaryLong() 204 final boolean negative) { in parseBinaryBigInteger() argument 208 if (negative) { in parseBinaryBigInteger() 218 return negative ? -val.longValue() : val.longValue(); in parseBinaryBigInteger() 477 final boolean negative = value < 0; in formatLongOctalOrBinaryBytes() [all …]
|
/external/libgsm/add-test/ |
D | add_test.dta | 28 ' negative operands 67 ' negative operands 107 ' negative operands 147 ' negative operands 201 ' negative operands 237 ' negative operands 280 ' negative operands 336 ' negative 353 ' negative operand 374 ' negative operand [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cwise_ops_unary_test.py | 198 self._compareBoth(x, np.negative, math_ops.negative) 199 self._compareBoth(x, np.negative, _NEG) 236 self._compareBothSparse(x, np.negative, math_ops.negative) 255 self._compareBoth(x, np.negative, math_ops.negative) 256 self._compareBoth(x, np.negative, _NEG) 291 self._compareBothSparse(x, np.negative, math_ops.negative) 308 self._compareBoth(x, np.negative, math_ops.negative) 309 self._compareBoth(x, np.negative, _NEG) 345 self._compareBothSparse(x, np.negative, math_ops.negative) 361 self._compareBoth(x, np.negative, math_ops.negative) [all …]
|
/external/libtextclassifier/abseil-cpp/absl/strings/ |
D | charconv.cc | 285 bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative, in HandleEdgeCase() argument 305 *value = negative ? -FloatTraits<FloatType>::MakeNan(nan_argument) in HandleEdgeCase() 310 *value = negative ? -std::numeric_limits<FloatType>::infinity() in HandleEdgeCase() 315 *value = negative ? -0.0 : 0.0; in HandleEdgeCase() 328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument 332 *value = negative ? -std::numeric_limits<FloatType>::max() in EncodeResult() 337 *value = negative ? -0.0 : 0.0; in EncodeResult() 341 calculated.exponent, negative); in EncodeResult() 605 bool negative = false; in FromCharsImpl() local 608 negative = true; in FromCharsImpl() [all …]
|
/external/abseil-cpp/absl/strings/ |
D | charconv.cc | 285 bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative, in HandleEdgeCase() argument 305 *value = negative ? -FloatTraits<FloatType>::MakeNan(nan_argument) in HandleEdgeCase() 310 *value = negative ? -std::numeric_limits<FloatType>::infinity() in HandleEdgeCase() 315 *value = negative ? -0.0 : 0.0; in HandleEdgeCase() 328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument 332 *value = negative ? -std::numeric_limits<FloatType>::max() in EncodeResult() 337 *value = negative ? -0.0 : 0.0; in EncodeResult() 341 calculated.exponent, negative); in EncodeResult() 605 bool negative = false; in FromCharsImpl() local 608 negative = true; in FromCharsImpl() [all …]
|
/external/angle/third_party/abseil-cpp/absl/strings/ |
D | charconv.cc | 285 bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative, in HandleEdgeCase() argument 305 *value = negative ? -FloatTraits<FloatType>::MakeNan(nan_argument) in HandleEdgeCase() 310 *value = negative ? -std::numeric_limits<FloatType>::infinity() in HandleEdgeCase() 315 *value = negative ? -0.0 : 0.0; in HandleEdgeCase() 328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument 332 *value = negative ? -std::numeric_limits<FloatType>::max() in EncodeResult() 337 *value = negative ? -0.0 : 0.0; in EncodeResult() 341 calculated.exponent, negative); in EncodeResult() 605 bool negative = false; in FromCharsImpl() local 608 negative = true; in FromCharsImpl() [all …]
|
/external/openscreen/third_party/abseil/src/absl/strings/ |
D | charconv.cc | 285 bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative, in HandleEdgeCase() argument 305 *value = negative ? -FloatTraits<FloatType>::MakeNan(nan_argument) in HandleEdgeCase() 310 *value = negative ? -std::numeric_limits<FloatType>::infinity() in HandleEdgeCase() 315 *value = negative ? -0.0 : 0.0; in HandleEdgeCase() 328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument 332 *value = negative ? -std::numeric_limits<FloatType>::max() in EncodeResult() 337 *value = negative ? -0.0 : 0.0; in EncodeResult() 341 calculated.exponent, negative); in EncodeResult() 605 bool negative = false; in FromCharsImpl() local 608 negative = true; in FromCharsImpl() [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
D | charconv.cc | 285 bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative, in HandleEdgeCase() argument 305 *value = negative ? -FloatTraits<FloatType>::MakeNan(nan_argument) in HandleEdgeCase() 310 *value = negative ? -std::numeric_limits<FloatType>::infinity() in HandleEdgeCase() 315 *value = negative ? -0.0 : 0.0; in HandleEdgeCase() 328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument 332 *value = negative ? -std::numeric_limits<FloatType>::max() in EncodeResult() 337 *value = negative ? -0.0 : 0.0; in EncodeResult() 341 calculated.exponent, negative); in EncodeResult() 605 bool negative = false; in FromCharsImpl() local 608 negative = true; in FromCharsImpl() [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/strings/ |
D | charconv.cc | 285 bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative, in HandleEdgeCase() argument 305 *value = negative ? -FloatTraits<FloatType>::MakeNan(nan_argument) in HandleEdgeCase() 310 *value = negative ? -std::numeric_limits<FloatType>::infinity() in HandleEdgeCase() 315 *value = negative ? -0.0 : 0.0; in HandleEdgeCase() 328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument 332 *value = negative ? -std::numeric_limits<FloatType>::max() in EncodeResult() 337 *value = negative ? -0.0 : 0.0; in EncodeResult() 341 calculated.exponent, negative); in EncodeResult() 605 bool negative = false; in FromCharsImpl() local 608 negative = true; in FromCharsImpl() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | AdoptingModifierStore.java | 19 private final Modifier negative; field in AdoptingModifierStore 29 …c AdoptingModifierStore(Modifier positive, Modifier posZero, Modifier negZero, Modifier negative) { in AdoptingModifierStore() argument 33 this.negative = negative; in AdoptingModifierStore() 49 this.negative = null; in AdoptingModifierStore() 75 return negative; in getModifierWithoutPlural()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | AdoptingModifierStore.java | 17 private final Modifier negative; field in AdoptingModifierStore 27 …c AdoptingModifierStore(Modifier positive, Modifier posZero, Modifier negZero, Modifier negative) { in AdoptingModifierStore() argument 31 this.negative = negative; in AdoptingModifierStore() 47 this.negative = null; in AdoptingModifierStore() 73 return negative; in getModifierWithoutPlural()
|
/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/protobuf/src/google/protobuf/util/ |
D | time_util.cc | 208 bool negative = (value[0] == '-'); in FromString() local 209 int sign_length = (negative ? 1 : 0); in FromString() 231 if (negative) { in FromString() 383 void ToUint128(const Duration& value, uint128* result, bool* negative) { in ToUint128() argument 385 *negative = true; in ToUint128() 389 *negative = false; in ToUint128() 395 void ToDuration(const uint128& value, bool negative, Duration* duration) { in ToDuration() argument 399 if (negative) { in ToDuration() 421 bool negative; in operator *=() local 423 ToUint128(d, &value, &negative); in operator *=() [all …]
|
/external/dng_sdk/fuzzer/ |
D | dng_parser_fuzzer.cpp | 18 std::unique_ptr<dng_negative> negative(host.Make_dng_negative()); in LLVMFuzzerTestOneInput() local 26 negative->Parse(host, stream, info); in LLVMFuzzerTestOneInput() 27 negative->PostParse(host, stream, info); in LLVMFuzzerTestOneInput() 28 negative->ReadStage1Image(host, stream, info); in LLVMFuzzerTestOneInput()
|
/external/tensorflow/tensorflow/security/advisory/ |
D | tfsa-2020-009.md | 1 ## TFSA-2020-009: Segfault and data corruption caused by negative indexing in TFLite 7 To mimic Python's indexing with negative values, TFLite uses `ResolveAxis` to 8 convert negative values to positive indices. However, the only check that the 12 // Handle negative index. A positive index 'p_idx' can be represented as a 13 // negative index 'n_idx' as: n_idx = p_idx-num_dims 20 negative index. This, in turn, results in accessing data out of bounds which
|
/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/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/pdfium/third_party/bigint/ |
D | BigInteger.cc | 28 case negative: in BigInteger() 47 case negative: in BigInteger() 80 : BigInteger::negative; in signOf() 101 if (sign == negative) in convertToUnsignedPrimitive() 153 case negative: in compareTo() 258 sign = (a.sign == b.sign) ? positive : negative; in multiply() 317 q.sign = negative; in divideWithRemainder() 379 if (sign == negative) { in operator ++() 405 sign = 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!
|