OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bytes_total
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/cc/resources/
memory_history.cc
27
size_t
bytes_total
= it->
bytes_total
();
local
29
if (
bytes_total
< *min)
30
*min =
bytes_total
;
31
if (
bytes_total
> *max)
32
*max =
bytes_total
;
memory_history.h
33
size_t
bytes_total
() const {
function in struct:cc::MemoryHistory::Entry
/external/chromium_org/chrome/browser/component_updater/
crx_downloader.h
52
int64
bytes_total
;
member in struct:component_updater::CrxDownloader::DownloadMetrics
background_downloader_win.cc
201
int64*
bytes_total
) {
203
*
bytes_total
= -1;
218
*
bytes_total
= job_progress.BytesTotal;
509
int64
bytes_total
= -1;
local
510
GetJobByteCount(job_, &bytes_downloaded, &
bytes_total
);
527
DCHECK(
bytes_total
== static_cast<int64>(progress.BytesTotal));
532
bytes_total
= progress.BytesTotal;
557
download_metrics.
bytes_total
=
bytes_total
;
/external/chromium_org/net/base/
file_stream.cc
186
int
bytes_total
= 0;
local
191
if (
bytes_total
== 0)
194
return
bytes_total
;
197
bytes_total
+= bytes_read;
200
} while (
bytes_total
< buf_len);
202
return
bytes_total
;
/external/chromium_org/sandbox/win/src/
handle_closer.cc
59
size_t
bytes_total
= offsetof(HandleCloserInfo, handle_entries);
local
72
bytes_total
+= bytes_entry;
75
return
bytes_total
;
/external/e2fsprogs/e2fsck/
mtrace.h
217
size_t
bytes_total
; /* Total size of the heap. */
member in struct:mstats
/external/chromium/net/base/
file_stream_posix.cc
387
int
bytes_total
= 0;
local
392
if (
bytes_total
== 0)
395
return
bytes_total
;
398
bytes_total
+= bytes_read;
401
} while (
bytes_total
< buf_len);
403
return
bytes_total
;
file_stream_win.cc
262
int
bytes_total
= 0;
local
267
if (
bytes_total
== 0)
270
return
bytes_total
;
273
bytes_total
+= bytes_read;
276
} while (
bytes_total
< buf_len);
278
return
bytes_total
;
/external/chromium_org/chrome/browser/chromeos/drive/
file_system_unittest.cc
658
int64
bytes_total
;
local
662
&error, &
bytes_total
, &bytes_used));
665
EXPECT_EQ(GG_LONGLONG(9876543210),
bytes_total
);
/external/libvpx/libvpx/vpx/src/
svc_encodeframe.c
936
uint32_t
bytes_total
= 0;
local
958
bytes_total
+= si->bytes_in_layer[i];
966
svc_log(svc_ctx, SVC_LOG_INFO, "Total Bytes=[%u]\n",
bytes_total
);
Completed in 486 milliseconds