Searched defs:u1 (Results 1 - 25 of 63) sorted by relevance

123

/external/clang/test/Parser/
H A Dcxx-friend.cpp17 int u1; member in union:U
/external/clang/test/CXX/class/class.static/class.static.data/
H A Dp3.cpp39 U<int> u1; variable
/external/clang/test/SemaTemplate/
H A Dfun-template-def.cpp19 T f1(T t1, U u1, int i1) argument
22 t2 = i1 + u1;
23 ++u1;
24 u1++;
25 int i2 = u1;
27 i1 = t1[u1];
30 i1(u1, t1); // error
31 u1(i1, t1);
38 new int(t1, u1);
39 new (t1, u1) in
[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) {
60 /* u1 = m * w mod q */
61 if ((err = mp_read_unsigned_bin(u1, (unsigned char *)hash, hashlen)) != CRYPT_OK) { goto error; }
62 if ((err = mp_mulmod(u1, w, key->q, u1)) != CRYPT_OK) { goto error; }
67 /* v = g^u1 * y^u2 mod p mod q */
68 if ((err = mp_exptmod(key->g, u1, key->p, u1)) != CRYPT_OK) { goto error; }
70 if ((err = mp_mulmod(u1, u
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGHKernElement.cpp70 String u1 = getAttribute(u1Attr); local
74 if ((u1.isEmpty() && g1.isEmpty()) || (u2.isEmpty() && g2.isEmpty()))
80 && parseKerningUnicodeString(u1, kerningPair.unicodeRange1, kerningPair.unicodeName1)
H A DSVGVKernElement.cpp68 String u1 = getAttribute(u1Attr); local
72 if ((u1.isEmpty() && g1.isEmpty()) || (u2.isEmpty() && g2.isEmpty()))
78 && parseKerningUnicodeString(u1, kerningPair.unicodeRange1, kerningPair.unicodeName1)
H A DSVGFontElement.cpp135 static bool matches(const String& u1, const String& g1, const String& u2, const String& g2, const SVGKerningPair& kerningPair) argument
137 if (!stringMatchesUnicodeRange(u1, kerningPair.unicodeRange1, kerningPair.unicodeName1)
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);
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeOutput.java31 public void write(short u0, short u1); argument
36 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.java63 public void write(short u0, short u1) { argument
65 write(u1);
69 public void write(short u0, short u1, short u2) { argument
71 write(u1);
76 public void write(short u0, short u1, short u2, short u3) { argument
78 write(u1);
84 public void write(short u0, short u1, short u2, short u3, short u4) { argument
86 write(u1);
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_verify_hash.c29 * u1 = xw
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) {
108 /* u1 = ew */
109 if ((err = mp_mulmod(e, w, p, u1)) != CRYPT_OK) { goto error; }
123 /* compute u1*mG + u2*mQ = mG */
125 if ((err = ltc_mp.ecc_ptmul(u1, mG, mG, 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, m
[all...]
/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) */
31 mp_set(&u1, 1);
43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
45 if ((err = mp_sub(&u1, &tmp, &t1)) != MP_OKAY) { goto _ERR; }
51 /* (u1,u2,u3) = (v1,v2,v3) */
52 if ((err = mp_copy(&v1, &u1)) != MP_OKAY) { goto _ERR; }
64 mp_neg(&u1,
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DHex.java116 public static String u1(int v) { method in class:Hex
276 case 2: astr = Hex.u1(outOffset); break;
286 sb.append(Hex.u1(arr[offset]));
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgaevents.c153 int u1,int u2,int u3, int u4)
152 SVGA_mousecallback(int button, int dx, int dy, int u1,int u2,int u3, int u4) argument
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DHex.java128 public static String u1(int v) { method in class:Hex
288 case 2: astr = Hex.u1(outOffset); break;
298 sb.append(Hex.u1(arr[offset]));
/external/llvm/lib/Support/
H A DBlockFrequency.cpp26 uint64_t u1 = freq >> 32; local
34 t = u1 * N + k;
/external/openssl/crypto/dsa/
H A Ddsa_ossl.c311 BIGNUM u1,u2,t1; local
333 BN_init(&u1);
356 /* save M in u1 */
362 if (BN_bin2bn(dgst,dgst_len,&u1) == NULL) goto err;
364 /* u1 = M * w mod q */
365 if (!BN_mod_mul(&u1,&u1,&u2,dsa->q,ctx)) goto err;
380 DSA_MOD_EXP(goto err, dsa, &t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p, ctx, mont);
381 /* BN_copy(&u1,&t1); */
382 /* let u1
[all...]
/external/openssl/crypto/ecdsa/
H A Decs_ossl.c358 BIGNUM *order, *u1, *u2, *m, *X; local
379 u1 = BN_CTX_get(ctx);
427 /* u1 = m * tmp mod order */
428 if (!BN_mod_mul(u1, m, u2, order, ctx))
445 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
470 if (!BN_nnmod(u1, X, order, ctx))
475 /* if the signature is correct u1 is equal to sig->r */
476 ret = (BN_ucmp(u1, sig->r) == 0);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_stretch.c217 int u1, u2; local
308 : "=&D" (u1), "=&S" (u2)
/external/skia/tests/
H A DUtilsTest.cpp141 SkUnichar u1 = SkUTF8_NextUnichar(&p); local
144 REPORTER_ASSERT(reporter, u0 == u1);
/external/clang/test/Sema/
H A Dtype-spec-struct-union.c11 } u1; member in struct:S1
15 if (s1->u1.x == s2) return 1;
16 if (s1->u1.y == s3) return 1;
22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */
/external/clang/test/SemaCXX/
H A Danonymous-union.cpp138 double u1; // expected-note {{declared private here}} member in union:test4::A::__anon4846
153 (void) a.u1; // expected-error {{private member}}
H A Dconstexpr-printing.cpp32 constexpr U u1(&u1.arr[2]); variable
39 static_assert(test_printing(12, 39.762, 3 + 4i, 12.9 + 3.6i, &u2.arr[4], u2.another.arr[2], (vector_int){5, 1, 2, 3}, u1) == 0, ""); // \
41 expected-note {{in call to 'test_printing(12, 3.976200e+01, 3+4i, 1.290000e+01+3.600000e+00i, &u2.T::arr[4], u2.another.arr[2], {5, 1, 2, 3}, {{{}}, {{}}, &u1.T::arr[2]})'}}
H A Ddcl_init_aggr.cpp119 u u1 = { 1 }; variable
120 u u2 = u1;
/external/valgrind/main/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c149 UWord u1, v1, w1,w2,t; local
154 u1 = u >> halfShift;
158 t = u1 * v0 + (w0 >> halfShift);
162 rHi = u1 * v1 + w2 + (w1 >> halfShift);
/external/webkit/Source/JavaScriptCore/runtime/
H A DOperations.h62 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, JSString* s2) argument
64 unsigned length1 = u1.length();
69 return jsString(exec, u1);
77 return new (globalData) JSString(globalData, fiberCount, u1, s2);
82 ropeBuilder.append(u1);
112 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, const UString& u2) argument
114 unsigned length1 = u1.length();
119 return jsString(exec, u1);
124 return new (globalData) JSString(globalData, u1, u2);
127 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, cons argument
[all...]

Completed in 694 milliseconds

123