HomeSort by relevance Sort by last modified time
    Searched defs:u1 (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/clang/test/Parser/
cxx-friend.cpp 17 int u1; member in union:U
  /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) {
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, u2, key->p, v)) != CRYPT_OK) { goto error;
    [all...]
  /external/valgrind/main/exp-ptrcheck/tests/
strcpy.c 25 char u1[13]; local
30 u1[p2-u1] = 0; // p-?
32 u1[u2-u1] = 0; // ?-?
36 u1[p2-u1-1] = 0; // p-? (undet)
38 u1[u2-u1-1] = 0; // ?-? (undet)
40 my_strcpy(u1, p1)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Hex.java 116 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]));
  /dalvik/dx/src/com/android/dx/util/
Hex.java 116 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]));
  /development/tools/jdwpspy/
Common.h 12 typedef unsigned char u1; typedef
28 INLINE u1 get1(unsigned const char* pSrc)
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_verify_hash.c 29 * 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, mQ, u2, mG, m)) != CRYPT_OK) { goto error;
    [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) */
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;
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGHKernElement.cpp 70 String u1 = getAttribute(u1Attr); local
74 if ((u1.isEmpty() && g1.isEmpty()) || (u2.isEmpty() && g2.isEmpty()))
80 && parseKerningUnicodeString(u1, kerningPair.unicodeRange1, kerningPair.unicodeName1)
SVGVKernElement.cpp 68 String u1 = getAttribute(u1Attr); local
72 if ((u1.isEmpty() && g1.isEmpty()) || (u2.isEmpty() && g2.isEmpty()))
78 && parseKerningUnicodeString(u1, kerningPair.unicodeRange1, kerningPair.unicodeName1)
  /bionic/libm/bsdsrc/
b_log.c 370 volatile double u1;
400 /* case 1: u1 = u rounded to 2^-43 absolute. Since u < 2^-8,
401 * u1 has at most 35 bits, and F*u1 is exact, as F has < 8 bits.
405 u1 = u + 513, u1 -= 513;
408 * u1 = u to 24 bits.
411 u1 = u, TRUNC(u1);
412 u2 = (2.0*(f - F*u1) - u1*f) * g
439 volatile double u1; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
DSASigner.java 112 BigInteger u1 = m.multiply(w).mod(params.getQ()); local
115 u1 = params.getG().modPow(u1, params.getP());
118 BigInteger v = u1.multiply(u2).mod(params.getP()).mod(params.getQ());
ECDSASigner.java 132 BigInteger u1 = e.multiply(c).mod(n); local
138 ECPoint point = ECAlgorithms.sumOfTwoMultiplies(G, u1, Q, u2);
  /external/llvm/lib/Support/
BlockFrequency.cpp 26 uint64_t u1 = freq >> 32; local
34 t = u1 * N + k;
  /external/openssl/crypto/dsa/
dsa_ossl.c 297 BIGNUM u1,u2,t1; local
319 BN_init(&u1);
342 /* save M in u1 */
348 if (BN_bin2bn(dgst,dgst_len,&u1) == NULL) goto err;
350 /* u1 = M * w mod q */
351 if (!BN_mod_mul(&u1,&u1,&u2,dsa->q,ctx)) goto err;
366 DSA_MOD_EXP(goto err, dsa, &t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p, ctx, mont);
367 /* BN_copy(&u1,&t1); */
368 /* let u1 = u1 mod q *
    [all...]
  /external/openssl/crypto/ecdsa/
ecs_ossl.c 356 BIGNUM *order, *u1, *u2, *m, *X; local
377 u1 = BN_CTX_get(ctx);
425 /* u1 = m * tmp mod order */
426 if (!BN_mod_mul(u1, m, u2, order, ctx))
443 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
467 if (!BN_nnmod(u1, X, order, ctx))
472 /* if the signature is correct u1 is equal to sig->r */
473 ret = (BN_ucmp(u1, sig->r) == 0);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
155 u1 = curr->uChan + chrstart;
175 oscl_memcpy(u1, u2, B_SIZE);
176 u1 += width_C;
178 oscl_memcpy(u1, u2, B_SIZE);
179 u1 += width_C;
  /dalvik/vm/
Common.h 85 typedef uint8_t u1; typedef
105 u1 z;
  /external/bluetooth/bluez/lib/
uuid.c 90 static int bt_uuid128_cmp(const bt_uuid_t *u1, const bt_uuid_t *u2)
92 return memcmp(&u1->value.u128, &u2->value.u128, sizeof(uint128_t));
124 bt_uuid_t u1, u2; local
126 bt_uuid_to_uuid128(uuid1, &u1);
129 return bt_uuid128_cmp(&u1, &u2);
  /external/clang/test/Sema/
type-spec-struct-union.c 11 } 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 *')}} */
conversion.c 296 unsigned u1 = i; // expected-warning {{implicit conversion changes signedness}} local
297 u1 = i; // expected-warning {{implicit conversion changes signedness}}
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_stretch.c 187 int u1, u2; local
282 : "=&D" (u1), "=&S" (u2)
  /external/skia/tests/
UtilsTest.cpp 157 SkUnichar u1 = SkUTF8_NextUnichar(&p); local
160 REPORTER_ASSERT(reporter, u0 == u1);
  /external/clang/test/SemaCXX/
anonymous-union.cpp 138 double u1; // expected-note {{declared private here}} member in union:test4::A::__anon5171
153 (void) a.u1; // expected-error {{private member}}
dcl_init_aggr.cpp 119 u u1 = { 1 }; variable
120 u u2 = u1;

Completed in 488 milliseconds

1 2 3