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

1 2

  /external/chromium_org/media/audio/
audio_buffers_state.h 18 int total_bytes() { function in struct:media::AudioBuffersState
  /external/chromium/chrome/browser/download/
download_status_updater.cc 42 int64 total_bytes = 0; local
48 total_bytes += (*i)->GetTotalDownloadBytes();
51 if (total_bytes > 0)
52 *progress = static_cast<float>(received_bytes) / total_bytes;
save_types.h 63 int64 total_bytes; member in struct:SaveFileCreateInfo
save_item.h 54 void SetTotalBytes(int64 total_bytes);
62 int64 total_bytes() const { return total_bytes_; } function in class:SaveItem
  /external/chromium_org/chrome/browser/download/
download_status_updater.cc 64 int64 total_bytes = 0; local
80 total_bytes += (*it)->GetTotalBytes();
87 if (total_bytes > 0)
88 *progress = static_cast<float>(received_bytes) / total_bytes;
download_item_model_unittest.cc 281 int64 total_bytes; // Return value of GetTotalBytes(). member in struct:TestCase
294 // non-zero. In addition, if |total_bytes| is zero, then
335 .WillRepeatedly(Return(test_case.total_bytes));
  /external/chromium_org/chrome/browser/history/
download_row.h 77 int64 total_bytes; member in struct:history::DownloadRow
  /external/chromium_org/content/browser/android/
download_controller_android_impl.h 62 int64 total_bytes; member in struct:content::DownloadControllerAndroidImpl::DownloadInfoAndroid
  /external/chromium_org/content/browser/download/
download_create_info.h 28 int64 total_bytes,
52 int64 total_bytes; member in struct:content::DownloadCreateInfo
save_types.h 63 int64 total_bytes; member in struct:content::SaveFileCreateInfo
save_item.h 55 void SetTotalBytes(int64 total_bytes);
63 int64 total_bytes() const { return total_bytes_; } function in class:content::SaveItem
  /external/chromium_org/content/public/test/
mock_download_manager.h 39 int64 total_bytes; member in struct:content::MockDownloadManager::CreateDownloadItemAdapter
56 int64 total_bytes,
109 int64 total_bytes,
  /external/chromium/base/test/
test_file_util_win.cc 64 int total_bytes = 0; local
82 // Note that SetFilePointer will also fail if total_bytes isn't sector
84 DCHECK((total_bytes % kOneMB) == 0);
85 SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN);
94 total_bytes += bytes_read;
111 CHECK_NE(SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN),
  /external/chromium/chrome/browser/history/
download_create_info.h 29 int64 total_bytes,
56 int64 total_bytes; member in struct:DownloadCreateInfo
  /external/chromium_org/remoting/base/
compound_buffer.h 60 int total_bytes() const { return total_bytes_; } function in class:remoting::CompoundBuffer
  /external/chromium_org/tools/memory_watcher/
memory_watcher.cc 237 int32 total_bytes = 0; local
243 total_bytes += stack_track->size;
253 fprintf(file_, "Total Bytes: %d\n", total_bytes);
  /external/chromium/chrome/browser/renderer_host/
web_cache_manager_unittest.cc 288 size_t total_bytes = 0; local
291 total_bytes += iter->second;
306 EXPECT_GE(expected_total_bytes, total_bytes);
  /external/chromium_org/base/test/
test_file_util_win.cc 160 int total_bytes = 0; local
178 // Note that SetFilePointer will also fail if total_bytes isn't sector
180 DCHECK((total_bytes % kOneMB) == 0);
181 SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN);
190 total_bytes += bytes_read;
207 CHECK_NE(SetFilePointer(file_handle, total_bytes, NULL, FILE_BEGIN),
  /external/chromium_org/chrome/browser/renderer_host/
web_cache_manager_unittest.cc 289 size_t total_bytes = 0; local
292 total_bytes += iter->second;
307 EXPECT_GE(expected_total_bytes, total_bytes);
  /external/chromium_org/components/plugins/renderer/
webview_plugin.cc 67 size_t total_bytes = 0; local
72 total_bytes += it->length();
76 (base::checked_numeric_cast<int, size_t>(total_bytes / 1024)));
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 371 UInt k, total_bytes, swaps, symbol, last_symbol; local
427 total_bytes = (Int)(stream.BytePtr - out);
430 ++ total_bytes;
433 return total_bytes;
  /external/chromium_org/cc/test/
layer_tree_pixel_test.cc 291 size_t total_bytes = size.height() * row_bytes; local
292 for (size_t dest_y = 0; dest_y < total_bytes; dest_y += row_bytes) {
294 size_t src_y = total_bytes - dest_y - row_bytes;
350 size_t total_bytes = bitmap.height() * row_bytes; local
352 scoped_ptr<uint8[]> gl_pixels(new uint8[total_bytes]);
355 for (size_t y = 0; y < total_bytes; y += row_bytes) {
357 size_t src_y = total_bytes - y - row_bytes;
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 211 size_t total_bytes = 0; local
217 total_bytes = heap_stats.total_heap_size();
225 total_bytes,
230 size_t total_bytes,
234 total_bytes_ += total_bytes;
  /external/chromium_org/components/nacl/renderer/
ppb_nacl_private_impl.cc 361 uint64_t total_bytes) {
392 total_bytes, local
399 total_bytes); local
  /external/chromium_org/chrome/browser/extensions/
webstore_installer.cc 651 int64 total_bytes = download->GetTotalBytes(); local
652 if (total_bytes >= 0) {
655 total_bytes / 1024,
662 total_bytes <= 0);

Completed in 415 milliseconds

1 2