OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:in_to_space
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/v8/src/
spaces.cc
426
bool
in_to_space
= (semi_space->id() != kFromSpace);
local
427
chunk->SetFlag(
in_to_space
? MemoryChunk::
IN_TO_SPACE
429
ASSERT(!chunk->IsFlagSet(
in_to_space
? MemoryChunk::IN_FROM_SPACE
430
: MemoryChunk::
IN_TO_SPACE
));
[
all
...]
spaces.h
388
IN_FROM_SPACE, // Mutually exclusive with
IN_TO_SPACE
.
389
IN_TO_SPACE
, // All pages in new space has one of these two set.
426
(1 <<
IN_TO_SPACE
);
584
return (flags_ & ((1 << IN_FROM_SPACE) | (1 <<
IN_TO_SPACE
))) != 0;
588
return IsFlagSet(
IN_TO_SPACE
);
[
all
...]
/external/v8/src/
spaces.cc
409
bool
in_to_space
= (semi_space->id() != kFromSpace);
local
410
chunk->SetFlag(
in_to_space
? MemoryChunk::
IN_TO_SPACE
412
ASSERT(!chunk->IsFlagSet(
in_to_space
? MemoryChunk::IN_FROM_SPACE
413
: MemoryChunk::
IN_TO_SPACE
));
[
all
...]
spaces.h
382
IN_FROM_SPACE, // Mutually exclusive with
IN_TO_SPACE
.
383
IN_TO_SPACE
, // All pages in new space has one of these two set.
414
(1 <<
IN_TO_SPACE
);
524
return (flags_ & ((1 << IN_FROM_SPACE) | (1 <<
IN_TO_SPACE
))) != 0;
528
return IsFlagSet(
IN_TO_SPACE
);
[
all
...]
/external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc
126
ASSERT(MemoryChunk::
IN_TO_SPACE
< 8);
128
| (1 << MemoryChunk::
IN_TO_SPACE
);
[
all
...]
/external/v8/src/ia32/
macro-assembler-ia32.cc
71
ASSERT(MemoryChunk::
IN_TO_SPACE
< 8);
73
| (1 << MemoryChunk::
IN_TO_SPACE
);
[
all
...]
Completed in 237 milliseconds