HomeSort by relevance Sort by last modified time
    Searched defs:refOffsets (Results 1 - 4 of 4) sorted by null

  /dalvik/vm/alloc/
VisitInlines.h 28 if (obj->clazz->refOffsets != CLASS_WALK_SUPER) {
29 size_t refOffsets = obj->clazz->refOffsets;
30 while (refOffsets != 0) {
31 size_t rshift = CLZ(refOffsets);
35 refOffsets &= ~(CLASS_HIGH_BIT >> rshift);
MarkSweep.c 297 if (obj->clazz->refOffsets != CLASS_WALK_SUPER) {
298 unsigned int refOffsets = obj->clazz->refOffsets;
299 while (refOffsets != 0) {
300 const int rshift = CLZ(refOffsets);
301 refOffsets &= ~(CLASS_HIGH_BIT >> rshift);
Copying.c     [all...]
  /dalvik/vm/oo/
Object.h 177 * Definitions for packing refOffsets in ClassObject.
180 * A magic value for refOffsets. Ignore the bits and walk the super
506 u4 refOffsets;

Completed in 203 milliseconds