Searched refs:totalLength (Results 1 - 25 of 36) sorted by last modified time

12

/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIONVRAM.cpp1438 UInt32 totalLength = 0; local
1445 totalLength = 0;
1457 totalLength += cnt2;
1462 data = OSData::withCapacity(totalLength);
/macosx-10.9.5/CF-855.17/
H A DCFICUConverters.c266 CFIndex totalLength = 0; local
274 totalLength += (destination - buffer);
279 if (NULL != usedByteLen) *usedByteLen = totalLength;
368 CFIndex totalLength = 0; local
376 totalLength += (destination - buffer);
381 if (NULL != usedCharLen) *usedCharLen = totalLength;
H A DCFStringEncodingConverter.c874 CFIndex totalLength = 0; local
882 totalLength += usedCharLen;
891 totalLength += usedCharLen;
895 return totalLength;
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A DsslCert.c50 size_t totalLength; local
71 totalLength = 0;
77 { totalLength += 3 + cert->derCert.length; /* 3 for encoded length field */
86 totalLength += 3 + SecCertificateGetLength(cert); /* 3 for encoded length field */
92 if ((err = SSLAllocBuffer(&certificate->contents, totalLength + head + 3)))
95 charPtr = SSLEncodeHandshakeHeader(ctx, certificate, SSL_HdskCert, totalLength+3);
97 charPtr = SSLEncodeSize(charPtr, totalLength, 3); /* Vector length */
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A DsslCert.c50 size_t totalLength; local
71 totalLength = 0;
77 { totalLength += 3 + cert->derCert.length; /* 3 for encoded length field */
86 totalLength += 3 + SecCertificateGetLength(cert); /* 3 for encoded length field */
92 if ((err = SSLAllocBuffer(&certificate->contents, totalLength + head + 3)))
95 charPtr = SSLEncodeHandshakeHeader(ctx, certificate, SSL_HdskCert, totalLength+3);
97 charPtr = SSLEncodeSize(charPtr, totalLength, 3); /* Vector length */
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A DsslCert.c50 size_t totalLength; local
71 totalLength = 0;
77 { totalLength += 3 + cert->derCert.length; /* 3 for encoded length field */
86 totalLength += 3 + SecCertificateGetLength(cert); /* 3 for encoded length field */
92 if ((err = SSLAllocBuffer(&certificate->contents, totalLength + head + 3)))
95 charPtr = SSLEncodeHandshakeHeader(ctx, certificate, SSL_HdskCert, totalLength+3);
97 charPtr = SSLEncodeSize(charPtr, totalLength, 3); /* Vector length */
/macosx-10.9.5/securityd-55199.3/src/
H A Ddbcrypto.cpp226 blob->totalLength = blob->startCryptoBlob + cryptoBlob.length();
380 blob->totalLength = blob->startCryptoBlob + wrappedKey.length();
H A Dtransition.cpp159 if (blob->totalLength != blobData.length())
H A Dlocaldatabase.cpp122 size_t totalLength = cryptor.encrypt(clear, cipher, remData); local
126 cipher.length(totalLength);
137 size_t totalLength = cryptor.decrypt(cipher, clear, remData); local
141 clear.length(totalLength);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A Dmarkup.cpp213 result.reserveCapacity(totalLength(m_reversedPrecedingMarkup) + length());
H A DMarkupAccumulator.cpp192 size_t MarkupAccumulator::totalLength(const Vector<String>& strings) function in class:WebCore::MarkupAccumulator
H A DMarkupAccumulator.h83 static size_t totalLength(const Vector<String>&);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DHeapSnapshotGridNodes.js223 if (items.endPosition < items.totalLength)
224 insertShowMoreButton.call(this, items.endPosition, items.totalLength, insertionIndex++);
237 if (range.to < items.totalLength)
245 insertShowMoreButton.call(this, items.startPosition, found ? range.from : items.totalLength, insertionIndex);
266 var newEndOfRange = nextRange ? nextRange.from : items.totalLength;
282 if (newEndOfRange === items.totalLength)
895 items.totalLength = this._addedCount + this._removedCount;
918 items.totalLength = this._addedCount + this._removedCount;
H A DHeapSnapshot.js1564 result.totalLength = this._iterationOrder.length;
H A DScriptFormatterWorker.js54 function getChunkCount(totalLength, chunkSize)
56 if (totalLength <= chunkSize)
59 var remainder = totalLength % chunkSize;
60 var partialLength = totalLength - remainder;
67 const totalLength = params.content.length;
69 const chunkCount = getChunkCount(totalLength, chunkSize);
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPathElement.cpp94 float totalLength = 0; local
95 getTotalLengthOfSVGPathByteStream(pathByteStream(), totalLength); local
96 return totalLength;
H A DSVGPathUtilities.cpp301 bool getTotalLengthOfSVGPathByteStream(SVGPathByteStream* stream, float& totalLength) argument
313 totalLength = builder->totalLength();
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGTextLayoutEngine.cpp181 float totalLength = 0; local
198 totalLength += length;
218 m_textPathSpacing = (desiredTextLength - totalLength) / totalCharacters;
220 m_textPathScaling = desiredTextLength / totalLength;
/macosx-10.9.5/webdavfs-352.92.2/mount.tproj/
H A Dwebdav_parse.c986 int totalLength = (int)(literalPtr - (char*)localname); local
987 if(totalLength >= (length+5)) {
988 str_ptr = (char*)malloc(totalLength+1);
989 memset(str_ptr,0,totalLength+1);
990 memcpy(str_ptr,localname,totalLength);
996 memcpy(&text_ptr->name[length+1],ampPointer,totalLength-length-4-1);
997 text_ptr->size = totalLength-4;
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderScrollbar.cpp319 int totalLength = startLength + endLength; local
320 return IntRect(x() + startLength, y(), width() - totalLength, height());
327 int totalLength = startLength + endLength; local
329 return IntRect(x(), y() + startLength, width(), height() - totalLength);
/macosx-10.9.5/Security-55471.14.18/include/securityd_client/
H A Dssblob.h120 uint32e totalLength; // end of crypto blob; end of entire blob member in class:Security::SecurityServer::DbBlob
139 size_t cryptoBlobLength() const { return totalLength - startCryptoBlob; }
141 uint32 length() const { return totalLength; }
158 uint32e totalLength; // end of crypto blob; end of entire blob member in class:Security::SecurityServer::KeyBlob
178 size_t cryptoBlobLength() const { return totalLength - startCryptoBlob; }
180 uint32 length() const { return totalLength; }
/macosx-10.9.5/Security-55471.14.18/libsecurityd/lib/
H A Dssblob.h120 uint32e totalLength; // end of crypto blob; end of entire blob member in class:Security::SecurityServer::DbBlob
139 size_t cryptoBlobLength() const { return totalLength - startCryptoBlob; }
141 uint32 length() const { return totalLength; }
158 uint32e totalLength; // end of crypto blob; end of entire blob member in class:Security::SecurityServer::KeyBlob
178 size_t cryptoBlobLength() const { return totalLength - startCryptoBlob; }
180 uint32 length() const { return totalLength; }
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DPathTraversalState.cpp124 float totalLength = 0; local
134 totalLength += length;
139 if (traversalState.m_totalLength + totalLength > traversalState.m_desiredLength)
140 return totalLength;
147 return totalLength;
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DfeeCipherFileAtom.c49 unsigned totalLength; // equals dataRepLen member in struct:__anon3681
128 header->totalLength = lengthOfByteRepCfileHdr() + cipherTextLen +
148 cfinst->dataRepLen = header->totalLength;
219 if(header->totalLength != dataRepLen) {
220 dbgLog(("Bad totalLength in cipherFile header\n"));
224 header->totalLength) ||
226 header->totalLength) ||
228 header->totalLength) ||
230 header->totalLength)) {
363 s += intToByteRep(hdr->totalLength,
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DfeeCipherFileAtom.c49 unsigned totalLength; // equals dataRepLen member in struct:__anon4396
128 header->totalLength = lengthOfByteRepCfileHdr() + cipherTextLen +
148 cfinst->dataRepLen = header->totalLength;
219 if(header->totalLength != dataRepLen) {
220 dbgLog(("Bad totalLength in cipherFile header\n"));
224 header->totalLength) ||
226 header->totalLength) ||
228 header->totalLength) ||
230 header->totalLength)) {
363 s += intToByteRep(hdr->totalLength,
[all...]

Completed in 345 milliseconds

12