Searched refs:remainingBytes (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/loader/
H A DProgressTracker.cpp228 long long remainingBytes, estimatedBytesForPendingRequests; local
238 remainingBytes = ((m_totalPageAndResourceBytesToLoad + estimatedBytesForPendingRequests) - m_totalBytesReceived);
239 if (remainingBytes > 0) // Prevent divide by 0.
240 percentOfRemainingBytes = (double)bytesReceived / (double)remainingBytes;
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecOTRSessionAKE.c125 size_t remainingBytes = (size_t)CFDataGetLength(dhPacket); local
129 require_noerr(ReadHeader(&messageBytes, &remainingBytes, &messageType), fail);
133 require_noerr(ReadLong(&messageBytes, &remainingBytes, & egxiLength), fail);
134 require(egxiLength <= remainingBytes, fail);
136 remainingBytes -= egxiLength;
139 require_noerr(ReadLong(&messageBytes, &remainingBytes, &dataLength), fail);
140 require(dataLength <= remainingBytes, fail);
/macosx-10.10/IONetworkingFamily-101/
H A DIOEthernetInterface.cpp1222 size_t remainingBytes; local
1237 remainingBytes = ETHER_ADDR_LEN*2;
1240 while(chain && remainingBytes)
1242 copyBytes = remainingBytes > mbuf_len( chain ) ? mbuf_len( chain ): remainingBytes;
1244 remainingBytes -= copyBytes;
1256 if(chain==0 || remainingBytes)
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/gif/
H A DGIFImageReader.cpp775 void GIFImageReader::setRemainingBytes(size_t remainingBytes) argument
777 ASSERT(remainingBytes <= m_data->size());
778 m_bytesRead = m_data->size() - remainingBytes;
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DPluginStream.cpp379 int remainingBytes = totalBytes - totalBytesDelivered; local
380 memmove(m_deliveryData->data(), m_deliveryData->data() + totalBytesDelivered, remainingBytes);
381 m_deliveryData->resize(remainingBytes);
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDUserLib.c1629 static UInt64 calculateBitMapSize(UInt64 partitionSize, UInt64 chunkSize, UInt64 * remainingBytes);
1964 // if remainingBytes is set, we are trying to fit the bitmap into the partition, the bitmap covers the data section of the partition.
1965 // if remainingBytes is not set, we are trying to find the size of a bitmap to cover the whole partition.
1970 static UInt64 calculateBitMapSize(UInt64 partitionSize, UInt64 chunkSize, UInt64 * remainingBytes) argument
1978 if (remainingBytes) {
1994 *remainingBytes = (availableBytes - bitMapSize) / chunkSize * chunkSize;

Completed in 219 milliseconds