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

/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dheap.js45 totalBytes: 0,
67 heapEntry.totalBytes += alloc.totalBytes;
76 totalBytes: alloc.totalBytes,
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dmalloc-tree66 self.totalBytes = bytes
79 return self.totalBytes
82 self.totalBytes = self.totalBytes + bytes
105 byteStr = byteString(self.totalBytes)
108 print(' %s%s %s' % (self.level * ' ', byteString(self.totalBytes), self.name))
110 print('%s %s%s' % (byteString(self.totalBytes), prefix[:-1], self.name))
127 byteStr = byteString(self.totalBytes)
130 print(' %s%s %s' % (self.level * ' ', byteString(self.totalBytes), self.name))
132 print('%s %s%s' % (byteString(self.totalBytes), prefi
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/background/js/
H A Dfile_operation_manager.js361 event.totalBytes = task.totalBytes;
396 this.totalBytes = 0;
479 totalBytes: this.totalBytes,
565 // Fill totalBytes.
566 this.totalBytes = 0;
569 this.totalBytes += this.processingEntries[i][url].size;
889 this.totalBytes = 0;
891 this.totalBytes
[all...]
H A Dfile_operation_handler.js180 item.progressMax = event.status.totalBytes;
246 item.progressMax = event.totalBytes;
265 item.progressMax = event.totalBytes;
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderLoader.h94 long long totalBytes() const { return m_totalBytes; } function in class:WebCore::FileReaderLoader
H A DFileReader.cpp353 if (m_loader->totalBytes() >= 0)
354 dispatchEvent(ProgressEvent::create(type, true, m_loader->bytesLoaded(), m_loader->totalBytes()));
/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/chromium_org/third_party/angle/src/compiler/
H A DPoolAlloc.cpp58 totalBytes(0)
212 totalBytes += numBytes;
H A DPoolAlloc.h210 size_t totalBytes; // just an interesting statistic member in class:TPoolAllocator
/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/chromium_org/third_party/zlib/contrib/minizip/
H A Dmztools.c43 uLong totalBytes = 0; local
119 totalBytes += dataSize;
274 *bytesRecovered = totalBytes;
/external/zlib/src/contrib/minizip/
H A Dmztools.c43 uLong totalBytes = 0; local
129 totalBytes += dataSize;
284 *bytesRecovered = totalBytes;
/external/skia/tests/
H A DWriter32Test.cpp168 uint32_t totalBytes = writer->bytesWritten(); local
170 SkAutoMalloc readStorage(totalBytes);
174 reader.setMemory(readStorage.get(), totalBytes);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.h122 // - totalBytes: The maximum number of bytes that the cache should consume overall.
123 void setCapacities(size_t minDeadBytes, size_t maxDeadBytes, size_t totalBytes);
H A DMemoryCache.cpp283 void MemoryCache::setCapacities(size_t minDeadBytes, size_t maxDeadBytes, size_t totalBytes) argument
286 ASSERT(maxDeadBytes <= totalBytes);
290 m_capacity = totalBytes;
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
H A Dpopup.js334 item.getElement('meter').hidden = !could_progress || !item.totalBytes;
395 if (item.totalBytes && (item.state != 'complete')) {
398 formatBytes(item.totalBytes));
400 100 * item.bytesReceived / item.totalBytes) + '%';
H A Dbackground.js182 if (item.totalBytes) {
183 options.totalTotalBytes += item.totalBytes;
/external/chromium/webkit/glue/
H A Dwebmediaplayer_impl.h244 virtual unsigned long long totalBytes() const;
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.cpp114 int totalBytes = 0; local
117 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \
126 llvm::errs() << "Total bytes = " << totalBytes << "\n";
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.h248 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes);
H A DInternals.idl210 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes);
H A DInternals.cpp1589 Vector<unsigned long> Internals::setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes) argument
1595 memoryCache()->setCapacities(minDeadBytes, maxDeadBytes, totalBytes);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFastMalloc.cpp3430 size_t totalBytes = n * elem_size;
3433 if (n > 1 && elem_size && (totalBytes / elem_size) != n)
3436 void* result = do_malloc(totalBytes);
3437 memset(result, 0, totalBytes);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 569 milliseconds