Searched refs:xs (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-current/contrib/arm-optimized-routines/math/tools/
H A Dplot.py20 xs = []
33 xs.append(x)
40 return xs, gs, ys, es
42 def plot(xs, gs, ys, es):
43 if len(xs) < 2:
46 a = min(xs)
47 b = max(xs)
52 ax0.plot(xs,es,'r.')
54 ax1.plot(xs,ys,'r.',label='want')
55 ax1.plot(xs,g
[all...]
/freebsd-current/sys/dev/xen/xenstore/
H A Dxenstore.c255 static struct xs_softc xs; variable in typeref:struct:xs_softc
356 if (!xs.initialized) {
357 xs.initialized = true;
362 taskqueue_enqueue(taskqueue_swi_giant, &xs.xs_late_init);
369 mtx_lock(&xs.ring_lock);
371 mtx_unlock(&xs.ring_lock);
449 * \invariant xs.request_mutex exclusively locked.
458 sx_assert(&xs.request_mutex, SX_XLOCKED);
464 mtx_lock(&xs.ring_lock);
480 error = msleep(xen_store, &xs
[all...]
/freebsd-current/usr.bin/fetch/
H A Dfetch.c225 stat_eta(char *str, size_t strsz, const struct xferstat *xs) argument
230 elapsed = xs->last.tv_sec - xs->start.tv_sec;
231 received = xs->rcvd - xs->offset;
232 expected = xs->size - xs->rcvd;
260 stat_bps(char *str, size_t strsz, struct xferstat *xs) argument
265 delta = ((double)xs->last.tv_sec + (xs
281 stat_display(struct xferstat *xs, int force) argument
331 stat_start(struct xferstat *xs, const char *name, off_t size, off_t offset) argument
352 stat_update(struct xferstat *xs, off_t rcvd) argument
364 stat_end(struct xferstat *xs) argument
430 struct xferstat xs; local
[all...]
/freebsd-current/contrib/netbsd-tests/dev/scsipi/libscsitest/
H A Dscsitest.c83 sense_notready(struct scsipi_xfer *xs) argument
85 struct scsi_sense_data *sense = &xs->sense.scsi_sense;
87 xs->error = XS_SENSE;
103 struct scsipi_xfer *xs = arg; local
104 struct scsipi_generic *cmd = xs->cmd;
112 //show_scsipi_xs(xs);
117 sense_notready(xs);
121 struct scsipi_inquiry_data *inqbuf = (void *)xs->data;
132 struct scsipi_read_cd_cap_data *ret = (void *)xs->data;
140 struct scsipi_read_discinfo_data *ret = (void *)xs
[all...]
/freebsd-current/usr.sbin/bluetooth/sdpcontrol/
H A Dsdpcontrol.c109 void *xs = NULL; local
141 xs = sdp_open(NG_HCI_BDADDR_ANY, bdaddr);
143 xs = sdp_open_local(control);
145 if (xs == NULL)
147 if (sdp_error(xs) == 0)
148 e = (c->handler)(xs, -- argc, ++ argv);
161 cmd, strerror(sdp_error(xs)));
171 sdp_close(xs);
H A Dsearch.c530 do_sdp_search(void *xs, int argc, char **argv) argument
635 n = sdp_search(xs, 1, &service, attrs_len, attrs, values_len, values);
693 do_sdp_browse(void *xs, int argc, char **argv) argument
711 return (do_sdp_search(xs, argc, argv));
/freebsd-current/sys/dev/isp/
H A Disp_freebsd.h327 #define ISP_DMASETUP(isp, xs, req) isp_dmasetup(isp, xs, req)
328 #define ISP_DMAFREE(isp, xs) isp_dmafree(isp, xs)
508 #define XS_SAVE_SENSE(xs, sp, len) do { \
509 uint32_t amt = min(len, (xs)->sense_len); \
510 memcpy(&(xs)->sense_data, sp, amt); \
511 (xs)->sense_resid = (xs)->sense_len - amt; \
512 (xs)
[all...]
H A Disp.c2810 isp_start(XS_T *xs) argument
2820 XS_INITERR(xs);
2821 isp = XS_ISP(xs);
2830 if (XS_CDBLEN(xs) > 16 || XS_CDBLEN(xs) == 0) {
2831 isp_prt(isp, ISP_LOGERR, "unsupported cdb length (%d, CDB[0]=0x%x)", XS_CDBLEN(xs), XS_CDBP(xs)[0] & 0xff);
2832 XS_SETERR(xs, HBA_REQINVAL);
2840 target = XS_TGT(xs);
2841 fcp = FCPARAM(isp, XS_CHANNEL(xs));
2989 XS_T *xs; local
3277 XS_T *xs, *cont_xs; local
3570 XS_T *xs; local
3849 isp_parse_status_24xx(ispsoftc_t *isp, isp24xx_statusreq_t *sp, XS_T *xs) argument
[all...]
H A Disp_target.c576 void *xs; local
581 xs = isp_find_xs(isp, ct->ct_syshandle);
582 if (xs == NULL) {
586 xs = NULL;
670 if (xs == NULL) {
687 isp_prt(isp, pl, "NO xs for CTIO (handle 0x%x) status 0x%x", ct->ct_syshandle, ct->ct_nphdl);
690 ISP_DMAFREE(isp, xs);
H A Disp_freebsd.c1939 struct ccb_scsiio *xs = arg; local
1943 isp = XS_ISP(xs);
1945 handle = isp_find_handle(isp, xs);
1953 handle = isp_find_handle(isp, xs);
1964 if (isp_control(isp, ISPCTL_ABORT_CMD, xs) == 0) {
1972 xs = isp_find_xs(isp, handle);
1976 * be able to find the xs again with this handle.
1978 if (xs == NULL) {
1985 ISP_DMAFREE(isp, xs);
1988 XS_SETERR(xs, CAM_CMD_TIMEOU
2160 struct ccb_scsiio *xs; local
3239 isp_xs_prt(ispsoftc_t *isp, XS_T *xs, int level, const char *fmt, ...) argument
[all...]
/freebsd-current/usr.bin/xstr/
H A Dxstr.c424 xdotcf = fopen("xs.c", "w");
426 err(6, "xs.c");
478 ignore(unlink("xs.c"));
/freebsd-current/lib/msun/src/
H A Ds_fmal.c167 long double xs, ys, zs, adj; local
187 xs = frexpl(x, &ex);
229 volatile long double vxs = xs;
H A Ds_fma.c186 double xs, ys, zs, adj; local
206 xs = frexp(x, &ex);
248 volatile double vxs = xs;
/freebsd-current/sys/vm/
H A Dswap_pager.h75 int swap_dev_info(int name, struct xswdev *xs, char *devname, size_t len);
H A Dswap_pager.c2632 swap_dev_info(int name, struct xswdev *xs, char *devname, size_t len) argument
2646 xs->xsw_version = XSWDEV_VERSION;
2647 xs->xsw_dev = sp->sw_dev;
2648 xs->xsw_flags = sp->sw_flags;
2649 xs->xsw_nblks = sp->sw_nblks;
2650 xs->xsw_used = sp->sw_used;
2689 struct xswdev xs; local
2701 memset(&xs, 0, sizeof(xs));
2702 error = swap_dev_info(*(int *)arg1, &xs, NUL
[all...]
/freebsd-current/sys/nfs/
H A Dkrpc_subr.c450 struct xdr_string *xs; local
461 xs = mtod(m, struct xdr_string *);
463 xs->len = txdr_unsigned(len);
464 bcopy(str, xs->data, len);
/freebsd-current/contrib/bsddialog/lib/
H A Dtextbox.c40 int xs; member in struct:scrolltext
118 st->xs = (st->margin == 0) ? d->x + 1 : d->x + 2;
120 st->xe = st->xs + d->w - 3 - st->margin;
187 * pnoutrefresh(pad, ypad, xpad, ys, xs, ye, xe);
191 prefresh(st.pad, st.ypad, st.xpad, st.ys, st.xs, st.ye, st.xe);
H A Dmenubox.c60 int ys, ye, xs, xe; /* pad pos */ member in struct:privatemenu
317 realw = m->xe - m->xs;
489 m->xs = d->x + 3;
490 m->xe = m->xs + d->w - 7;
492 m->xs = d->x + 3 + (d->w-6)/2 - m->line/2;
493 m->xe = m->xs + d->w - 5;
495 drawseparators(d->conf, m); /* uses xe - xs */
496 pnoutrefresh(m->pad, m->ypad, 0, m->ys, m->xs, m->ye, m->xe);
639 pnoutrefresh(m.pad, m.ypad, 0, m.ys, m.xs, m.ye, m.xe);
670 pnoutrefresh(m.pad, m.ypad, 0, m.ys, m.xs,
[all...]
H A Dformbox.c78 unsigned int xs; /* to refresh */ member in struct:privateform
523 prefresh((f)->pad, (f)->y, 0, (f)->ys, (f)->xs, (f)->ye, (f)->xe); \
525 prefresh((f)->pad, (f)->y, 0, (f)->ys, (f)->xs, (f)->ye, (f)->xe); \
642 f->xs = d->x + 3;
643 f->xe = f->xs + d->w - 7;
645 f->xs = d->x + 3 + (d->w - 6)/2 - f->w/2;
646 f->xe = f->xs + d->w - 5;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_clone/
H A Dzfs_clone_010_pos.ksh212 xs=""; for i in {1..200}; do xs+="x"; done
221 log_must zfs clone ${fs}@snap ${fs}/${TESTCLONE}${xs}.${i}
/freebsd-current/contrib/expat/xmlwf/
H A Dxmlwf.c356 xcscmp(const XML_Char *xs, const XML_Char *xt) { argument
357 while (*xs != 0 && *xt != 0) {
358 if (*xs < *xt)
360 if (*xs > *xt)
362 xs++;
365 if (*xs < *xt)
367 if (*xs > *xt)
/freebsd-current/lib/libsdp/
H A Dsdp.h532 int32_t sdp_close (void *xs);
533 int32_t sdp_error (void *xs);
534 int32_t sdp_get_lcaddr (void *xs, bdaddr_t *l);
536 int32_t sdp_search (void *xs,
/freebsd-current/tests/sys/kern/
H A Dunix_seqpacket_test.c626 int xs, xr; local
627 socklen_t sl = sizeof(xs);
634 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_SNDBUF, &xs, &sl));
636 printf("Default | %7d | %7d |\n", xs, xr);
642 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_SNDBUF, &xs, &sl));
644 printf("After changing SNDBUF | %7d | %7d |\n", xs, xr);
650 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_SNDBUF, &xs, &sl));
652 printf("After changing RCVBUF | %7d | %7d |\n", xs, xr);
/freebsd-current/sys/kern/
H A Dkern_exec.c1897 const struct execsw **es, **xs, **newexecsw; local
1904 xs = newexecsw;
1907 *xs++ = *es;
1908 *xs++ = execsw_arg;
1909 *xs = NULL;
1919 const struct execsw **es, **xs, **newexecsw; local
1935 xs = newexecsw;
1938 *xs++ = *es;
1939 *xs = NULL;
/freebsd-current/crypto/openssl/crypto/x509/
H A Dx509_vfy.c1747 X509 *xs = xi; local
1763 xs = sk_X509_value(ctx->chain, n);
1782 * xs is the subject cert, for which the signature is to be checked
1785 * Initially xs == xi if the last cert in the chain is self-issued.
1792 && (xs != xi
1801 int issuer_depth = n + (xs == xi ? 0 : 1);
1811 * xs == xi && !(xi->ex_flags & EXFLAG_CA)) RFC 5280 does not apply
1815 int ret = xs == xi && (xi->ex_flags & EXFLAG_CA) == 0
1816 ? X509_V_OK : ossl_x509_signing_allowed(xi, xs);
1823 CB_FAIL_IF(X509_verify(xs, pke
1824 ctx, xs, n, X509_V_ERR_CERT_SIGNATURE_FAILURE); local
[all...]

Completed in 226 milliseconds

12