Searched refs:u2 (Results 1 - 25 of 145) sorted by relevance

123456

/dalvik/vm/mterp/c/
H A DOP_AGET_CHAR.c1 HANDLE_OP_AGET(OP_AGET_CHAR, "-char", u2, )
H A DOP_APUT_CHAR.c1 HANDLE_OP_APUT(OP_APUT_CHAR, "-char", u2, )
H A DOP_INT_TO_CHAR.c1 HANDLE_INT_TO_SMALL(OP_INT_TO_CHAR, "char", u2)
H A DOP_REM_DOUBLE.c3 u2 srcRegs;
H A DOP_REM_FLOAT.c3 u2 srcRegs;
H A DOP_RSUB_INT_LIT8.c3 u2 litInfo;
/dalvik/vm/analysis/
H A DReduceConstants.h39 #define kNoIndexMapping ((u2) -1)
47 u2* mapToNew; /* sparse map, from "orig" to "new" */
48 u2* mapToOld; /* dense map, from "new" back to "orig" */
H A DReduceConstants.c208 u2 classMap[]
211 u2 methodMap[]
214 u2 fieldMap[]
217 u2 stringMap[]
225 u2 classMap[]
227 u2 methodMap[]
229 u2 fieldMap[]
231 u2 stringMap[]
391 static void markClass(const u2* ptr, ScanResults* pResults)
393 u2 classId
[all...]
/dalvik/vm/interp/
H A DJit.h43 const u2* startPC; /* starting pc of jitted region */
47 const u2* endPC; /* ending pc of jitted region */
65 void* dvmSelfVerificationSaveState(const u2* pc, const void* fp,
68 void* dvmSelfVerificationRestoreState(const u2* pc, const void* fp,
76 static inline u4 dvmJitHashMask( const u2* p, u4 mask ) {
80 static inline u4 dvmJitHash( const u2* p ) {
97 u2 chain; /* Index of next in chain */
107 const u2* dPC; /* Dalvik code address */
111 int dvmCheckJit(const u2* pc, Thread* self, InterpState* interpState);
112 void* dvmJitGetCodeAddr(const u2* dP
[all...]
H A DInterpDefs.h107 const u2* pc; // program counter
151 const u2* jitResumeDPC; // Dalvik PC corresponding to NPC
175 const u2* currTraceHead; // Start of the trace we're building
176 const u2* currRunHead; // Start of run we're building
179 const u2* lastPC; // Stage the PC first for the threaded interpreter
214 s4 dvmInterpHandlePackedSwitch(const u2* switchData, s4 testVal);
215 s4 dvmInterpHandleSparseSwitch(const u2* switchData, s4 testVal);
221 const u2* arrayData);
H A DInterp.h56 u1 dvmGetOriginalOpCode(const u2* addr);
/dalvik/libdex/
H A DDexDataMap.h30 u2* types; /* corresponding array of item types */
47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type);
60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type);
65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) {
H A DDexDataMap.c39 if (!safe_mul(&size, maxCount, sizeof(u4) + sizeof(u2)) ||
53 map->types = (u2*) (map->offsets + maxCount);
74 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) {
125 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type) {
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
H A DAclEnumerator.java27 Enumeration u2; field in class:AclEnumerator
34 u2 = hashtable2.elements();
40 return u1.hasMoreElements() || u2.hasMoreElements() || g1.hasMoreElements() || g2.hasMoreElements();
45 if(u2.hasMoreElements()) return u2.nextElement();
/dalvik/vm/
H A DUtfString.h92 void dvmConvertUtf8ToUtf16(u2* utf16Str, const char* utf8Str);
99 StringObject* dvmCreateStringFromUnicode(const u2* unichars, int len);
135 const u2* dvmStringChars(StringObject* jstr);
H A DUtfString.c163 void dvmConvertUtf8ToUtf16(u2* utf16Str, const char* utf8Str)
173 static int utf16_utf8ByteLen(const u2* utf16Str, int len)
200 static void convertUtf16ToUtf8(char* utf8Str, const u2* utf16Str, int len)
230 static inline u4 dvmComputeUtf16Hash(const u2* utf16Str, int len)
247 return dvmComputeUtf16Hash((u2*) chars->contents + offset, len);
310 dvmConvertUtf8ToUtf16((u2*)chars->contents, utf8Str);
311 hashCode = dvmComputeUtf16Hash((u2*) chars->contents, utf16Length);
332 StringObject* dvmCreateStringFromUnicode(const u2* unichars, int len)
364 memcpy(chars->contents, unichars, len * sizeof(u2));
365 hashCode = dvmComputeUtf16Hash((u2*) char
[all...]
H A DCommon.h61 typedef uint16_t u2; typedef
70 typedef unsigned short u2; typedef
90 u2 c;
/dalvik/vm/mterp/cstubs/
H A Dstubdefs.c20 u2 ref, vsrc1, vsrc2, vdst; \
21 u2 inst = FETCH(0); \
50 u2 ref, vsrc1, vsrc2, vdst; \
51 u2 inst = FETCH(0);
/dalvik/vm/mterp/portable/
H A Dentry.c22 const u2* pc; // program counter
24 u2 inst; // current instruction
26 u2 ref; // 16-bit quantity fetched directly
27 u2 vsrc1, vsrc2, vdst; // usually used for register indexes
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteBlock.java96 return '{' + Hex.u2(label) + ": " + Hex.u2(start) + ".." +
97 Hex.u2(end) + '}';
H A DByteBlockList.java60 + Hex.u2(label));
/dalvik/vm/compiler/codegen/arm/
H A DCalloutHelper.h81 const u2* arrayData);
84 static s8 findPackedSwitchIndex(const u2* switchData, int testVal, int pc);
85 static s8 findSparseSwitchIndex(const u2* switchData, int testVal, int pc);
/dalvik/dx/src/com/android/dx/command/dump/
H A DBlockDumper.java228 "dead code " + Hex.u2(byteAt) + ".." + Hex.u2(start));
232 "block " + Hex.u2(bb.getLabel()) + ": " +
233 Hex.u2(start) + ".." + Hex.u2(end));
249 parsed(bytes, end, 0, "next " + Hex.u2(succ));
262 Hex.u2(one.getHandlerPc()));
272 "dead code " + Hex.u2(byteAt) + ".." + Hex.u2(end));
303 sb.append("first " + Hex.u2(rmet
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/
H A DDSASigner.java113 BigInteger u2 = r.multiply(w).mod(params.getQ());
116 u2 = ((DSAPublicKeyParameters)key).getY().modPow(u2, params.getP());
118 BigInteger v = u1.multiply(u2).mod(params.getP()).mod(params.getQ());
/dalvik/vm/compiler/
H A DCompiler.h61 const u2* pc;
127 u2 startOffset; // Starting offset for trace run
161 bool dvmCompilerWorkEnqueue(const u2* pc, WorkOrderKind kind, void* info);
195 JitTraceDescription *dvmCopyTraceDescriptor(const u2 *pc,

Completed in 417 milliseconds

123456