/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/ |
D | AnimatableLengthTest.cpp | 26 EXPECT_EQ(Length(0, Fixed), create(Length(0, Fixed))->length(1, ValueRangeAll)); in TEST() 28 EXPECT_EQ(Length(10, Fixed), create(Length(10, Fixed))->length(1, ValueRangeAll)); in TEST() 30 EXPECT_EQ(Length(-10, Fixed), create(Length(-10, Fixed))->length(1, ValueRangeAll)); in TEST() 38 EXPECT_EQ(Length(10, Fixed), create(Length(10, Fixed))->length(1, ValueRangeNonNegative)); in TEST() 40 EXPECT_EQ(Length(0, Fixed), create(Length(-10, Fixed))->length(1, ValueRangeNonNegative)); in TEST() 48 EXPECT_EQ(Length(4, Fixed), create(Length(10, Fixed), 5)->length(2, ValueRangeAll)); in TEST() 57 EXPECT_TRUE(create(Length(10, Fixed))->equals(create(Length(10, Fixed)).get())); in TEST() 59 EXPECT_FALSE(create(Length(10, Fixed))->equals(create(Length(10, Percent)).get())); in TEST() 60 EXPECT_FALSE(create(Length(0, Percent))->equals(create(Length(0, Fixed)).get())); in TEST() 68 …lue::interpolate(create(Length(10, Fixed)).get(), create(Length(0, Fixed)).get(), 0.2)->equals(cre… in TEST() [all …]
|
/external/chromium_org/skia/ext/ |
D | convolver.h | 44 typedef short Fixed; typedef 53 static Fixed FloatToFixed(float f) { in FloatToFixed() 54 return static_cast<Fixed>(f * (1 << kShiftBits)); in FloatToFixed() 56 static unsigned char FixedToChar(Fixed x) { in FixedToChar() 59 static float FixedToFloat(Fixed x) { in FixedToFloat() 63 COMPILE_ASSERT(sizeof(Fixed) == 2, fixed_type_should_fit_in_float_mantissa); in FixedToFloat() 93 const Fixed* filter_values, 101 inline const Fixed* FilterForValue(int value_offset, in FilterForValue() 121 SK_API const Fixed* GetSingleFilter(int* specified_filter_length, 133 filter_values_.push_back(static_cast<Fixed>(0)); in PaddingForSIMD() [all …]
|
D | convolver.cc | 137 const ConvolutionFilter1D::Fixed* filter_values = in ConvolveHorizontally() 147 ConvolutionFilter1D::Fixed cur_filter = filter_values[filter_x]; in ConvolveHorizontally() 179 void ConvolveVertically(const ConvolutionFilter1D::Fixed* filter_values, in ConvolveVertically() 194 ConvolutionFilter1D::Fixed cur_filter = filter_values[filter_y]; in ConvolveVertically() 237 void ConvolveVertically(const ConvolutionFilter1D::Fixed* filter_values, in ConvolveVertically() 272 std::vector<Fixed> fixed_values; in AddFilter() 282 const Fixed* filter_values, in AddFilter() 323 const ConvolutionFilter1D::Fixed* ConvolutionFilter1D::GetSingleFilter( in GetSingleFilter() 338 const ConvolutionFilter1D::Fixed* filter_values, 401 const ConvolutionFilter1D::Fixed* filter_values = in BGRAConvolve2D() [all …]
|
/external/chromium_org/third_party/lcov/ |
D | CHANGES | 9 - Fixed handling of '<' in filenames 14 - Fixed man page description of default coverage rates 15 - Fixed HTML page title for directory pages 16 - Fixed handling of special characters in file and directory names 17 - Fixed directory prefix calculation 18 - Fixed warning when source files are found in root directory 30 - Fixed exclusion markers for --derive-func-data. Reported by bettse@gmail.com 31 - Fixed processing of pre-3.3 gcov files. Reported by georgysebastian@gmail.com 32 - Fixed handling of '<built-in>.gcov' files 33 - Fixed warning about unhandled .gcov files [all …]
|
/external/chromium_org/v8/ |
D | ChangeLog | 36 Fixed int vs. uintptr_t confusion (plus some cleanup on the way) (issue 169 Fixed inlining of constant values (issue 3529). 476 Fixed printing of external references (Chromium issue 392068). 710 X87: Fixed flooring division by a power of 2, once again.. (issue 3259). 712 Fixed undefined behavior in RNG (Chromium issue 377790). 733 MIPS: Fixed flooring division by a power of 2, once again.. (issue 736 Fixed flooring division by a power of 2, once again.. (issue 3259). 1182 MIPS: Fixed flooring division by -1 (issue 3259). 1184 Fixed flooring division by -1 on ARM (issue 3259). 1550 Fixed constant folding for Math.clz32 (Chromium issue 347906). [all …]
|
/external/deqp/modules/glshared/ |
D | glsVertexArrayTests.hpp | 315 class Fixed class in deqp::gls::GLValue 318 static Fixed create (deInt32 value) { Fixed v; v.m_value = value; return v; } in create() 321 inline Fixed operator+ (const Fixed& other) const { return create(m_value + other.getValue()); } in operator +() 322 inline Fixed operator* (const Fixed& other) const { return create(m_value * other.getValue()); } in operator *() 323 inline Fixed operator/ (const Fixed& other) const { return create(m_value / other.getValue()); } in operator /() 324 inline Fixed operator- (const Fixed& other) const { return create(m_value - other.getValue()); } in operator -() 326 inline Fixed& operator+= (const Fixed& other) { m_value += other.getValue(); return *this; } in operator +=() 327 inline Fixed& operator*= (const Fixed& other) { m_value *= other.getValue(); return *this; } in operator *=() 328 inline Fixed& operator/= (const Fixed& other) { m_value /= other.getValue(); return *this; } in operator /=() 329 inline Fixed& operator-= (const Fixed& other) { m_value -= other.getValue(); return *this; } in operator -=() [all …]
|
/external/strace/ |
D | NEWS | 30 * Fixed detaching from stopped processes. 31 * Fixed fanotify_mark decoding on 32bit architectures. 32 * Fixed offset decoding in preadv and pwritev syscalls. 33 * Fixed select decoding for glibc in _FORTIFY_SOURCE mode. 34 * Fixed decoding of epoll_ctl syscall with EPOLL_CTL_DEL argument. 35 * Fixed build when <sys/ptrace.h> and <linux/ptrace.h> conflict 71 * Fixed ERESTARTNOINTR leaking to userspace on ancient kernels 73 * Fixed kernel release string parsing 75 * Fixed decoding of *xattr syscalls 77 * Fixed handling of files with 64-bit inode numbers by 32-bit strace [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | LengthBox.h | 47 : m_left(Length(v, Fixed)) in LengthBox() 48 , m_right(Length(v, Fixed)) in LengthBox() 49 , m_top(Length(v, Fixed)) in LengthBox() 50 , m_bottom(Length(v, Fixed)) in LengthBox() 63 : m_left(Length(l, Fixed)) in LengthBox() 64 , m_right(Length(r, Fixed)) in LengthBox() 65 , m_top(Length(t, Fixed)) in LengthBox() 66 , m_bottom(Length(b, Fixed)) in LengthBox()
|
D | LengthFunctions.cpp | 40 case Fixed: in floatValueForLength() 68 case Fixed: in minimumValueForLength() 104 case Fixed: in valueForLength()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | BorderData.h | 38 BorderData() : m_topLeft(Length(0, Fixed), Length(0, Fixed)) in BorderData() 39 , m_topRight(Length(0, Fixed), Length(0, Fixed)) in BorderData() 40 , m_bottomLeft(Length(0, Fixed), Length(0, Fixed)) in BorderData() 41 , m_bottomRight(Length(0, Fixed), Length(0, Fixed)) in BorderData()
|
D | NinePieceImage.cpp | 63 , outset(Length(0, Fixed), Length(0, Fixed), Length(0, Fixed), Length(0, Fixed)) in NinePieceImageData()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderLayerReflectionInfo.cpp | 98 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 100 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 107 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 109 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 115 Length(0, Fixed), TransformOperation::Translate)); in updateAfterStyleChange() 117 … box().style()->boxReflect()->offset(), Length(0, Fixed), TransformOperation::Translate)); in updateAfterStyleChange() 124 Length(0, Fixed), TransformOperation::Translate)); in updateAfterStyleChange() 126 … box().style()->boxReflect()->offset(), Length(0, Fixed), TransformOperation::Translate)); in updateAfterStyleChange()
|
D | RenderTextControlSingleLine.cpp | 138 innerEditorRenderer->style()->setLogicalHeight(Length(desiredLogicalHeight, Fixed)); in layout() 141 viewPortRenderer->style()->setLogicalHeight(Length(desiredLogicalHeight, Fixed)); in layout() 150 containerRenderer->style()->setLogicalHeight(Length(logicalHeightLimit, Fixed)); in layout() 153 containerRenderer->style()->setLogicalHeight(Length(contentLogicalHeight(), Fixed)); in layout() 156 containerRenderer->style()->setLogicalHeight(Length(containerLogicalHeight, Fixed)); in layout() 176 …tyle()->setWidth(Length(innerEditorSize.width() - placeholderBox->borderAndPaddingWidth(), Fixed)); in layout() 177 …e()->setHeight(Length(innerEditorSize.height() - placeholderBox->borderAndPaddingHeight(), Fixed)); in layout() 348 textBlockStyle->setLogicalHeight(Length(m_desiredInnerEditorLogicalHeight, Fixed)); in createInnerEditorStyle()
|
/external/ipsec-tools/ |
D | NEWS | 6 o Fixed a NAT-T flag check 66 o Fixed single DES support; single DES users MUST UPGRADE. 78 o Fixed FWD policy support. 79 o Fixed IPv6 compilation. 94 o Fixed setkey to handle multiline commands again. 96 o Fixed racoon to only Warn if no CRL was found. 102 o Fixed NAT-T with more proposals (e.g. more crypto algos). 107 o Fixed adding "null" encryption via 'setkey'. 108 o Fixed segfault when using AES in Phase1 with OpenSSL>=0.9.7 109 o Fixed NAT-T in aggresive mode. [all …]
|
/external/markdown/docs/ |
D | CHANGE_LOG | 38 June 2008: Fixed issues with nested inline patterns and cleaned 46 (Thanks David Wolever). Fixed various bugs and added doc strings. 72 Nov 3, 2007: Fixed convert method to accept empty strings. 74 Oct 30, 2007: Fixed BOM removal (thanks Malcolm Tredinnick). Fixed 77 Oct 11, 2007: LineBreaks is now an inlinePattern. Fixed HR in 82 Oct 8, 2008: Fixed Lazy Blockquote. Fixed code block on first line. 83 Fixed empty inline image link. 88 March 18, 2007: Fixed or merged a bunch of minor bugs, including 92 Oct 10, 2006: Fixed a bug that caused some text to be lost after 103 July 9, 2006: Fixed the <!--@address.com> problem (Tracker #1501354). [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
D | TransformOperationsTest.cpp | 82 …ppend(TranslateTransformOperation::create(Length(-30, blink::Fixed), Length(20, blink::Fixed), 15,… in TEST() 83 …append(TranslateTransformOperation::create(Length(10, blink::Fixed), Length(10, blink::Fixed), 200… in TEST() 123 …on::create(Length(testTransforms[i][0][0], blink::Fixed), Length(testTransforms[i][0][1], blink::F… in TEST() 124 …on::create(Length(testTransforms[i][1][0], blink::Fixed), Length(testTransforms[i][1][1], blink::F… in TEST() 178 …on::create(Length(testTransforms[i][0][0], blink::Fixed), Length(testTransforms[i][0][1], blink::F… in TEST() 179 …on::create(Length(testTransforms[i][1][0], blink::Fixed), Length(testTransforms[i][1][1], blink::F… in TEST() 469 …erations().append(TranslateTransformOperation::create(Length(1, Fixed), Length(-5, Fixed), 1, Tran… in TEST() 471 …perations().append(TranslateTransformOperation::create(Length(2, Fixed), Length(4, Fixed), -1, Tra… in TEST() 473 …rations().append(TranslateTransformOperation::create(Length(13, Fixed), Length(-1, Fixed), 5, Tran… in TEST() 475 …erations().append(TranslateTransformOperation::create(Length(6, Fixed), Length(-2, Fixed), 3, Tran… in TEST()
|
/external/chromium_org/media/base/ |
D | audio_bus.cc | 41 template<class Format, class Fixed, Format Bias> 45 COMPILE_ASSERT((Bias == 0 && sizeof(Fixed) == sizeof(Format)) || in FromInterleavedInternal() 46 sizeof(Fixed) > sizeof(Format), invalid_deinterleave_types); in FromInterleavedInternal() 53 const Fixed v = static_cast<Fixed>(source[offset]) - Bias; in FromInterleavedInternal() 62 template<class Format, class Fixed, Format Bias> 64 int frames, void* dst, Fixed min, Fixed max) { in ToInterleavedInternal() 65 COMPILE_ASSERT((Bias == 0 && sizeof(Fixed) == sizeof(Format)) || in ToInterleavedInternal() 66 sizeof(Fixed) > sizeof(Format), invalid_interleave_types); in ToInterleavedInternal() 75 Fixed sample; in ToInterleavedInternal() 77 sample = v <= -1 ? min : static_cast<Fixed>(-v * min); in ToInterleavedInternal() [all …]
|
/external/tinyxml/ |
D | changes.txt | 2 - Fixed comment tags which were outputing as '<?--' instead of 6 - Fixed bad pointer to 'isspace' that could occur while parsing text. 29 - Fixed white space parsing in text to conform with the standard. 41 - Fixed a bug where comments couldn't be inside elements. 46 - Fixed TiXmlAttribute::Previous actually returning "next." Thanks 52 - Fixed a delete buf that should be a delete [] buf. 68 - Fixed bug where isalpha() and isalnum() would get called with a negative value for 70 - Fixed some errors codes that were not getting set. 78 - Fixed ReplaceChild bug, thanks to Tao Chen. 81 - Fixed hanging on loading a 0 length file. Thanks to Jeff Scozzafava. [all …]
|
/external/clang/lib/Frontend/ |
D | SerializedDiagnosticPrinter.cpp | 360 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID. in AddSourceLocationAbbrev() 361 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line. in AddSourceLocationAbbrev() 362 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column. in AddSourceLocationAbbrev() 363 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset; in AddSourceLocationAbbrev() 387 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); in EmitBlockInfoBlock() 405 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Diag level. in EmitBlockInfoBlock() 407 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Category. in EmitBlockInfoBlock() 408 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Mapped Diag ID. in EmitBlockInfoBlock() 409 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Text size. in EmitBlockInfoBlock() 416 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Category ID. in EmitBlockInfoBlock() [all …]
|
/external/openfst/ |
D | NEWS | 22 * Fixed cross-FST serialization issues (1.3.3) 23 * Fixed NGramFst off-by-one issue (1.3.3) 53 * Fixed numerous bugs (1.2 through 1.2.9) including: 67 - Fixed handling of final weight of start state in fstpush (1.2.8) 69 - Fixed missing <functional> includes (1.2.9) 70 - Fixed reused local variable names (1.2.9) 71 - Fixed passing string by reference in FstDraw args (1.2.9) 88 * Fixed library ordering issues esp. with newer GNU build tools (1.2.10) 92 * Fixed bug in acyclic minimization that led to non-minimal 94 * Fixed missing FST typedef in various matchers in matcher.h
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 1469 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // AccessSpecifier in WriteDeclsBlockAbbrevs() 1481 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isMutable in WriteDeclsBlockAbbrevs() 1501 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // AccessSpecifier in WriteDeclsBlockAbbrevs() 1513 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isMutable in WriteDeclsBlockAbbrevs() 1550 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isCompleteDefinition in WriteDeclsBlockAbbrevs() 1551 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // EmbeddedInDeclarator in WriteDeclsBlockAbbrevs() 1552 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFreeStanding in WriteDeclsBlockAbbrevs() 1553 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsCompleteDefinitionRequired in WriteDeclsBlockAbbrevs() 1563 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isScoped in WriteDeclsBlockAbbrevs() 1564 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isScopedUsingClassTag in WriteDeclsBlockAbbrevs() [all …]
|
/external/chromium_org/third_party/expat/files/ |
D | Changes | 38 - Fixed bugs #1515266, #1515600: The character data handler's calling 41 - Fixed bug #1690883: Expat failed on EBCDIC systems as it assumed 44 - Fixed xmlwf bug #1513566: "out of memory" error on file size zero. 45 - Fixed outline.c bug #1543233: missing a final XML_ParserFree() call. 62 - Fixed headers for use from C++. 83 - Fixed enum XML_Status issue (reported on SourceForge many 93 - Fixed a variety of bugs: see SF issues #458907, #609603, 102 - Fixed a variety of bugs: see SF issues #615606, #616863, 113 - Fixed UTF-8 decoding bug that caused legal UTF-8 to be rejected. 123 - Fixed a variety of bugs: see SF issues #580793, #434664, [all …]
|
/external/expat/ |
D | Changes | 38 - Fixed bugs #1515266, #1515600: The character data handler's calling 41 - Fixed bug #1690883: Expat failed on EBCDIC systems as it assumed 44 - Fixed xmlwf bug #1513566: "out of memory" error on file size zero. 45 - Fixed outline.c bug #1543233: missing a final XML_ParserFree() call. 62 - Fixed headers for use from C++. 83 - Fixed enum XML_Status issue (reported on SourceForge many 93 - Fixed a variety of bugs: see SF issues #458907, #609603, 102 - Fixed a variety of bugs: see SF issues #615606, #616863, 113 - Fixed UTF-8 decoding bug that caused legal UTF-8 to be rejected. 123 - Fixed a variety of bugs: see SF issues #580793, #434664, [all …]
|
/external/openssl/crypto/des/ |
D | VERSION | 1 Fixed the weak key values which were wrong :-( 8 Fixed a few tests in destest. Also added x86 assember for 89 Fixed the problem with des.pl under perl5. The patches were 131 Fixed a few bit with the distribution and the filenames. 136 Fixed ede3 cbc which I had broken in 3.16. I have also 185 Fixed a bug in 3cbc_encrypt() :-(. When making repeated calls 192 Fixed des_random_key to far more random, it was rather feeble 208 Fixed a few parameter parsing bugs in des (-3 and -b), thanks 220 Fixed a bug in non zero iv in 3cbc_enc. 225 Fixed TERMIO definition so the most sys V boxes will work :-) [all …]
|
/external/vixl/doc/ |
D | changelog.md | 6 + Fixed simulation of `frintn` and `frinta` for corner cases. 10 + Fixed Printf for mixed argument types, and use on real hardware. 34 + Fixed `smull`, `fmsub` and `sdiv` simulation. 35 + Fixed sign extension for W->X conversions using `sxtb`, `sxth` and `sxtw`.
|