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

/dalvik/vm/compiler/codegen/mips/
H A DArchUtility.cpp43 int operand; local
53 operand = lir->operands[nc-'0'];
58 tbuf[i] += operand & 1;
59 operand >>= 1;
63 sprintf(tbuf,"$f%d",operand & FP_REG_MASK);
66 assert(((operand & FP_REG_MASK) & 1) == 0);
67 sprintf(tbuf,"$f%d",operand & FP_REG_MASK);
70 sprintf(tbuf,"%04x", operand);
74 sprintf(tbuf,"%d", operand);
77 sprintf(tbuf,"%d", operand
[all...]
H A DAssemble.cpp50 * of the key, "p" is which numeric operand to use and "f" is the
519 u4 operand; local
521 operand = lir->operands[i];
527 value = operand;
529 value = (operand << encoder->fieldLoc[i].start) &
535 assert(DOUBLEREG(operand));
536 assert((operand & 0x1) == 0);
537 value = ((operand & FP_REG_MASK) << encoder->fieldLoc[i].start) &
543 assert(SINGLEREG(operand));
544 value = ((operand
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DArchUtility.cpp86 int operand; local
96 operand = lir->operands[nc-'0'];
99 if (operand != 0) {
100 sprintf(tbuf, ", %s %d",shiftNames[operand & 0x3],
101 operand >> 2);
107 switch (operand) {
135 tbuf[i] += operand & 1;
136 operand >>= 1;
140 operand = ~expandImmediate(operand);
[all...]
H A DAssemble.cpp49 * of the key, "p" is which numeric operand to use and "f" is the
75 * H -> operand shift
1004 /* operand[0] is src1 in both cb[n]z & CmpRI8 */
1074 u4 operand; local
1076 operand = lir->operands[i];
1081 value = ((operand & 0xF0) >> 4) << encoder->fieldLoc[i].end;
1082 value |= (operand & 0x0F) << encoder->fieldLoc[i].start;
1086 value = ((operand & 0x80000) >> 19) << 26;
1087 value |= ((operand & 0x40000) >> 18) << 11;
1088 value |= ((operand
[all...]
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 837 milliseconds