/external/chromium_org/tools/ |
D | include_tracer.py | 145 total_bytes = 0 157 return total_bytes 165 return total_bytes 183 total_bytes += Walk( 187 total_bytes += Walk( 190 total_bytes += Walk( 192 return total_bytes + len("".join(lines))
|
/external/chromium_org/content/public/test/ |
D | mock_download_manager.cc | 23 int64 total_bytes, in CreateDownloadItemAdapter() argument 36 total_bytes(total_bytes), in CreateDownloadItemAdapter() 54 total_bytes(rhs.total_bytes), in CreateDownloadItemAdapter() 74 total_bytes == rhs.total_bytes && in operator ==() 103 int64 total_bytes, in CreateDownloadItem() argument 110 end_time, etag, last_modified, received_bytes, total_bytes, state, in CreateDownloadItem()
|
D | mock_download_manager.h | 39 int64 total_bytes; member 56 int64 total_bytes, 109 int64 total_bytes,
|
/external/chromium_org/content/browser/download/ |
D | download_create_info.cc | 15 int64 total_bytes, in DownloadCreateInfo() argument 21 total_bytes(total_bytes), in DownloadCreateInfo() 29 : total_bytes(0), in DownloadCreateInfo() 49 total_bytes); in DebugString()
|
D | save_types.cc | 19 total_bytes(0), in SaveFileCreateInfo() 28 total_bytes(0), in SaveFileCreateInfo()
|
D | download_create_info.h | 28 int64 total_bytes, 52 int64 total_bytes; member
|
/external/chromium_org/tools/memory_watcher/scripts/ |
D | memtrace.pl | 40 my $total_bytes = 0; 68 $total_bytes += $1; 126 if (0 == $total_bytes) { $total_bytes = 1; } 127 … printf "%11s\t%3.2f%%\t%s\n", comma_print($leaks{$key}), (100* $leaks{$key} / $total_bytes), $key;
|
D | summary.pl | 19 my $total_bytes = 0; 130 $total_bytes += $bytes; 139 …printf "%11s\t(%3.2f%%)\t%s\n", comma_print($leaks{$key}), (100* $leaks{$key} / $total_bytes), $ke…
|
D | memprof.pl | 65 $total_bytes += $1; 96 … printf "%11s\t%3.2f%%\t%s\n", comma_print($leaks{$key}), (100* $leaks{$key} / $total_bytes), $key;
|
/external/chromium/chrome/browser/history/ |
D | download_create_info.cc | 16 int64 total_bytes, in DownloadCreateInfo() argument 25 total_bytes(total_bytes), in DownloadCreateInfo() 42 total_bytes(0), in DownloadCreateInfo() 78 total_bytes, in DebugString()
|
D | download_types.cc | 11 int64 total_bytes, in DownloadCreateInfo() argument 19 total_bytes(total_bytes), in DownloadCreateInfo() 34 total_bytes(0), in DownloadCreateInfo()
|
D | download_create_info.h | 29 int64 total_bytes, 56 int64 total_bytes; member
|
/external/chromium/chrome/browser/download/ |
D | download_status_updater.cc | 42 int64 total_bytes = 0; in GetProgress() local 48 total_bytes += (*i)->GetTotalDownloadBytes(); in GetProgress() 51 if (total_bytes > 0) in GetProgress() 52 *progress = static_cast<float>(received_bytes) / total_bytes; in GetProgress()
|
D | save_types.cc | 18 total_bytes(0), in SaveFileCreateInfo() 27 total_bytes(0), in SaveFileCreateInfo()
|
D | save_item.h | 54 void SetTotalBytes(int64 total_bytes); 62 int64 total_bytes() const { return total_bytes_; } in total_bytes() function
|
/external/chromium/base/test/ |
D | test_file_util_win.cc | 64 int total_bytes = 0; in EvictFileFromSystemCache() local 84 DCHECK((total_bytes % kOneMB) == 0); in EvictFileFromSystemCache() 85 SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN); in EvictFileFromSystemCache() 94 total_bytes += bytes_read; in EvictFileFromSystemCache() 111 CHECK_NE(SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN), in EvictFileFromSystemCache()
|
/external/chromium_org/chrome/browser/download/ |
D | download_status_updater.cc | 64 int64 total_bytes = 0; in GetProgress() local 80 total_bytes += (*it)->GetTotalBytes(); in GetProgress() 87 if (total_bytes > 0) in GetProgress() 88 *progress = static_cast<float>(received_bytes) / total_bytes; in GetProgress()
|
/external/chromium_org/chrome/test/functional/ |
D | youtube.py | 93 total_bytes = 0 94 total_bytes = self._pyauto.ExecuteJavascript(""" 98 return int(total_bytes) 171 total_bytes = self.GetVideoTotalBytes() 175 while loaded_bytes < total_bytes:
|
/external/chromium_org/chrome/browser/chromeos/imageburner/ |
D | burn_controller.cc | 72 int64 total_bytes, in OnProgressWithRemainingTime() argument 75 progress_type, received_bytes, total_bytes, estimated_remaining_time); in OnProgressWithRemainingTime() 81 int64 total_bytes) OVERRIDE { in OnProgress() argument 82 delegate_->OnProgress(progress_type, received_bytes, total_bytes); in OnProgress()
|
/external/qemu/distrib/sdl-1.2.15/src/file/ |
D | SDL_rwops.c | 272 int total_bytes; in win32_file_write() local 275 total_bytes = size*num; in win32_file_write() 277 if (!context || context->hidden.win32io.h==INVALID_HANDLE_VALUE || total_bytes<=0 || !size) in win32_file_write() 293 if (!WriteFile(context->hidden.win32io.h,ptr,total_bytes,&byte_written,NULL)) { in win32_file_write() 396 size_t total_bytes; in mem_read() local 399 total_bytes = (maxnum * size); in mem_read() 400 if ( (maxnum <= 0) || (size <= 0) || ((total_bytes / maxnum) != (size_t) size) ) { in mem_read() 405 if (total_bytes > mem_available) { in mem_read() 406 total_bytes = mem_available; in mem_read() 409 SDL_memcpy(ptr, context->hidden.mem.here, total_bytes); in mem_read() [all …]
|
/external/chromium_org/base/test/ |
D | test_file_util_win.cc | 160 int total_bytes = 0; in EvictFileFromSystemCache() local 180 DCHECK((total_bytes % kOneMB) == 0); in EvictFileFromSystemCache() 181 SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN); in EvictFileFromSystemCache() 190 total_bytes += bytes_read; in EvictFileFromSystemCache() 207 CHECK_NE(SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN), in EvictFileFromSystemCache()
|
/external/chromium_org/remoting/protocol/ |
D | message_decoder.cc | 41 if (!next_payload_known_ || buffer_.total_bytes() < next_payload_) in GetNextMessage() 57 if (buffer_.total_bytes() < kHeaderSize) in GetPayloadSize()
|
/external/chromium_org/cc/test/ |
D | layer_tree_pixel_test.cc | 291 size_t total_bytes = size.height() * row_bytes; in CopyTextureMailboxToBitmap() local 292 for (size_t dest_y = 0; dest_y < total_bytes; dest_y += row_bytes) { in CopyTextureMailboxToBitmap() 294 size_t src_y = total_bytes - dest_y - row_bytes; in CopyTextureMailboxToBitmap() 350 size_t total_bytes = bitmap.height() * row_bytes; in CopyBitmapToTextureMailboxAsTexture() local 352 scoped_ptr<uint8[]> gl_pixels(new uint8[total_bytes]); in CopyBitmapToTextureMailboxAsTexture() 355 for (size_t y = 0; y < total_bytes; y += row_bytes) { in CopyBitmapToTextureMailboxAsTexture() 357 size_t src_y = total_bytes - y - row_bytes; in CopyBitmapToTextureMailboxAsTexture()
|
/external/chromium_org/remoting/base/ |
D | compound_buffer_unittest.cc | 61 cropped.CopyFrom(target_, 0, target_.total_bytes()); in TestCropFront() 64 target_.total_bytes() - pos)); in TestCropFront() 69 cropped.CopyFrom(target_, 0, target_.total_bytes()); in TestCropBack() 72 target_.total_bytes() - pos)); in TestCropBack() 105 return buffer.total_bytes() == size && in CompareData()
|
/external/chromium_org/chrome/browser/history/ |
D | download_row.cc | 11 total_bytes(0), in DownloadRow() 46 total_bytes(total), in DownloadRow()
|