HomeSort by relevance Sort by last modified time
    Searched defs:refOffsets (Results 1 - 3 of 3) 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.cpp 222 if (obj->clazz->refOffsets != CLASS_WALK_SUPER) {
223 unsigned int refOffsets = obj->clazz->refOffsets;
224 while (refOffsets != 0) {
225 size_t rshift = CLZ(refOffsets);
229 refOffsets &= ~(CLASS_HIGH_BIT >> rshift);
  /dalvik/vm/oo/
Object.h 142 * Definitions for packing refOffsets in ClassObject.
145 * A magic value for refOffsets. Ignore the bits and walk the super
467 u4 refOffsets;

Completed in 81 milliseconds