OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kMaxWatchpointCode
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/mips/
constants-mips.h
242
// - Breaks between 0 and
kMaxWatchpointCode
are treated as simple watchpoints,
244
// - Breaks between
kMaxWatchpointCode
and kMaxStopCode are treated as stop()
248
const uint32_t
kMaxWatchpointCode
= 31;
250
STATIC_ASSERT(
kMaxWatchpointCode
< kMaxStopCode);
[
all
...]
/external/v8/src/mips64/
constants-mips64.h
218
// - Breaks between 0 and
kMaxWatchpointCode
are treated as simple watchpoints,
220
// - Breaks between
kMaxWatchpointCode
and kMaxStopCode are treated as stop()
224
const uint32_t
kMaxWatchpointCode
= 31;
226
STATIC_ASSERT(
kMaxWatchpointCode
< kMaxStopCode);
[
all
...]
Completed in 464 milliseconds