Home
last modified time | relevance | path

Searched refs:pr (Results 1 – 15 of 15) sorted by relevance

/openssl/crypto/asn1/
H A Da_int.c218 if (blen > sizeof(*pr)) { in asn1_get_uint64()
228 *pr = r; in asn1_get_uint64()
265 *pr = -(int64_t)r; in asn1_get_int64()
269 *pr = (int64_t)(0 - r); in asn1_get_int64()
276 *pr = (int64_t)r; in asn1_get_int64()
377 return asn1_get_uint64(pr, a->data, a->length); in asn1_string_get_uint64()
523 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a) in ASN1_INTEGER_get_int64() argument
525 return asn1_string_get_int64(pr, a, V_ASN1_INTEGER); in ASN1_INTEGER_get_int64()
533 int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a) in ASN1_INTEGER_get_uint64() argument
535 return asn1_string_get_uint64(pr, a, V_ASN1_INTEGER); in ASN1_INTEGER_get_uint64()
[all …]
/openssl/crypto/
H A Dia64cpuid.S72 mov r8=pr
136 mov pr=r8,0x1ffff }
195 .save pr,r9
196 mov r9=pr };;
201 mov pr.rot=1<<16 };;
215 mov pr=r9,0x1ffff
/openssl/crypto/dsa/
H A Ddsa_sign.c134 void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) in DSA_SIG_get0() argument
136 if (pr != NULL) in DSA_SIG_get0()
137 *pr = sig->r; in DSA_SIG_get0()
/openssl/crypto/bn/asm/
H A Dia64.S195 .save pr,r9
196 mov r9=pr };;
248 .save pr,r9
249 mov r9=pr };;
308 .save pr,r9
309 mov r9=pr };;
419 .save pr,r9
420 mov r9=pr
489 .save pr,r9
490 mov r9=pr };;
[all …]
/openssl/doc/man3/
H A DASN1_INTEGER_get_int64.pod13 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a);
19 int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a);
25 int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a);
40 If successful it returns 1 and sets I<*pr> to the value of I<a>. If it fails
H A DECDSA_SIG_new.pod15 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
36 in I<sig> and stores them in I<*pr> and I<*ps>, respectively.
37 The pointer I<pr> or I<ps> can be NULL, in which case the corresponding value
H A DDSA_SIG_new.pod14 void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
/openssl/crypto/aes/asm/
H A Daes-ia64.S101 mov pr.rot=1<<16 }
298 .save pr,prsave
299 mov prsave=pr }
332 mov pr=prsave,0x1ffff };;
409 mov pr=prsave,0x1ffff }//;;
478 mov pr.rot=1<<16 }
675 .save pr,prsave
676 mov prsave=pr }
709 mov pr=prsave,0x1ffff };;
786 mov pr=prsave,0x1ffff }//;;
/openssl/crypto/poly1305/asm/
H A Dpoly1305-ia64.S121 .save pr,r36
122 mov r36=pr }
273 mov pr=r36,0x1ffff };;
/openssl/crypto/cmp/
H A Dcmp_server.c507 OSSL_CMP_POLLREQ *pr; in process_pollReq() local
527 pr = sk_OSSL_CMP_POLLREQ_value(prc, 0); in process_pollReq()
528 certReqId = ossl_cmp_asn1_get_int(pr->certReqId); in process_pollReq()
/openssl/include/openssl/
H A Ddsa.h70 void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
H A Dasn1.h.in704 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a);
706 int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a);
714 int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a);
H A Dec.h1357 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
/openssl/crypto/ec/
H A Dec_asn1.c1280 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) in ECDSA_SIG_get0() argument
1282 if (pr != NULL) in ECDSA_SIG_get0()
1283 *pr = sig->r; in ECDSA_SIG_get0()
/openssl/test/
H A Devp_test.c2307 static int parse_uint64(const char *value, uint64_t *pr) in parse_uint64() argument
2315 for (*pr = 0; *p; ) { in parse_uint64()
2316 if (*pr > UINT64_MAX / 10) { in parse_uint64()
2320 *pr *= 10; in parse_uint64()
2325 *pr += *p - '0'; in parse_uint64()

Completed in 64 milliseconds