HomeSort by relevance Sort by last modified time
    Searched refs:totalBytes (Results 26 - 33 of 33) sorted by null

12

  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp 260 size_t totalBytes = n_elements * element_size;
261 if (n_elements > 1 && element_size && (totalBytes / element_size) != n_elements || (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes))
264 totalBytes += sizeof(AllocAlignmentInteger);
265 void* result = malloc(totalBytes);
269 memset(result, 0, totalBytes);
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 381 return totalBytes() * maxTime / dur;
384 unsigned MediaPlayerPrivate::totalBytes() const
  /external/webkit/WebCore/platform/graphics/
MediaPlayer.cpp 104 virtual unsigned totalBytes() const { return 0; }
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 278 unsigned MediaPlayerPrivate::totalBytes() const
  /external/webkit/WebKitTools/Scripts/
run-webkit-tests     [all...]
  /external/webkit/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm 833 return totalBytes() * maxTimeLoaded() / dur;
836 unsigned MediaPlayerPrivate::totalBytes() const
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
MediaPlayerPrivateGStreamer.cpp 648 return 1; // totalBytes() * maxTime / dur;
651 unsigned MediaPlayerPrivate::totalBytes() const
653 LOG_VERBOSE(Media, "totalBytes");
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp     [all...]

Completed in 462 milliseconds

12