OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:refOffsets
(Results
1 - 5
of
5
) 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);
Copying.cpp
[
all
...]
/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
;
Class.cpp
[
all
...]
Completed in 43 milliseconds