HomeSort by: relevance | last modified time | path
    Searched defs:xi (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/crypto/x509/
x509_r2x.c 23 X509_CINF *xi = NULL; local
33 xi = &ret->cert_info;
36 if ((xi->version = ASN1_INTEGER_new()) == NULL)
38 if (!ASN1_INTEGER_set(xi->version, 2))
40 /*- xi->extensions=ri->attributes; <- bad, should not ever be done
50 if (X509_gmtime_adj(xi->validity.notBefore, 0) == NULL)
52 if (X509_gmtime_adj(xi->validity.notAfter, (long)60 * 60 * 24 * days) == NULL)
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
x509_r2x.c 23 X509_CINF *xi = NULL; local
33 xi = &ret->cert_info;
36 if ((xi->version = ASN1_INTEGER_new()) == NULL)
38 if (!ASN1_INTEGER_set(xi->version, 2))
40 /*- xi->extensions=ri->attributes; <- bad, should not ever be done
50 if (X509_gmtime_adj(xi->validity.notBefore, 0) == NULL)
52 if (X509_gmtime_adj(xi->validity.notAfter, (long)60 * 60 * 24 * days) ==
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509/
x509_r2x.c 23 X509_CINF *xi = NULL; local
33 xi = &ret->cert_info;
36 if ((xi->version = ASN1_INTEGER_new()) == NULL)
38 if (!ASN1_INTEGER_set(xi->version, 2))
40 /*- xi->extensions=ri->attributes; <- bad, should not ever be done
50 if (X509_gmtime_adj(xi->validity.notBefore, 0) == NULL)
52 if (X509_gmtime_adj(xi->validity.notAfter, (long)60 * 60 * 24 * days) ==
  /src/sys/external/isc/libsodium/dist/test/default/
core6.c 27 unsigned int xi = x[i]; local
29 printf(",0x%02x", 255 & (xi - yi - borrow));
30 borrow = (xi < yi + borrow);
  /src/external/gpl3/gcc/dist/libquadmath/math/
lgammaq_product.c 33 __float128 xi = x + i; local
34 __float128 quot = t / xi;
36 mul_splitq (&mhi, &mlo, quot, xi);
37 __float128 quot_lo = (t - mhi - mlo) / xi - t * x_eps / (xi * xi);
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
lgammaq_product.c 33 __float128 xi = x + i; local
34 __float128 quot = t / xi;
36 mul_splitq (&mhi, &mlo, quot, xi);
37 __float128 quot_lo = (t - mhi - mlo) / xi - t * x_eps / (xi * xi);
  /src/external/lgpl3/mpfr/dist/tests/
tmodf.c 31 mpfr_t xi, xf, x; local
33 mpfr_init2 (xi, xip);
37 inexact = mpfr_modf (xi, xf, x, rnd_mode);
38 if (mpfr_cmp_str1 (xi, xis))
43 mpfr_out_str (stdout, 10, 0, xi, MPFR_RNDN);
63 mpfr_clears (xi, xf, x, (mpfr_ptr) 0);
69 mpfr_t x, xi, xf; local
72 mpfr_init2 (xi, 123);
77 mpfr_modf (xi, xf, x, MPFR_RNDN);
78 MPFR_ASSERTN (mpfr_nan_p (xi));
105 mpfr_t xi, xf, x; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/pem/
pem_info.c 57 X509_INFO *xi = NULL; local
76 if ((xi = X509_INFO_new()) == NULL)
97 if (xi->x509 != NULL) {
98 if (!sk_X509_INFO_push(ret, xi))
100 if ((xi = X509_INFO_new()) == NULL)
108 xi->x509 = X509_new_ex(libctx, propq);
109 if (xi->x509 == NULL)
111 pp = &(xi->x509);
114 if (xi->crl != NULL) {
115 if (!sk_X509_INFO_push(ret, xi))
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/pem/
pem_info.c 57 X509_INFO *xi = NULL; local
76 if ((xi = X509_INFO_new()) == NULL)
97 if (xi->x509 != NULL) {
98 if (!sk_X509_INFO_push(ret, xi))
100 if ((xi = X509_INFO_new()) == NULL)
108 xi->x509 = X509_new_ex(libctx, propq);
109 if (xi->x509 == NULL)
111 pp = &(xi->x509);
114 if (xi->crl != NULL) {
115 if (!sk_X509_INFO_push(ret, xi))
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/pem/
pem_info.c 41 X509_INFO *xi = NULL; local
60 if ((xi = X509_INFO_new()) == NULL)
78 if (xi->x509 != NULL) {
79 if (!sk_X509_INFO_push(ret, xi))
81 if ((xi = X509_INFO_new()) == NULL)
85 pp = &(xi->x509);
88 if (xi->x509 != NULL) {
89 if (!sk_X509_INFO_push(ret, xi))
91 if ((xi = X509_INFO_new()) == NULL)
95 pp = &(xi->x509)
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/ieee/
issignaling_fallback.h 50 uint32_t xi; local
54 xi = u.word;
56 xi ^= 0x00400000;
57 return (xi & 0x7fffffff) > 0x7fc00000;
75 uint64_t xi; local
78 xi = u.word;
80 xi ^= UINT64_C (0x0008000000000000);
81 return (xi & UINT64_C (0x7fffffffffffffff)) > UINT64_C (0x7ff8000000000000);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
typeid.cc 52 const std::type_info &xi = typeid(i); local
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
typeid.cc 52 const std::type_info &xi = typeid(i); local
  /src/crypto/external/apache2/openssl/dist/apps/
crl2pkcs7.c 206 X509_INFO *xi; local
223 xi = sk_X509_INFO_shift(sk);
224 if (xi->x509 != NULL) {
225 if (!sk_X509_push(stack, xi->x509)) {
226 X509_INFO_free(xi);
229 xi->x509 = NULL;
232 X509_INFO_free(xi);
  /src/crypto/external/bsd/openssl/dist/apps/
crl2pkcs7.c 201 X509_INFO *xi; local
218 xi = sk_X509_INFO_shift(sk);
219 if (xi->x509 != NULL) {
220 sk_X509_push(stack, xi->x509);
221 xi->x509 = NULL;
224 X509_INFO_free(xi);
  /src/crypto/external/bsd/openssl.old/dist/apps/
crl2p7.c 187 X509_INFO *xi; local
204 xi = sk_X509_INFO_shift(sk);
205 if (xi->x509 != NULL) {
206 sk_X509_push(stack, xi->x509);
207 xi->x509 = NULL;
210 X509_INFO_free(xi);
  /src/sys/lib/libsa/
bootparam.c 380 struct xdr_inaddr *xi; local
389 xi = (struct xdr_inaddr *)*pkt;
390 *pkt += sizeof(*xi);
391 xi->atype = htonl(1);
394 ip = (uint32_t *)xi->addr;
412 struct xdr_inaddr *xi; local
421 xi = (struct xdr_inaddr *)*pkt;
422 *pkt += sizeof(*xi);
423 if (xi->atype != htonl((uint32_t)1)) {
430 ip = (uint32_t *)xi->addr
    [all...]
  /src/external/lgpl3/mpc/dist/src/
mul.c 35 /* Let x=xr+i*xi and y=yr+i*yi; extract the signs of the operands */
44 u = xrs * yrs * xr * yr - xis * yis * xi * yi
45 v = xrs * yis * xr * yi + xis * yrs * xi * yr
53 /* x = (+/-inf) xr + i*xi */
84 int xi = (mpfr_zero_p (mpc_imagref (x)) || mpfr_nan_p (mpc_imagref (x)) ? 0 local
93 u = xrs * xr * yrs * yr - xis * xi * yis * yi;
94 v = xrs * xr * yis * yi + xis * xi * yrs * yr;
  /src/lib/libc/gdtoa/
misc.c 178 ULong xi, z; local
195 xi = *x;
196 y = (xi & 0xffff) * m + carry;
197 z = (xi >> 16) * m + (y >> 16);
  /src/lib/libm/noieee_src/
n_lgamma.c 282 int xi; local
287 xi = x;
288 if (xi == x) {
  /src/sys/nfs/
krpc_subr.c 476 struct xdr_inaddr *xi; local
481 xi = mtod(m, struct xdr_inaddr *);
482 m->m_len = sizeof(*xi);
483 xi->atype = txdr_unsigned(1);
484 ip = xi->addr;
498 struct xdr_inaddr *xi; local
502 if (m->m_len < sizeof(*xi)) {
503 m = m_pullup(m, sizeof(*xi));
507 xi = mtod(m, struct xdr_inaddr *);
508 if (xi->atype != txdr_unsigned(1))
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ts/
ts_conf.c 85 X509_INFO *xi = sk_X509_INFO_value(allcerts, i); local
87 if (xi->x509 != NULL) {
88 if (!X509_add_cert(othercerts, xi->x509, X509_ADD_FLAG_DEFAULT)) {
93 xi->x509 = NULL;
  /src/crypto/external/bsd/openssl/dist/crypto/modes/
gcm128.c 104 static void gcm_gmult_8bit(u64 Xi[2], const u128 Htable[256])
107 const u8 *xi = (const u8 *)Xi + 15; local
108 size_t rem, n = *xi;
181 if ((u8 *)Xi == xi)
184 n = *(--xi);
197 Xi[0] = BSWAP8(Z.hi);
198 Xi[1] = BSWAP8(Z.lo);
200 u8 *p = (u8 *)Xi;
567 const long *xi = (const long *)Xi; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ts/
ts_conf.c 77 X509_INFO *xi = sk_X509_INFO_value(allcerts, i); local
79 if (xi->x509 != NULL) {
80 if (!X509_add_cert(othercerts, xi->x509, X509_ADD_FLAG_DEFAULT)) {
85 xi->x509 = NULL;
  /src/crypto/external/bsd/openssl.old/dist/crypto/modes/
gcm128.c 102 static void gcm_gmult_8bit(u64 Xi[2], const u128 Htable[256])
105 const u8 *xi = (const u8 *)Xi + 15; local
106 size_t rem, n = *xi;
182 if ((u8 *)Xi == xi)
185 n = *(--xi);
198 Xi[0] = BSWAP8(Z.hi);
199 Xi[1] = BSWAP8(Z.lo);
201 u8 *p = (u8 *)Xi;
577 const long *xi = (const long *)Xi; local
    [all...]

Completed in 38 milliseconds

1 2