OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxFramesCount
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/
platform.h
594
static const int
kMaxFramesCount
= 64;
595
Address stack[
kMaxFramesCount
]; // Call stack.
cpu-profiler.cc
194
!it.done() && sample->frames_count < TickSample::
kMaxFramesCount
;
247
|| record.sample.frames_count > TickSample::
kMaxFramesCount
)
log.cc
180
while (!it.done() && i < TickSample::
kMaxFramesCount
) {
[
all
...]
/external/v8/test/cctest/
test-cpu-profiler.cc
262
sample->frames_count = i::TickSample::
kMaxFramesCount
;
280
CHECK_EQ(1 + i::TickSample::
kMaxFramesCount
, actual_depth); // +1 for PC.
Completed in 256 milliseconds