Searched defs:shift (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/compiler/codegen/mips/
H A DCodegenCommon.cpp98 int shift; local
113 shift = kFPReg0;
116 shift = kFPRegEnd;
118 shift = 0;
122 shift += regId;
123 return (seed << shift);
/dalvik/vm/alloc/
H A DHeapBitmap.cpp110 const int shift = CLZ(word); local
111 Object* obj = (Object *)(ptrBase + shift * HB_OBJECT_ALIGNMENT);
113 word &= ~(highBit >> shift);
146 const int shift = CLZ(word); local
147 Object *obj = (Object *)(ptrBase + shift * HB_OBJECT_ALIGNMENT);
149 word &= ~(highBit >> shift);
194 int shift = CLZ(garbage); local
195 garbage &= ~(highBit >> shift);
196 *pb++ = (void *)(ptrBase + shift * HB_OBJECT_ALIGNMENT);
/dalvik/vm/compiler/codegen/arm/
H A DCodegenCommon.cpp95 int shift; local
103 shift = FPREG(reg) ? kFPReg0 : 0;
105 shift += regId;
106 return (seed << shift);
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp300 int rSrc2, int shift)
302 bool thumbForm = ((shift == 0) && LOWREG(rDestSrc1) && LOWREG(rSrc2));
315 assert(shift == 0);
321 else if ((shift == 0) && !LOWREG(rDestSrc1) && !LOWREG(rSrc2))
323 else if ((shift == 0) && LOWREG(rDestSrc1))
325 else if (shift == 0)
334 assert(shift == 0);
345 assert(shift == 0);
352 assert(shift == 0);
365 assert(shift
299 opRegRegShift(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2, int shift) argument
421 opRegRegRegShift(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2, int shift) argument
[all...]
/dalvik/vm/reflect/
H A DAnnotation.cpp63 int shift = 0; local
73 assert(shift < 32);
76 result |= (val & 0x7f) << shift;
77 shift += 7;

Completed in 395 milliseconds