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

  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicOutlineHelper.java 96 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
98 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, true,
101 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
107 int[] srcBuffer = new int[srcDst.getWidth() * srcDst.getHeight()];
108 srcDst.getPixels(srcBuffer,
109 0, srcDst.getWidth(), 0, 0, srcDst.getWidth(), srcDst.getHeight());
116 srcDst.setPixels(srcBuffer
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic.cpp 771 unsigned srcDst = currentInstruction[2].u.operand;
773 emitGetVirtualRegister(srcDst, regT0);
778 emitPutVirtualRegister(srcDst, regT1);
785 unsigned srcDst = currentInstruction[2].u.operand;
791 stubCall.addArgument(Imm32(srcDst));
798 unsigned srcDst = currentInstruction[2].u.operand;
800 emitGetVirtualRegister(srcDst, regT0);
805 emitPutVirtualRegister(srcDst, regT1);
812 unsigned srcDst = currentInstruction[2].u.operand;
818 stubCall.addArgument(Imm32(srcDst));
    [all...]
JITArithmetic32_64.cpp 679 unsigned srcDst = currentInstruction[2].u.operand;
681 emitLoad(srcDst, regT1, regT0);
684 if (dst == srcDst) // x = x++ is a noop for ints.
690 emitStoreInt32(srcDst, regT0, true);
696 unsigned srcDst = currentInstruction[2].u.operand;
699 if (dst != srcDst)
703 stubCall.addArgument(srcDst);
704 stubCall.addArgument(Imm32(srcDst));
713 unsigned srcDst = currentInstruction[2].u.operand;
715 emitLoad(srcDst, regT1, regT0)
    [all...]

Completed in 44 milliseconds