Home
last modified time | relevance | path

Searched refs:int64_t (Results 1 – 25 of 48) sorted by relevance

12

/openssl-master/crypto/ec/
A Dcurve25519.c1081 int64_t f0g0 = f0 * (int64_t) g0; in fe_mul()
1082 int64_t f0g1 = f0 * (int64_t) g1; in fe_mul()
1083 int64_t f0g2 = f0 * (int64_t) g2; in fe_mul()
1084 int64_t f0g3 = f0 * (int64_t) g3; in fe_mul()
1085 int64_t f0g4 = f0 * (int64_t) g4; in fe_mul()
1086 int64_t f0g5 = f0 * (int64_t) g5; in fe_mul()
1087 int64_t f0g6 = f0 * (int64_t) g6; in fe_mul()
1088 int64_t f0g7 = f0 * (int64_t) g7; in fe_mul()
1089 int64_t f0g8 = f0 * (int64_t) g8; in fe_mul()
1090 int64_t f0g9 = f0 * (int64_t) g9; in fe_mul()
[all …]
/openssl-master/crypto/
A Dparams.c223 case sizeof(int64_t): in OSSL_PARAM_get_int()
236 case sizeof(int64_t): in OSSL_PARAM_set_int()
286 case sizeof(int64_t): in OSSL_PARAM_get_long()
352 int64_t i64; in OSSL_PARAM_get_int32()
423 *(int64_t *)p->data = (int64_t)val; in OSSL_PARAM_set_int32()
491 int64_t i64; in OSSL_PARAM_get_uint32()
561 *(int64_t *)p->data = (int64_t)val; in OSSL_PARAM_set_uint32()
732 int64_t i64; in OSSL_PARAM_get_uint64()
813 *(int64_t *)p->data = (int64_t)val; in OSSL_PARAM_set_uint64()
954 int64_t i64; in OSSL_PARAM_get_double()
[all …]
/openssl-master/crypto/asn1/
A Da_int.c255 static int asn1_get_int64(int64_t *pr, const unsigned char *b, size_t blen, in asn1_get_int64()
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()
340 static int asn1_string_set_int64(ASN1_STRING *a, int64_t r, int itype) in asn1_string_set_int64()
525 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a) in ASN1_INTEGER_get_int64()
530 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r) in ASN1_INTEGER_set_int64()
553 int64_t r; in ASN1_INTEGER_get()
574 int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a) in ASN1_ENUMERATED_get_int64()
579 int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r) in ASN1_ENUMERATED_set_int64()
[all …]
A Dx_int64.c64 && (int64_t)utmp < 0) { in uint64_i2c()
118 return BIO_printf(out, "%jd\n", **(int64_t **)pval); in uint64_print()
/openssl-master/doc/man3/
A DASN1_INTEGER_get_int64.pod13 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a);
16 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r);
25 int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a);
28 int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r);
39 ASN1_INTEGER_get_int64() converts an B<ASN1_INTEGER> into an B<int64_t> type
41 (due to invalid type or the value being too big to fit into an B<int64_t> type)
54 B<int64_t> value I<r>.
84 B<int64_t> type. However, in many cases (for example version numbers) they
104 of an B<int64_t> type.
/openssl-master/crypto/ec/curve448/
A Dcurve448utils.h42 typedef int64_t c448_sword_t;
59 typedef int64_t c448_dsword_t;
A Dword.h32 typedef int64_t sword_t;
39 typedef int64_t dsword_t;
/openssl-master/include/openssl/
A De_os2.h229 typedef INT64 int64_t; typedef
249 typedef __int64 int64_t;
261 typedef int64_t ossl_intmax_t;
A Dparams.h47 OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(int64_t))
81 OSSL_PARAM OSSL_PARAM_construct_int64(const char *key, int64_t *buf);
109 int OSSL_PARAM_get_int64(const OSSL_PARAM *p, int64_t *val);
120 int OSSL_PARAM_set_int64(OSSL_PARAM *p, int64_t val);
A Dparam_build.h38 int64_t val);
/openssl-master/crypto/property/
A Dproperty_query.c52 int64_t ossl_property_get_number_value(const OSSL_PROPERTY_DEFINITION *prop) in ossl_property_get_number_value()
54 int64_t value = 0; in ossl_property_get_number_value()
A Dproperty_parse.c98 int64_t v = 0; in parse_number()
119 int64_t v = 0; in parse_hex()
144 int64_t v = 0; in parse_oct()
616 static void put_num(int64_t val, char **buf, size_t *remain, size_t *needed) in put_num()
618 int64_t tmpval = val; in put_num()
A Dproperty_local.h26 int64_t int_val; /* Signed integer */
/openssl-master/include/internal/
A Dnumbers.h59 # define INT64_MIN __MININT__(int64_t)
60 # define INT64_MAX __MAXINT__(int64_t)
A Dproperty.h49 int64_t ossl_property_get_number_value(const OSSL_PROPERTY_DEFINITION *prop);
/openssl-master/test/
A Dparams_conversion_test.c30 int64_t i64;
43 static int64_t datum_i64, ref_i64; in param_conversion_load_stanza()
91 pc->i64 = (int64_t)strtoimax(pp->value, &p, 10); in param_conversion_load_stanza()
191 int64_t i64; in param_conversion_test()
A Dparams_api_test.c73 int64_t i64; in test_param_type_extra()
311 int64_t in, out; in test_param_int64()
312 unsigned char buf[MAX_LEN], cmp[sizeof(int64_t)]; in test_param_int64()
313 const size_t len = raw_values[n].len >= sizeof(int64_t) in test_param_int64()
314 ? sizeof(int64_t) : raw_values[n].len; in test_param_int64()
333 return test_param_type_extra(&param, raw_values[n].value, sizeof(int64_t)); in test_param_int64()
485 int64_t i64; in test_param_construct()
A Dsafe_math_test.c291 real = (int)((int64_t)a * (int64_t)b / (int64_t)c); in test_int_muldiv()
A Dparam_build_test.c27 int64_t i64; in template_public_test()
88 || !TEST_size_t_eq(p->data_size, sizeof(int64_t)) in template_public_test()
222 || !TEST_size_t_eq(p->data_size, sizeof(int64_t)) in template_private_test()
380 || !TEST_size_t_eq(p->data_size, sizeof(int64_t)) in builder_merge_test()
A Dsanitytest.c87 || !TEST_size_t_eq(sizeof(int64_t), 8) in test_sanity_range()
/openssl-master/test/testutil/
A Drandom.c36 test_random_state[i] = (uint32_t)((16807 * (int64_t)s) % mod); in test_random_seed()
/openssl-master/ssl/
A Dssl_asn1.c25 int64_t time;
26 int64_t timeout;
166 as.time = (int64_t)in->time; in i2d_SSL_SESSION()
167 as.timeout = (int64_t)in->timeout; in i2d_SSL_SESSION()
/openssl-master/ssl/record/
A Ddtls1_bitmap.c16 int64_t ret; in satsub64be()
/openssl-master/crypto/bio/
A Dbio_print.c33 int64_t, int, int, int, int);
90 int64_t value; in _dopr()
220 value = va_arg(args, int64_t); in _dopr()
419 size_t *maxlen, int64_t value, int base, int min, int max, int flags) in fmtint()
/openssl-master/apps/lib/
A Dapp_params.c99 int64_t i; in print_param_value()

Completed in 49 milliseconds

12