Home
last modified time | relevance | path

Searched refs:totalLength (Results 1 – 17 of 17) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
DSpline.java32 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/
DPathTraversalState.cpp125 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/
D2008-09-29-ReMatBug.ll42 %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/
DShader.cpp75 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/
DGCMBlockCipher.java45 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/
DRenderScrollbar.cpp325 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/
DMarkupAccumulator.h78 static size_t totalLength(const Vector<String>&);
79 size_t length() const { return totalLength(m_succeedingMarkup); } in length()
DMarkupAccumulator.cpp138 size_t MarkupAccumulator::totalLength(const Vector<String>& strings) in totalLength() function in WebCore::MarkupAccumulator
Dmarkup.cpp180 result.reserveInitialCapacity(totalLength(m_reversedPrecedingMarkup) + length()); in takeResults()
/external/webkit/Source/WebCore/platform/graphics/mac/
DComplexTextControllerATSUI.cpp104 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/
DSVGTextLayoutEngine.cpp187 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/
Dcom_svox_picottsengine.cpp762 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/
DStringPrototype.cpp263 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/
Dutrie2_builder.c350 … 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/
Darray.js72 var totalLength = 0;
/external/chromium/chrome/browser/renderer_host/
Drender_widget_host_view_mac.mm1699 NSUInteger totalLength = [fullArray count];
1700 if (index >= totalLength)
1702 NSUInteger length = MIN(totalLength - index, maxCount);
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0632008 (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