HomeSort by relevance Sort by last modified time
    Searched defs:total_bytes (Results 1 - 25 of 40) 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 65 int64 total_bytes = 0; local
81 total_bytes += (*it)->GetTotalBytes();
88 if (total_bytes > 0)
89 *progress = static_cast<float>(received_bytes) / total_bytes;
download_item_model_unittest.cc 276 int64 total_bytes; // Return value of GetTotalBytes(). member in struct:TestCase
289 // non-zero. In addition, if |total_bytes| is zero, then
330 .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,
51 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/chrome/renderer/plugins/
webview_plugin.cc 72 size_t total_bytes = 0; local
76 total_bytes += it->length();
78 UMA_HISTOGRAM_MEMORY_KB("PluginDocument.Memory", (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 279 size_t total_bytes = size.height() * row_bytes; local
280 for (size_t dest_y = 0; dest_y < total_bytes; dest_y += row_bytes) {
282 size_t src_y = total_bytes - dest_y - row_bytes;
336 size_t total_bytes = bitmap.height() * row_bytes; local
338 scoped_ptr<uint8[]> gl_pixels(new uint8[total_bytes]);
341 for (size_t y = 0; y < total_bytes; y += row_bytes) {
343 size_t src_y = total_bytes - y - row_bytes;
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 212 size_t total_bytes = 0; local
218 total_bytes = heap_stats.total_heap_size();
226 total_bytes,
231 size_t total_bytes,
235 total_bytes_ += total_bytes;
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 362 static int total_bytes; variable
366 total_bytes += dbuf.dsize;
373 total_bytes = 0;
377 printf("%d records totalling %d bytes\n", count, total_bytes);
  /external/qemu/distrib/sdl-1.2.15/src/file/
SDL_rwops.c 272 int total_bytes; local
275 total_bytes = size*num;
277 if (!context || context->hidden.win32io.h==INVALID_HANDLE_VALUE || total_bytes<=0 || !size)
293 if (!WriteFile(context->hidden.win32io.h,ptr,total_bytes,&byte_written,NULL)) {
396 size_t total_bytes; local
399 total_bytes = (maxnum * size);
400 if ( (maxnum <= 0) || (size <= 0) || ((total_bytes / maxnum) != (size_t) size) ) {
405 if (total_bytes > mem_available) {
406 total_bytes = mem_available;
409 SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
    [all...]

Completed in 424 milliseconds

1 2