Searched defs:totalBytes (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/fileapi/
H A DFileReaderLoader.h77 unsigned totalBytes() const { return m_totalBytes; } function in class:WebCore::FileReaderLoader
/external/webkit/Source/JavaScriptCore/wtf/
H A DFastMalloc.cpp269 size_t totalBytes = n_elements * element_size; local
270 if (n_elements > 1 && element_size && (totalBytes / element_size) != n_elements || (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes))
273 totalBytes += sizeof(AllocAlignmentInteger);
274 void* result = malloc(totalBytes);
278 memset(result, 0, totalBytes);
3885 size_t totalBytes = n * elem_size;
3888 if (n > 1 && elem_size && (totalBytes / elem_size) != n)
3892 if (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes) // If overflow would occur...
3895 totalBytes
[all...]
/external/zlib/contrib/minizip/
H A Dmztools.c43 uLong totalBytes = 0; local
119 totalBytes += dataSize;
274 *bytesRecovered = totalBytes;
/external/webkit/Source/WebCore/platform/graphics/android/
H A DMediaPlayerPrivateAndroid.h80 virtual bool totalBytesKnown() const { return totalBytes() > 0; }
81 virtual unsigned totalBytes() const { return 0; } function in class:WebCore::MediaPlayerPrivate
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.h210 size_t totalBytes; // just an interesting statistic member in class:TPoolAllocator
/external/webkit/Source/WebCore/loader/cache/
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/qt/
H A DMediaPlayerPrivatePhonon.cpp328 unsigned MediaPlayerPrivatePhonon::totalBytes() const function in class:WebCore::MediaPlayerPrivatePhonon
H A DMediaPlayerPrivateQt.cpp371 unsigned MediaPlayerPrivateQt::totalBytes() const function in class:WebCore::MediaPlayerPrivateQt
/external/webkit/Source/WebKit/chromium/src/
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.cc624 unsigned long long WebMediaPlayerImpl::totalBytes() const { function in class:webkit_glue::WebMediaPlayerImpl
870 if (bytesLoaded() == totalBytes() &&
/external/clang/lib/AST/
H A DDeclBase.cpp86 int totalBytes = 0; local
89 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \
98 llvm::errs() << "Total bytes = " << totalBytes << "\n";
/external/webkit/Source/WebCore/platform/graphics/
H A DMediaPlayer.cpp129 virtual unsigned totalBytes() const { return 0; } function in class:WebCore::NullMediaPlayerPrivate
/external/webkit/Source/WebCore/platform/graphics/win/
H A DMediaPlayerPrivateQuickTimeWin.cpp454 return totalBytes() * maxTime / dur;
457 unsigned MediaPlayerPrivate::totalBytes() const function in class:WebCore::MediaPlayerPrivate
H A DMediaPlayerPrivateQuickTimeVisualContext.cpp600 return totalBytes() * maxTime / dur;
603 unsigned MediaPlayerPrivateQuickTimeVisualContext::totalBytes() const function in class:WebCore::MediaPlayerPrivateQuickTimeVisualContext
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.cpp899 unsigned loaded = totalBytes() * maxTimeLoaded() / m_mediaDuration;
904 unsigned MediaPlayerPrivateGStreamer::totalBytes() const function in class:WebCore::MediaPlayerPrivateGStreamer
915 LOG_VERBOSE(Media, "totalBytes %" G_GINT64_FORMAT, length);
948 LOG_VERBOSE(Media, "totalBytes %" G_GINT64_FORMAT, length);
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DGraphicsContext3DOpenGL.cpp125 int totalBytes = rowBytes * m_currentHeight; local
127 OwnArrayPtr<unsigned char> pixels = adoptArrayPtr(new unsigned char[totalBytes]);
131 readRenderingResults(pixels.get(), totalBytes);
134 for (int i = 0; i < totalBytes; i += 4) {
155 int totalBytes = 4 * m_currentWidth * m_currentHeight; local
157 readRenderingResults(pixels, totalBytes);
160 for (int i = 0; i < totalBytes; i += 4)
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp3934 quint64 QWebPage::totalBytes() const function in class:QWebPage
3943 \sa totalBytes(), loadProgress()

Completed in 649 milliseconds