HomeSort by relevance Sort by last modified time
    Searched defs:totalBytes (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/WebCore/fileapi/
FileReaderLoader.h 77 unsigned totalBytes() const { return m_totalBytes; }
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferAdapter.java 102 long totalBytes = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES));
112 mContext, totalBytes));
115 mContext, totalBytes));
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodesTest.java 102 int totalBytes = hashCode.bits() / 8;
104 for (int bytes = 0; bytes < totalBytes; bytes++) {
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp 269 size_t totalBytes = n_elements * element_size;
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);
    [all...]
  /external/zlib/contrib/minizip/
mztools.c 43 uLong totalBytes = 0;
129 totalBytes += dataSize;
284 *bytesRecovered = totalBytes;
  /external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
OGGLoader.java 176 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/ThirdParty/ANGLE/src/compiler/
PoolAlloc.h 210 size_t totalBytes; // just an interesting statistic
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
MediaPlayerPrivateAndroid.h 80 virtual bool totalBytesKnown() const { return totalBytes() > 0; }
81 virtual unsigned totalBytes() const { return 0; }
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 328 unsigned MediaPlayerPrivatePhonon::totalBytes() const
MediaPlayerPrivateQt.cpp 371 unsigned MediaPlayerPrivateQt::totalBytes() const
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 126 int totalBytes = 0;
135 totalBytes = cursor.getInt(
141 numBytesReceivedSoFar + ", totalBytes: " + totalBytes);
142 if (totalBytes == 0) {
146 if (numBytesReceivedSoFar * 100 / totalBytes >= progress) {
155 numBytesReceivedSoFar + ", totalBytes: " + totalBytes);
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadAdapter.java 143 long totalBytes = mCursor.getLong(mTotalBytesColumnId);
145 if (totalBytes >= 0) {
146 sizeText = Formatter.formatFileSize(mContext, totalBytes);
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 409 unsigned WebMediaPlayerClientImpl::totalBytes() const
412 return static_cast<unsigned>(m_webMediaPlayer->totalBytes());
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 624 unsigned long long WebMediaPlayerImpl::totalBytes() const {
870 if (bytesLoaded() == totalBytes() &&
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 454 return totalBytes() * maxTime / dur;
457 unsigned MediaPlayerPrivate::totalBytes() const
MediaPlayerPrivateQuickTimeVisualContext.cpp 600 return totalBytes() * maxTime / dur;
603 unsigned MediaPlayerPrivateQuickTimeVisualContext::totalBytes() const
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 79 private long totalBytes;
112 totalBytes = 0;
130 totalBytes = in.readLong();
143 out.writeLong(totalBytes);
158 totalBytes = total(rxBytes) + total(txBytes);
173 totalBytes = total(rxBytes) + total(txBytes);
227 return totalBytes;
337 totalBytes += entry.rxBytes + entry.txBytes;
457 // TODO: subtract removed values from totalBytes
  /dalvik/hit/src/com/android/hit/
HprofParser.java 536 int totalBytes = numElements * mIdSize;
537 byte[] data = new byte[totalBytes];
549 return mIdSize + 4 + 4 + mIdSize + totalBytes;
559 int totalBytes = numElements * size;
560 byte[] data = new byte[totalBytes];
570 return mIdSize + 4 + 4 + 1 + totalBytes;
  /external/clang/lib/AST/
DeclBase.cpp 103 int totalBytes = 0;
106 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \
115 llvm::errs() << "Total bytes = " << totalBytes << "\n";
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 129 virtual unsigned totalBytes() const { return 0; }
  /frameworks/av/cmds/stagefright/
stagefright.cpp 306 int64_t totalBytes = 0;
347 totalBytes += buffer->range_length();
390 printf("avg. %.2f KB/sec\n", totalBytes / 1024 * 1E6 / delay);
392 printf("decoded a total of %lld bytes\n", totalBytes);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 362 long totalBytes = mCacheStorageInfo.getTotalBytes();
368 if (totalBytes == 0) {
376 progressBar.setProgress((int) (usedBytes * PROGRESS_BAR_MAX / totalBytes));
378 (int) (expectedBytes * PROGRESS_BAR_MAX / totalBytes));
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.cpp 899 unsigned loaded = totalBytes() * maxTimeLoaded() / m_mediaDuration;
904 unsigned MediaPlayerPrivateGStreamer::totalBytes() const
915 LOG_VERBOSE(Media, "totalBytes %" G_GINT64_FORMAT, length);
948 LOG_VERBOSE(Media, "totalBytes %" G_GINT64_FORMAT, length);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 125 int totalBytes = rowBytes * m_currentHeight;
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;
157 readRenderingResults(pixels, totalBytes);
160 for (int i = 0; i < totalBytes; i += 4)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp     [all...]

Completed in 1939 milliseconds

1 2