Searched defs:shift (Results 1 - 5 of 5) sorted by relevance
/dalvik/vm/compiler/codegen/mips/ |
H A D | CodegenCommon.cpp | 98 int shift; local 113 shift = kFPReg0; 116 shift = kFPRegEnd; 118 shift = 0; 122 shift += regId; 123 return (seed << shift);
|
/dalvik/vm/alloc/ |
H A D | HeapBitmap.cpp | 110 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 D | CodegenCommon.cpp | 95 int shift; local 103 shift = FPREG(reg) ? kFPReg0 : 0; 105 shift += regId; 106 return (seed << shift);
|
/dalvik/vm/compiler/codegen/arm/Thumb2/ |
H A D | Factory.cpp | 307 int rSrc2, int shift) 309 bool thumbForm = ((shift == 0) && LOWREG(rDestSrc1) && LOWREG(rSrc2)); 322 assert(shift == 0); 328 else if ((shift == 0) && !LOWREG(rDestSrc1) && !LOWREG(rSrc2)) 330 else if ((shift == 0) && LOWREG(rDestSrc1)) 332 else if (shift == 0) 341 assert(shift == 0); 352 assert(shift == 0); 359 assert(shift == 0); 372 assert(shift 306 opRegRegShift(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2, int shift) argument 428 opRegRegRegShift(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2, int shift) argument [all...] |
/dalvik/vm/reflect/ |
H A D | Annotation.cpp | 63 int shift = 0; local 73 assert(shift < 32); 76 result |= (val & 0x7f) << shift; 77 shift += 7;
|
Completed in 114 milliseconds