OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GC_CARD_DIRTY
(Results
1 - 3
of
3
) sorted by null
/dalvik/vm/alloc/
CardTable.h
29
#define
GC_CARD_DIRTY
0x70
64
* Set the card associated with the given address to
GC_CARD_DIRTY
.
CardTable.cpp
33
* one of GC_CARD_CLEAN or
GC_CARD_DIRTY
.
77
if (((uintptr_t)biasedBase & 0xff) !=
GC_CARD_DIRTY
) {
78
int offset =
GC_CARD_DIRTY
- ((uintptr_t)biasedBase & 0xff);
82
assert(((uintptr_t)biasedBase & 0xff) ==
GC_CARD_DIRTY
);
142
*cardAddr =
GC_CARD_DIRTY
;
153
return *card ==
GC_CARD_DIRTY
;
MarkSweep.cpp
526
if (*card !=
GC_CARD_DIRTY
) {
568
dirty = (const u1 *)memchr(ptr,
GC_CARD_DIRTY
, limit - ptr);
Completed in 829 milliseconds