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

  /src/sys/external/isc/libsodium/dist/test/default/
core6.c 27 unsigned int xi = x[i]; local in function:print
29 printf(",0x%02x", 255 & (xi - yi - borrow));
30 borrow = (xi < yi + borrow);
  /src/sys/lib/libsa/
bootparam.c 380 struct xdr_inaddr *xi; local in function:xdr_inaddr_encode
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 in function:xdr_inaddr_decode
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/lib/libc/gdtoa/
misc.c 178 ULong xi, z; local in function:multadd
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 in function:neg_lgam
287 xi = x;
288 if (xi == x) {
  /src/sys/nfs/
krpc_subr.c 476 struct xdr_inaddr *xi; local in function:xdr_inaddr_encode
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 in function:xdr_inaddr_decode
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/sys/arch/xen/xen/
pciback.c 367 union xen_cmdline_parseinfo xi; local in function:pciback_pci_init
373 memset(&xi, 0, sizeof(xi));
374 xen_parse_cmdline(XEN_PARSE_PCIBACK, &xi);
375 if (strlen(xi.xcp_pcidevs) == 0)
377 pcidevs = xi.xcp_pcidevs;
378 for (pcidevs = xi.xcp_pcidevs; *pcidevs != '\0';) {

Completed in 15 milliseconds