/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Spline.java | 32 private float totalLength; field in Spline 179 totalLength = 0; in clearControlPoints() 186 totalLength = 0; in computeTotalLentgh() 198 totalLength += l; in computeTotalLentgh() 221 totalLength += l; in computeCatmulLength() 236 totalLength += l; in computeBezierLength() 329 return totalLength; in getTotalLength() 417 oc.write(totalLength, "totalLength", 0); in write() 439 totalLength = in.readFloat("totalLength", 0); in read()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | PathTraversalState.cpp | 125 float totalLength = 0.0f; in curveLength() local 134 totalLength += length; in curveLength() 139 if (traversalState.m_totalLength + totalLength > traversalState.m_desiredLength) in curveLength() 140 return totalLength; in curveLength() 147 return totalLength; in curveLength()
|
/external/llvm/test/CodeGen/X86/ |
D | 2008-09-29-ReMatBug.ll | 42 %8 = getelementptr i8* %bufptr.0.lcssa, i32 %totalLength.0.ph ; <i8*> [#uses=1] 47 %totalLength.0.ph = add i32 0, %totalLength.1.ph ; <i32> [#uses=2] 61 %totalLength.1.ph = phi i32 [ 0, %bb4 ], [ %totalLength.0.ph, %bb35 ] ; <i32> [#uses=1]
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
D | Shader.cpp | 75 int totalLength = 0; in setSource() local 81 totalLength += length[i]; in setSource() 85 totalLength += (int)strlen(string[i]); in setSource() 89 mSource = new char[totalLength + 1]; in setSource() 109 mSource[totalLength] = '\0'; in setSource()
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/ |
D | GCMBlockCipher.java | 45 private long totalLength; field in GCMBlockCipher 161 this.totalLength = 0; in init() 261 packLength(totalLength * 8, X, 8); in doFinal() 311 totalLength = 0; in reset() 364 totalLength += bufCount; in gCTRBlock()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderScrollbar.cpp | 325 int totalLength = startLength + endLength; in trackRect() local 326 return IntRect(x() + startLength, y(), width() - totalLength, height()); in trackRect() 333 int totalLength = startLength + endLength; in trackRect() local 335 return IntRect(x(), y() + startLength, width(), height() - totalLength); in trackRect()
|
/external/webkit/Source/WebCore/editing/ |
D | MarkupAccumulator.h | 78 static size_t totalLength(const Vector<String>&); 79 size_t length() const { return totalLength(m_succeedingMarkup); } in length()
|
D | MarkupAccumulator.cpp | 138 size_t MarkupAccumulator::totalLength(const Vector<String>& strings) in totalLength() function in WebCore::MarkupAccumulator
|
D | markup.cpp | 180 result.reserveInitialCapacity(totalLength(m_reversedPrecedingMarkup) + length()); in takeResults()
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | ComplexTextControllerATSUI.cpp | 104 static void shapeArabic(const UChar* source, UChar* dest, unsigned totalLength) in shapeArabic() argument 107 while (shapingStart < totalLength) { in shapeArabic() 113 … for (shapingEnd = shapingStart; !foundLigatureSpace && shapingEnd < totalLength - 1; ++shapingEnd) in shapeArabic() 137 shapingEnd = totalLength; in shapeArabic()
|
/external/webkit/Source/WebCore/rendering/svg/ |
D | SVGTextLayoutEngine.cpp | 187 float totalLength = 0; in beginTextPathLayout() local 204 totalLength += length; in beginTextPathLayout() 223 m_textPathSpacing = (desiredTextLength - totalLength) / totalCharacters; in beginTextPathLayout() 225 m_textPathScaling = desiredTextLength / totalLength; in beginTextPathLayout()
|
/external/svox/pico/tts/ |
D | com_svox_picottsengine.cpp | 762 int start, totalLength, i, j; in createPhonemeString() local 778 start = 0; totalLength = 0; i = 0; j = 0; in createPhonemeString() 788 totalLength += strlen(words[j-1]); in createPhonemeString() 796 totalLength += strlen(words[j]); in createPhonemeString() 797 convstring = new char[totalLength + 1]; in createPhonemeString()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | StringPrototype.cpp | 263 int totalLength = 0; in jsSpliceSubstringsWithSeparators() local 265 totalLength += substringRanges[i].length; in jsSpliceSubstringsWithSeparators() 267 totalLength += separators[i].length(); in jsSpliceSubstringsWithSeparators() 269 if (totalLength == 0) in jsSpliceSubstringsWithSeparators() 273 PassRefPtr<StringImpl> impl = StringImpl::tryCreateUninitialized(totalLength, buffer); in jsSpliceSubstringsWithSeparators()
|
/external/icu4c/common/ |
D | utrie2_builder.c | 350 … long totalLength=(long)sizeof(UTrieHeader)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2); in utrie_printLengths() local 352 indexLength, dataLength, totalLength); in utrie_printLengths() 359 … long totalLength=(long)sizeof(UTrie2Header)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2); in utrie2_printLengths() local 361 which, indexLength, dataLength, totalLength); in utrie2_printLengths()
|
/external/v8/src/ |
D | array.js | 72 var totalLength = 0;
|
/external/chromium/chrome/browser/renderer_host/ |
D | render_widget_host_view_mac.mm | 1699 NSUInteger totalLength = [fullArray count]; 1700 if (index >= totalLength) 1702 NSUInteger length = MIN(totalLength - index, maxCount);
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 32008 (WebCore::MarkupAccumulator::totalLength): Added; extracted from takeResults. 32011 (WebCore::MarkupAccumulator::length): Added; calls totalLength. 32015 … (WebCore::StyledMarkupAccumulator::takeResults): Calls length, totalLength, and concatenateMarkup. 60403 Test: svg/dom/path-totalLength.html
|