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

12345

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeOutput.java36 public void write(short u0, short u1, short u2); argument
41 public void write(short u0, short u1, short u2, short u3); argument
46 public void write(short u0, short u1, short u2, short u3, short u4); argument
H A DShortArrayCodeOutput.java69 public void write(short u0, short u1, short u2) { argument
72 write(u2);
76 public void write(short u0, short u1, short u2, short u3) { argument
79 write(u2);
84 public void write(short u0, short u1, short u2, short u3, short u4) { argument
87 write(u2);
/external/e2fsprogs/lib/uuid/
H A Dcompare.c40 #define UUCMP(u1,u2) if (u1 != u2) return((u1 < u2) ? -1 : 1);
H A Duuid.h58 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
59 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
61 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
62 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
H A Duuid.h.in58 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
59 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
61 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
62 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.15/src/video/aalib/
H A DSDL_aaevents_c.h31 int u1,int u2,int u3, int u4);
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgaevents_c.h31 int u1,int u2,int u3, int u4);
/external/dropbear/libtommath/
H A Dbn_mp_exteuclid.c19 a*u1 + b*u2 = 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/
H A Ddsa_verify_hash.c35 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/
H A Ddes_locl.h215 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
[all...]
/external/clang/test/CodeGen/
H A Ddesignated-initializers.c11 // CHECK: @u2 = global { i32, [4 x i8] } { i32 0, [4 x i8] undef }
12 union { int i; double f; } u2 = { }; variable in typeref:union:__anon4209
62 // CHECK: bitcast %union.anon.4* %u2
64 union { int i; float f; } u2 = { }; local
H A Dunion.c46 union { int large_bitfield: 31; char c } u2; variable in typeref:union:__anon4274
/external/webkit/Source/WebCore/svg/
H A DSVGFontElement.cpp135 static bool matches(const String& u1, const String& g1, const String& u2, const String& g2, const SVGKerningPair& kerningPair) argument
141 if (!stringMatchesUnicodeRange(u2, kerningPair.unicodeRange2, kerningPair.unicodeName2)
148 static float kerningForPairOfStringsAndGlyphs(KerningPairVector& kerningPairs, const String& u1, const String& g1, const String& u2, const String& g2) argument
153 if (matches(u1, g1, u2, g2, *it))
160 float SVGFontElement::horizontalKerningForPairOfStringsAndGlyphs(const String& u1, const String& g1, const String& u2, const String& g2) const argument
165 return kerningForPairOfStringsAndGlyphs(m_horizontalKerningPairs, u1, g1, u2, g2);
168 float SVGFontElement::verticalKerningForPairOfStringsAndGlyphs(const String& u1, const String& g1, const String& u2, const String& g2) const argument
173 return kerningForPairOfStringsAndGlyphs(m_verticalKerningPairs, u1, g1, u2, g2);
H A DSVGHKernElement.cpp72 String u2 = getAttribute(u2Attr); local
74 if ((u1.isEmpty() && g1.isEmpty()) || (u2.isEmpty() && g2.isEmpty()))
81 && parseKerningUnicodeString(u2, kerningPair.unicodeRange2, kerningPair.unicodeName2)) {
H A DSVGVKernElement.cpp70 String u2 = getAttribute(u2Attr); local
72 if ((u1.isEmpty() && g1.isEmpty()) || (u2.isEmpty() && g2.isEmpty()))
79 && parseKerningUnicodeString(u2, kerningPair.unicodeRange2, kerningPair.unicodeName2)) {
H A DSVGFontElement.h64 float horizontalKerningForPairOfStringsAndGlyphs(const String& u1, const String& g1, const String& u2, const String& g2) const;
65 float verticalKerningForPairOfStringsAndGlyphs(const String& u1, const String& g1, const String& u2, const String& g2) const;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template.cpp22 TU<2> u2; variable
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_verify_hash.c30 * u2 = rw
31 * X = u1*G + u2*Q
51 void *r, *s, *v, *w, *u1, *u2, *e, *p, *m; local
70 if ((err = mp_init_multi(&r, &s, &v, &w, &u1, &u2, &p, &e, &m, NULL)) != CRYPT_OK) {
111 /* u2 = rw */
112 if ((err = mp_mulmod(r, w, p, u2)) != CRYPT_OK) { goto error; }
123 /* compute u1*mG + u2*mQ = mG */
126 if ((err = ltc_mp.ecc_ptmul(u2, mQ, mQ, m, 0)) != CRYPT_OK) { goto error; }
137 /* use Shamir's trick to compute u1*mG + u2*mQ using half of the doubles */
138 if ((err = ltc_mp.ecc_mul2add(mG, u1, mQ, u2, m
[all...]
/external/elfutils/tests/
H A Dshow-die-info.c309 Dwarf_Word u2; local
313 || dwarf_formudata (&attr, &u2) != 0
314 || i != (int) u2)
337 Dwarf_Word u2; local
341 || dwarf_formudata (&attr, &u2) != 0
342 || i != (int) u2)
366 Dwarf_Word u2; local
370 || dwarf_formudata (&attr, &u2) != 0
371 || i != (int) u2)
395 Dwarf_Word u2; local
425 Dwarf_Word u2; local
[all...]
/external/quake/quake/src/QW/client/
H A Dd_edge.c87 int u, u2, pix; local
94 u2 = span->u + span->count - 1;
97 if (u2 - u < 8)
99 for (u++ ; u <= u2 ; u++)
107 u2 -= 4;
108 for ( ; u <= u2 ; u+=4)
110 u2 += 4;
111 for ( ; u <= u2 ; u++)
/external/quake/quake/src/WinQuake/
H A Dd_edge.cpp87 int u, u2, pix; local
94 u2 = span->u + span->count - 1;
97 if (u2 - u < 8)
99 for (u++ ; u <= u2 ; u++)
107 u2 -= 4;
108 for ( ; u <= u2 ; u+=4)
110 u2 += 4;
111 for ( ; u <= u2 ; u++)
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCodeItem.java169 out.println("regs: " + Hex.u2(getRegistersSize()) +
170 "; ins: " + Hex.u2(getInsSize()) + "; outs: " +
171 Hex.u2(getOutsSize()));
245 out.annotate(2, " registers_size: " + Hex.u2(regSz));
246 out.annotate(2, " ins_size: " + Hex.u2(insSz));
247 out.annotate(2, " outs_size: " + Hex.u2(outsSz));
248 out.annotate(2, " tries_size: " + Hex.u2(triesSz));
/external/clang/test/SemaCXX/
H A Dcxx0x-nontrivial-union.cpp13 union u2 { union
16 u2(int k) : k(k) {} function in union:u2
17 u2() : nt() {} function in union:u2
/external/bouncycastle/bcprov/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());
/external/clang/test/CXX/class/class.static/class.static.data/
H A Dp3.cpp40 U<NonLit> u2; // expected-note {{here}} variable

Completed in 1519 milliseconds

12345