HomeSort by relevance Sort by last modified time
    Searched refs:u2 (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /dalvik/vm/mterp/c/
OP_AGET_CHAR.c 1 HANDLE_OP_AGET(OP_AGET_CHAR, "-char", u2, )
OP_APUT_CHAR.c 1 HANDLE_OP_APUT(OP_APUT_CHAR, "-char", u2, )
OP_INT_TO_CHAR.c 1 HANDLE_INT_TO_SMALL(OP_INT_TO_CHAR, "char", u2)
OP_REM_DOUBLE.c 3 u2 srcRegs;
OP_REM_FLOAT.c 3 u2 srcRegs;
OP_RSUB_INT_LIT8.c 3 u2 litInfo;
  /dalvik/vm/interp/
Jit.h 43 const u2* startPC; /* starting pc of jitted region */
48 const u2* endPC; /* ending pc of jitted region */
66 void* dvmSelfVerificationSaveState(const u2* pc, const void* fp,
69 void* dvmSelfVerificationRestoreState(const u2* pc, const void* fp,
77 static inline u4 dvmJitHashMask( const u2* p, u4 mask ) {
81 static inline u4 dvmJitHash( const u2* p ) {
98 u2 chain; /* Index of next in chain */
108 const u2* dPC; /* Dalvik code address */
112 int dvmCheckJit(const u2* pc, Thread* self, InterpState* interpState,
114 void* dvmJitGetCodeAddr(const u2* dPC)
    [all...]
InterpDefs.h 107 const u2* pc; // program counter
153 const u2* jitResumeDPC; // Dalvik PC corresponding to NPC
176 const u2* currTraceHead; // Start of the trace we're building
177 const u2* currRunHead; // Start of run we're building
180 const u2* lastPC; // Stage the PC first for the threaded interpreter
215 s4 dvmInterpHandlePackedSwitch(const u2* switchData, s4 testVal);
216 s4 dvmInterpHandleSparseSwitch(const u2* switchData, s4 testVal);
222 const u2* arrayData);
Interp.h 55 u1 dvmGetOriginalOpCode(const u2* addr);
  /dalvik/libdex/
DexDataMap.h 30 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) {
DexDataMap.c 39 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) {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
AclEnumerator.java 27 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();
  /external/e2fsprogs/lib/uuid/
compare.c 40 #define UUCMP(u1,u2) if (u1 != u2) return((u1 < u2) ? -1 : 1);
uuid.h 56 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
57 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
59 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
60 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
  /external/qemu/distrib/sdl-1.2.12/src/video/aalib/
SDL_aaevents_c.h 31 int u1,int u2,int u3, int u4);
  /external/qemu/distrib/sdl-1.2.12/src/video/svga/
SDL_svgaevents_c.h 31 int u1,int u2,int u3, int u4);
  /bionic/libm/bsdsrc/
b_log.c 369 double F, f, g, q, u, u2, v, zero = 0.0, one = 1.0;
412 u2 = (2.0*(f - F*u1) - u1*f) * g;
413 /* u1 + u2 = 2f/(2F+f) to extra precision. */
420 u2 = (u2 + logF_tail[j]) + q; /* tiny */
421 u2 += logF_tail[N]*m;
422 return (u1 + u2);
438 double F, f, g, q, u, v, u2; local
463 u2 = (2.0*(f - F*u1) - u1*f) * g;
467 u2 += logF_tail[j]; u2 += q
    [all...]
  /dalvik/vm/
UtfString.h 88 void dvmConvertUtf8ToUtf16(u2* utf16Str, const char* utf8Str);
95 StringObject* dvmCreateStringFromUnicode(const u2* unichars, int len);
131 const u2* dvmStringChars(StringObject* jstr);
UtfString.c 170 void dvmConvertUtf8ToUtf16(u2* utf16Str, const char* utf8Str)
180 static int utf16_utf8ByteLen(const u2* utf16Str, int len)
207 static void convertUtf16ToUtf8(char* utf8Str, const u2* utf16Str, int len)
237 static inline u4 dvmComputeUtf16Hash(const u2* utf16Str, int len)
254 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*) chars->contents, len)
    [all...]
  /external/dropbear/libtommath/
bn_mp_exteuclid.c 19 a*u1 + b*u2 = u3
21 int mp_exteuclid(mp_int *a, mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3)
23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local
26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
30 /* initialize, (u1,u2,u3) = (1,0,a) */
43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
47 if ((err = mp_sub(&u2, &tmp, &t2)) != MP_OKAY) { goto _ERR; }
51 /* (u1,u2,u3) = (v1,v2,v3) */
53 if ((err = mp_copy(&v2, &u2)) != MP_OKAY) { goto _ERR; }
65 mp_neg(&u2, &u2)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_verify_hash.c 35 void *w, *v, *u1, *u2; local
47 if ((err = mp_init_multi(&w, &v, &u1, &u2, NULL)) != CRYPT_OK) {
64 /* u2 = r*w mod q */
65 if ((err = mp_mulmod(r, w, key->q, u2)) != CRYPT_OK) { goto error; }
67 /* v = g^u1 * y^u2 mod p mod q */
69 if ((err = mp_exptmod(key->y, u2, key->p, u2)) != CRYPT_OK) { goto error; }
70 if ((err = mp_mulmod(u1, u2, key->p, v)) != CRYPT_OK) { goto error; }
80 mp_clear_multi(w, v, u1, u2, NULL);
  /external/openssl/crypto/des/
des_locl.h 215 unsigned int u1,u2,u3; \
217 u2=(int)u>>8L; \
219 u2&=0xfc; \
223 LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
229 u2=(int)t>>8L; \
231 u2&=0xfc; \
234 LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
243 unsigned int u1,u2,s1,s2; \
245 u2=(int)u>>8L; \
247 u2&=0xfc;
    [all...]
  /dalvik/vm/mterp/cstubs/
stubdefs.c 19 u2 ref, vsrc1, vsrc2, vdst; \
20 u2 inst = FETCH(0); \
49 u2 ref, vsrc1, vsrc2, vdst; \
50 u2 inst = FETCH(0);
  /dalvik/vm/mterp/portable/
entry.c 23 const u2* pc; // program counter
25 u2 inst; // current instruction
27 u2 ref; // 16-bit quantity fetched directly
28 u2 vsrc1, vsrc2, vdst; // usually used for register indexes
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 96 return '{' + Hex.u2(label) + ": " + Hex.u2(start) + ".." +
97 Hex.u2(end) + '}';

Completed in 804 milliseconds

1 2 3 4 5 6 7 8 9