Home
last modified time | relevance | path

Searched refs:dstType (Results 1 – 4 of 4) sorted by relevance

/dalvik/vm/native/
Djava_lang_System.c39 char srcType, dstType; in Dalvik_java_lang_System_arraycopy() local
78 dstType = dstClass->descriptor[1]; in Dalvik_java_lang_System_arraycopy()
85 dstPrim = (dstType != '[' && dstType != 'L'); in Dalvik_java_lang_System_arraycopy()
89 if (srcPrim != dstPrim || srcType != dstType) { in Dalvik_java_lang_System_arraycopy()
/dalvik/vm/analysis/
DCodeVerify.c1918 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType, in checkUnop() argument
1922 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pOkay); in checkUnop()
1960 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType, in checkLitop() argument
1965 assert(dstType == kRegTypeInteger); in checkLitop()
1970 dstType = kRegTypeBoolean; in checkLitop()
1973 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pOkay); in checkLitop()
1982 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType1, in checkBinop() argument
1988 assert(dstType == kRegTypeInteger); in checkBinop()
1990 dstType = kRegTypeBoolean; in checkBinop()
1992 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pOkay); in checkBinop()
[all …]
/dalvik/vm/reflect/
DReflect.h69 PrimitiveType dstType, const s4* srcPtr, s4* dstPtr);
DReflect.c914 PrimitiveType dstType, const s4* srcPtr, s4* dstPtr) in dvmConvertPrimitiveValue() argument
936 assert(srcType != PRIM_NOT && dstType != PRIM_NOT && in dvmConvertPrimitiveValue()
937 srcType != PRIM_VOID && dstType != PRIM_VOID); in dvmConvertPrimitiveValue()
938 result = kConvMode[srcType][dstType]; in dvmConvertPrimitiveValue()
969 srcType, dstType); in dvmConvertPrimitiveValue()