Searched defs:gx (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/Index/
H A Dindex-refs.cpp3 extern int gx;
11 NS::MyInt NS::gx = EnumVal; member in class:NS
74 // CHECK-NEXT: [indexDeclaration]: kind: variable | name: gx
78 // CHECK-NEXT: [indexDeclaration]: kind: variable | name: gx
/external/openssl/crypto/jpake/
H A Djpake.h35 BIGNUM *gx; /* g^x in step 1, g^(xa + xc + xd) * xb * s in step 2 */ member in struct:__anon10670
H A Djpake.c52 p->gx = BN_new();
59 BN_free(p->gx);
176 hashbn(&sha, p->gx);
184 * Note that p->gx has already been calculated
228 BN_mod_exp(t2, p->gx, h, ctx->p.p, ctx->ctx);
250 BN_mod_exp(p->gx, g, x, ctx->p.p, ctx->ctx);
286 static int is_legal(const BIGNUM *gx, const JPAKE_CTX *ctx) argument
291 if(BN_is_negative(gx) || BN_is_zero(gx) || BN_cmp(gx, ct
381 compute_key(JPAKE_CTX *ctx, const BIGNUM *gx) argument
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dd3basics.c935 GXResult ML_(evaluate_GX)( GExpr* gx, GExpr* fbGX, argument
943 UChar* p = &gx->payload[0];
1007 GXResult ML_(evaluate_trivial_GX)( GExpr* gx, const DebugInfo* di ) argument
1017 UChar* p = &gx->payload[0]; /* must remain unsigned */
1104 ML_(pp_GX)( gx );
1184 void ML_(pp_GX) ( GExpr* gx ) {
1188 UChar* p = &gx->payload[0];
H A Dreaddwarf3.c551 static void bias_GX ( /*MOD*/GExpr* gx, struct _DebugInfo* di ) argument
554 UChar* p = &gx->payload[0];
585 GExpr* gx; local
596 gx = ML_(dinfo_zalloc)( "di.readdwarf3.msGX.1",
598 vg_assert(gx);
600 p = pstart = &gx->payload[0];
611 vg_assert( &gx->payload[bytesReqd]
612 == ((UChar*)gx) + sizeof(GExpr) + bytesReqd );
614 return gx;
626 GExpr* gx; local
[all...]
/external/smack/src/org/xbill/DNS/
H A DDNSSEC.java377 public BigInteger p, a, b, gx, gy, n; field in class:DNSSEC.ECKeyInfo
388 gx = new BigInteger(gx_str, 16);
392 spec = new ECParameterSpec(curve, new ECPoint(gx, gy), n, 1);
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/
H A DSDL_gapivideo.c185 // try to find gx.dll
186 g_hGapiLib = LoadLibrary(_T("\\Windows\\gx.dll"));
189 g_hGapiLib = LoadLibrary(_T("gx.dll"));
343 #define gx device->hidden->gapiInfo->gxFunc macro
345 LINK( GXOpenDisplay, gx.GXOpenDisplay, "?GXOpenDisplay@@YAHPAUHWND__@@K@Z" )
346 LINK( GXCloseDisplay, gx.GXCloseDisplay, "?GXCloseDisplay@@YAHXZ" )
347 LINK( GXBeginDraw, gx.GXBeginDraw, "?GXBeginDraw@@YAPAXXZ" )
348 LINK( GXEndDraw, gx.GXEndDraw, "?GXEndDraw@@YAHXZ" )
349 LINK( GXOpenInput, gx.GXOpenInput, "?GXOpenInput@@YAHXZ" )
350 LINK( GXCloseInput, gx
[all...]
/external/dropbear/libtommath/mtest/
H A Dmpi.c2064 mp_int gx, xc, yc, u, v, A, B, C, D; local
2077 if((res = mp_init(&gx)) != MP_OKAY) goto CLEANUP;
2078 clean[++last] = &gx;
2094 mp_set(&gx, 1);
2100 if((res = s_mp_mul_2(&gx)) != MP_OKAY)
2157 if((res = mp_mul(&gx, &v, g)) != MP_OKAY) goto CLEANUP;

Completed in 314 milliseconds