OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bytes_until_sample_
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/tcmalloc/chromium/src/
sampler.h
89
//
bytes_until_sample_
. Every allocation subtracts from this
93
// When an allocation occurs,
bytes_until_sample_
is reset to
129
size_t
bytes_until_sample_
; // Bytes until we sample next
member in class:tcmalloc::Sampler
141
if (
bytes_until_sample_
< k) {
142
bytes_until_sample_
= PickNextSamplingPoint();
145
bytes_until_sample_
-= k;
sampler.cc
92
bytes_until_sample_
= PickNextSamplingPoint();
/external/chromium_org/third_party/tcmalloc/vendor/src/
sampler.h
89
//
bytes_until_sample_
. Every allocation subtracts from this
93
// When an allocation occurs,
bytes_until_sample_
is reset to
129
size_t
bytes_until_sample_
; // Bytes until we sample next
member in class:tcmalloc::Sampler
141
if (
bytes_until_sample_
< k) {
142
bytes_until_sample_
= PickNextSamplingPoint();
145
bytes_until_sample_
-= k;
sampler.cc
92
bytes_until_sample_
= PickNextSamplingPoint();
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
sampler_test.cc
441
size_t
bytes_until_sample_
;
member in class:OldSampler
463
bytes_until_sample_
= 0;
489
bytes_until_sample_
+= rnd_ % sample_period;
501
while (
bytes_until_sample_
< k) {
502
// Increase
bytes_until_sample_
by enough average sampling periods
505
bytes_until_sample_
+= (sample_period >> 1);
508
bytes_until_sample_
-= k;
512
if (
bytes_until_sample_
< k) {
516
bytes_until_sample_
-= k;
522
// tcmalloc_sample_parameter flag never overflows
bytes_until_sample_
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
sampler_test.cc
441
size_t
bytes_until_sample_
;
member in class:OldSampler
463
bytes_until_sample_
= 0;
489
bytes_until_sample_
+= rnd_ % sample_period;
501
while (
bytes_until_sample_
< k) {
502
// Increase
bytes_until_sample_
by enough average sampling periods
505
bytes_until_sample_
+= (sample_period >> 1);
508
bytes_until_sample_
-= k;
512
if (
bytes_until_sample_
< k) {
516
bytes_until_sample_
-= k;
522
// tcmalloc_sample_parameter flag never overflows
bytes_until_sample_
[
all
...]
/external/chromium_org/third_party/WebKit/Source/wtf/
FastMalloc.cpp
[
all
...]
Completed in 169 milliseconds