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

12

/external/e2fsprogs/lib/uuid/
H A Dcompare.c40 #define UUCMP(u1,u2) if (u1 != u2) return((u1 < u2) ? -1 : 1);
H A Duuid.h56 #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/
H A DSDL_aaevents_c.h31 int u1,int u2,int u3, int u4);
/external/qemu/distrib/sdl-1.2.12/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/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.c259 Dwarf_Word u2; local
263 || dwarf_formudata (&attr, &u2) != 0
264 || i != (int) u2)
287 Dwarf_Word u2; local
291 || dwarf_formudata (&attr, &u2) != 0
292 || i != (int) u2)
316 Dwarf_Word u2; local
320 || dwarf_formudata (&attr, &u2) != 0
321 || i != (int) u2)
345 Dwarf_Word u2; local
375 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/bouncycastle/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/webkit/WebCore/svg/
H A DSVGFontElement.h47 bool getHorizontalKerningPairForStringsAndGlyphs(const String& u1, const String& g1, const String& u2, const String& g2, SVGHorizontalKerningPair& kerningPair) const;
H A DSVGFontElement.cpp216 static bool matches(const String& u1, const String& g1, const String& u2, const String& g2, const SVGHorizontalKerningPair& kerningPair) argument
223 if (kerningPair.unicode2.length() && !stringMatchesUnicodeRange(u2, kerningPair.unicode2))
231 bool SVGFontElement::getHorizontalKerningPairForStringsAndGlyphs(const String& u1, const String& g1, const String& u2, const String& g2, SVGHorizontalKerningPair& kerningPair) const argument
234 if (matches(u1, g1, u2, g2, m_kerningPairs[i])) {
/external/openssl/crypto/dsa/
H A Ddsa_ossl.c306 BIGNUM u1,u2,t1; local
338 BN_init(&u2);
357 * save W in u2 */
358 if ((BN_mod_inverse(&u2,sig->s,dsa->q,ctx)) == NULL) goto err;
369 if (!BN_mod_mul(&u1,&u1,&u2,dsa->q,ctx)) goto err;
371 /* u2 = r * w mod q */
372 if (!BN_mod_mul(&u2,sig->r,&u2,dsa->q,ctx)) goto err;
384 DSA_MOD_EXP(goto err, dsa, &t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p, ctx, mont);
399 BN_free(&u2);
[all...]
/external/openssl/crypto/ecdsa/
H A Decs_ossl.c348 BIGNUM *order, *u1, *u2, *m, *X; local
370 u2 = BN_CTX_get(ctx);
394 if (!BN_mod_inverse(u2, sig->s, order, ctx))
418 if (!BN_mod_mul(u1, m, u2, order, ctx))
423 /* u2 = r * w mod q */
424 if (!BN_mod_mul(u2, sig->r, u2, order, ctx))
435 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
/external/elfutils/libdw/
H A Dmemory-access.h143 uint16_t u2; member in union:unaligned
156 return bswap_16 (up->u2);
157 return up->u2;
164 return (int16_t) bswap_16 (up->u2);
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_stdinc.h244 int u0, u1, u2; \
248 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
276 int u0, u1, u2; \
287 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
324 int u0, u1, u2; \
332 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_stretch.c187 int u1, u2; local
282 : "=&D" (u1), "=&S" (u2)
H A DSDL_glfuncs.h168 SDL_PROC_UNUSED(void,glMap1d,(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points))
169 SDL_PROC_UNUSED(void,glMap1f,(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points))
170 SDL_PROC_UNUSED(void,glMap2d,(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points))
171 SDL_PROC_UNUSED(void,glMap2f,(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points))
172 SDL_PROC_UNUSED(void,glMapGrid1d,(GLint un, GLdouble u1, GLdouble u2))
173 SDL_PROC_UNUSED(void,glMapGrid1f,(GLint un, GLfloat u1, GLfloat u2))
174 SDL_PROC_UNUSED(void,glMapGrid2d,(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2))
175 SDL_PROC_UNUSED(void,glMapGrid2f,(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2))
/external/webkit/JavaScriptCore/runtime/
H A DOperations.h79 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, const UString& u2) argument
85 return new (globalData) JSString(globalData, ropeLength, s1, u2);
92 rope->append(index, u2);
/external/fdlibm/
H A De_lgamma_r.c126 u2 = 1.45492250137234768737e+00, /* 0x3FF7475C, 0xD119BD6F */ variable
271 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
/external/webkit/SunSpider/tests/sunspider-0.9/
H A D3d-raytrace.js144 var u2 = edge2[u];
150 var det = u1 * v2 - v1 * u2;
156 this.nv2 = -u2 / det;
/external/webkit/SunSpider/tests/sunspider-0.9.1/
H A D3d-raytrace.js144 var u2 = edge2[u];
150 var det = u1 * v2 - v1 * u2;
156 this.nv2 = -u2 / det;
/external/tcpdump/
H A Dprint-802_11.c1015 } u, u2; local
1038 rc = cpack_uint16(s, &u2.u16);
1071 if (u2.u16 != 0)
1072 printf("(0x%04x) ", u2.u16);

Completed in 515 milliseconds

12