Searched refs:p1 (Results 76 - 100 of 100) sorted by relevance

1234

/barrelfish-2018-10-04/lib/libc/db/test/
H A Ddbtest.c342 u_char *p1, *p2; local
349 for (p1 = db1->data, p2 = db2->data; len--;)
350 if (*p1++ != *p2++) {
352 p1 - (u_char *)db1->data);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/
H A De_aep.c137 BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
435 t_AEP_ModExp *p1; local
463 if( !(p1 = (t_AEP_ModExp *) DSO_bind_func( aep_dso,AEP_F1)) ||
480 p_AEP_ModExp = p1;
816 BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
823 /* let rr = a1 ^ p1 mod m */
824 if (!aep_mod_exp(rr,a1,p1,m,ctx)) goto end;
815 aep_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont) argument
H A De_ubsec.c109 BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
373 t_UBSEC_ubsec_bytes_to_bits *p1; local
410 !(p1 = (t_UBSEC_ubsec_bytes_to_bits *) DSO_bind_func(ubsec_dso, UBSEC_F1)) ||
438 p_UBSEC_ubsec_bytes_to_bits = p1;
677 BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
684 /* let rr = a1 ^ p1 mod m */
685 if (!ubsec_mod_exp(rr,a1,p1,m,ctx)) goto end;
676 ubsec_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont) argument
H A De_sureware.c181 BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
187 /* let rr = a1 ^ p1 mod m */
188 if (!surewarehk_modexp(rr,a1,p1,m,ctx)) goto end;
439 SureWareHook_Init_t *p1=NULL; local
465 if(!(p1=(SureWareHook_Init_t*)DSO_bind_func(surewarehk_dso, n_surewarehk_Init)) ||
483 p_surewarehk_Init = p1;
180 surewarehk_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont) argument
H A De_chil.c512 HWCryptoHook_Init_t *p1; local
536 if(!(p1 = (HWCryptoHook_Init_t *)
561 p_hwcrhk_Init = p1;
H A De_cswift.c383 t_swAcquireAccContext *p1; local
400 if(!(p1 = (t_swAcquireAccContext *)
413 p_CSwift_AcquireAccContext = p1;
/barrelfish-2018-10-04/lib/lua/src/
H A Dlvm.c93 static void callTM (lua_State *L, const TValue *f, const TValue *p1, argument
97 setobj2s(L, L->top++, p1); /* 1st argument */
175 static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2, argument
177 const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */
181 callTM(L, tm, p1, p2, res, 1);
200 static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2, argument
202 if (!call_binTM(L, p1, p2, L->top, event))
/barrelfish-2018-10-04/include/vm/
H A Dvm_phys.c251 vm_phys_fictitious_cmp(struct vm_phys_fictitious_seg *p1, argument
256 if (p1->end == 0)
257 return (vm_phys_fictitious_in_range(p1, p2));
263 if (p1->end <= p2->start)
265 if (p1->start >= p2->end)
269 "[%#jx:%#jx] and [%#jx:%#jx]", (uintmax_t)p1->start,
270 (uintmax_t)p1->end, (uintmax_t)p2->start, (uintmax_t)p2->end);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dt1_enc.c549 unsigned char *p1,*p2=NULL; local
579 if ((p1=(unsigned char *)OPENSSL_malloc(num)) == NULL)
586 s->s3->tmp.key_block=p1;
602 if (!tls1_generate_key_block(s,p1,p2,num))
606 { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); }
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dbip_strings.c418 char *p1, *p2; local
443 p1 = StringStart(val1) + valp.nint - 1;
447 if (p1[j] != p2[j])
456 p1 = StringStart(val1);
467 if (p1[j] != p2[j])
474 p1++;
H A Dread.c424 #define Merge_Source_Pos(p1,p2,paux) \
425 paux.file = p1.file; \
426 paux.line = p1.line; \
427 paux.from = p1.from; \
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/dsa/
H A Ddsa.h122 int (*dsa_mod_exp)(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1,
/barrelfish-2018-10-04/include/openssl/
H A Ddsa.h122 int (*dsa_mod_exp)(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1,
H A Devp.h181 int (*md_ctrl)(EVP_MD_CTX *ctx, int cmd, int p1, void *p2);
1066 int cmd, int p1, void *p2);
1180 int (*ctrl)(EVP_PKEY_CTX *ctx, int type, int p1, void *p2),
H A Dbn.h488 int BN_mod_exp2_mont(BIGNUM *r, const BIGNUM *a1, const BIGNUM *p1,
/barrelfish-2018-10-04/usr/eclipseclp/ecrc_solvers/
H A Dpropia_fdtests.pl91 product(p1,1,19,1).
/barrelfish-2018-10-04/lib/libc/regex/
H A Dengine.c136 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
140 #define AT(t, p1, p2, s1, s2) /* nothing */
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/evp/
H A Devp.h181 int (*md_ctrl)(EVP_MD_CTX *ctx, int cmd, int p1, void *p2);
1066 int cmd, int p1, void *p2);
1180 int (*ctrl)(EVP_PKEY_CTX *ctx, int type, int p1, void *p2),
H A Devp_locl.h339 int (*ctrl)(EVP_PKEY_CTX *ctx, int type, int p1, void *p2);
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dengine.c52 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
56 #define AT(t, p1, p2, s1, s2) /* nothing */
/barrelfish-2018-10-04/include/openssl/local/
H A Devp_locl.h339 int (*ctrl)(EVP_PKEY_CTX *ctx, int type, int p1, void *p2);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn.h488 int BN_mod_exp2_mont(BIGNUM *r, const BIGNUM *a1, const BIGNUM *p1,
/barrelfish-2018-10-04/lib/tommath/pre_gen/
H A Dmpi.c4013 mp_int a1, p1; local
4042 if ((res = mp_init (&p1)) != MP_OKAY) {
4076 if ((res = mp_mod (p, &a1, &p1)) != MP_OKAY) {
4079 if ((res = mp_jacobi (&p1, &a1, &r)) != MP_OKAY) {
4087 LBL_P1:mp_clear (&p1);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dapps.c2511 jpake_send_part(bconn, &s1.p1);
2574 jpake_receive_part(&s1.p1, bconn);
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dapps.c2511 jpake_send_part(bconn, &s1.p1);
2574 jpake_receive_part(&s1.p1, bconn);

Completed in 387 milliseconds

1234