Searched refs:totalBytes (Results 1 - 25 of 42) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DMediaPlayerPrivateAndroid.h80 virtual bool totalBytesKnown() const { return totalBytes() > 0; }
81 virtual unsigned totalBytes() const { return 0; } function in class:WebCore::MediaPlayerPrivate
/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
H A DOGGLoader.java176 int totalBytes = numSamples * streamHdr.getChannels() * 2;
181 // System.out.println("Bytes Calculated: " + totalBytes);
186 return Math.min(totalBytes, dataBytesTotal);
198 int totalBytes = getOggTotalBytes(Integer.MAX_VALUE);
200 return (float)totalBytes / bytesPerSec;
/external/webkit/Source/WebCore/fileapi/
H A DFileReaderLoader.h77 unsigned totalBytes() const { return m_totalBytes; } function in class:WebCore::FileReaderLoader
H A DFileReader.cpp227 dispatchEvent(ProgressEvent::create(type, true, m_loader ? m_loader->bytesLoaded() : 0, m_loader ? m_loader->totalBytes() : 0));
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DMediaPlayerPrivateWinCE.h74 unsigned totalBytes() const;
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashCodesTest.java102 int totalBytes = hashCode.bits() / 8;
104 for (int bytes = 0; bytes < totalBytes; bytes++) {
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.cpp80 totalBytes(0)
234 totalBytes += numBytes;
H A DPoolAlloc.h210 size_t totalBytes; // just an interesting statistic member in class:TPoolAllocator
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DMediaPlayerPrivatePhonon.h108 unsigned totalBytes() const;
H A DMediaPlayerPrivateQt.h84 unsigned totalBytes() const;
/external/webkit/Source/WebKit/chromium/public/
H A DWebMediaPlayer.h133 virtual unsigned long long totalBytes() const = 0;
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginStream.mm507 int32_t totalBytes = [m_deliveryData.get() length];
510 while (totalBytesDelivered < totalBytes) {
524 deliveryBytes = min(deliveryBytes, totalBytes - totalBytesDelivered);
541 if (totalBytesDelivered < totalBytes) {
542 NSMutableData *newDeliveryData = [[NSMutableData alloc] initWithCapacity:totalBytes - totalBytesDelivered];
543 [newDeliveryData appendBytes:(char *)[m_deliveryData.get() bytes] + totalBytesDelivered length:totalBytes - totalBytesDelivered];
/external/zlib/contrib/minizip/
H A Dmztools.c43 uLong totalBytes = 0; local
129 totalBytes += dataSize;
284 *bytesRecovered = totalBytes;
/external/webkit/Source/WebCore/plugins/
H A DPluginStream.cpp333 int32_t totalBytes = m_deliveryData->size();
338 while (totalBytesDelivered < totalBytes) {
355 deliveryBytes = min(deliveryBytes, totalBytes - totalBytesDelivered);
377 if (totalBytesDelivered < totalBytes) {
378 int remainingBytes = totalBytes - totalBytesDelivered;
/external/webkit/Source/WebCore/loader/cache/
H A DMemoryCache.h123 // - totalBytes: The maximum number of bytes that the cache should consume overall.
124 void setCapacities(unsigned minDeadBytes, unsigned maxDeadBytes, unsigned totalBytes);
H A DMemoryCache.cpp292 void MemoryCache::setCapacities(unsigned minDeadBytes, unsigned maxDeadBytes, unsigned totalBytes) argument
295 ASSERT(maxDeadBytes <= totalBytes);
298 m_capacity = totalBytes;
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundationObjC.h99 virtual unsigned totalBytes() const;
H A DMediaPlayerPrivateAVFoundation.h193 virtual unsigned totalBytes() const = 0;
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.h92 unsigned totalBytes() const;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DMediaPlayerPrivateQuickTimeWin.h111 unsigned totalBytes() const;
H A DMediaPlayerPrivateQuickTimeVisualContext.h103 unsigned totalBytes() const;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DMediaPlayerPrivateQTKit.h122 unsigned totalBytes() const;
/external/webkit/Source/WebKit/chromium/src/
H A DWebMediaPlayerClientImpl.h112 virtual unsigned totalBytes() const;
H A DWebMediaPlayerClientImpl.cpp409 unsigned WebMediaPlayerClientImpl::totalBytes() const function in class:WebKit::WebMediaPlayerClientImpl
412 return static_cast<unsigned>(m_webMediaPlayer->totalBytes());
/external/chromium/webkit/glue/
H A Dwebmediaplayer_impl.h244 virtual unsigned long long totalBytes() const;

Completed in 347 milliseconds

12