Searched refs:xp (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_entry_xattr.c74 struct ae_xattr *xp; local
77 xp = entry->xattr_head->next;
81 entry->xattr_head = xp;
91 struct ae_xattr *xp; local
93 if ((xp = (struct ae_xattr *)malloc(sizeof(struct ae_xattr))) == NULL)
96 if ((xp->name = strdup(name)) == NULL)
99 if ((xp->value = malloc(size)) != NULL) {
100 memcpy(xp->value, value, size);
101 xp->size = size;
103 xp
116 struct ae_xattr *xp; local
[all...]
/freebsd-current/sys/powerpc/pseries/
H A Dphyp_vscsi.c282 struct vscsi_xfer *xp; local
340 xp = &sc->xfer[i];
341 xp->sc = sc;
343 error = bus_dmamap_create(sc->data_tag, 0, &xp->dmamap);
350 TAILQ_INSERT_TAIL(&sc->free_xferq, xp, queue);
465 struct vscsi_xfer *xp; local
469 xp = TAILQ_FIRST(&sc->free_xferq);
470 if (xp == NULL)
472 xp->ccb = ccb;
473 TAILQ_REMOVE(&sc->free_xferq, xp, queu
492 struct vscsi_xfer *xp; local
540 struct vscsi_xfer *xp; local
593 struct vscsi_xfer *xp = xxp; local
736 struct vscsi_xfer *xp; local
845 vscsi_srp_response(struct vscsi_xfer *xp, struct vscsi_crq *crq) argument
908 vscsi_login_response(struct vscsi_xfer *xp, struct vscsi_crq *crq) argument
937 struct vscsi_xfer *xp; local
[all...]
/freebsd-current/stand/common/
H A Dmetadata.c77 struct preloaded_file *xp; local
121 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) {
122 if (addr < (xp->f_addr + xp->f_size))
123 addr = xp->f_addr + xp->f_size;
196 for (xp
[all...]
/freebsd-current/stand/i386/libi386/
H A Dbootinfo64.c99 struct preloaded_file *xp, *kfp; local
134 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) {
135 if (addr < (xp->f_addr + xp->f_size))
136 addr = xp->f_addr + xp->f_size;
H A Dbootinfo32.c56 struct preloaded_file *xp, *kfp; local
116 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) {
117 if (addr < (xp->f_addr + xp->f_size))
118 addr = xp->f_addr + xp->f_size;
/freebsd-current/stand/userboot/userboot/
H A Dbootinfo64.c95 struct preloaded_file *xp, *kfp; local
129 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) {
130 if (addr < (xp->f_addr + xp->f_size))
131 addr = xp->f_addr + xp->f_size;
H A Dbootinfo32.c55 struct preloaded_file *xp, *kfp; local
97 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) {
98 if (addr < (xp->f_addr + xp->f_size))
99 addr = xp->f_addr + xp->f_size;
/freebsd-current/usr.bin/ipcs/
H A Dipc.c108 struct scgs_vector *xp; local
112 for (xp = vecarr; xp->sysctl != NULL; xp++) {
113 assert(xp->offset <= size);
114 tsiz = xp->size;
115 rv = sysctlbyname(xp->sysctl, (char *)addr + xp->offset,
118 err(1, "sysctlbyname: %s", xp->sysctl);
119 if (tsiz != xp
[all...]
/freebsd-current/sys/fs/nullfs/
H A Dnull_subr.c143 null_hashins(struct mount *mp, struct null_node *xp) argument
152 hd = NULL_NHASH(xp->null_lowervp);
155 if (oxp->null_lowervp == xp->null_lowervp &&
162 LIST_INSERT_HEAD(hd, xp, null_hash);
166 null_destroy_proto(struct vnode *vp, void *xp) argument
177 free(xp, M_NULLFSNODE);
191 struct null_node *xp; local
211 xp = malloc(sizeof(struct null_node), M_NULLFSNODE, M_WAITOK);
216 free(xp, M_NULLFSNODE);
224 xp
272 null_hashrem(struct null_node *xp) argument
[all...]
H A Dnull.h64 #define NULLTOV(xp) ((xp)->null_vnode)
70 void null_hashrem(struct null_node *xp);
H A Dnull_vnops.c842 struct null_node *xp; local
846 xp = VTONULL(vp);
851 (xp->null_flags & NULLV_DROP) != 0 ||
892 struct null_node *xp; local
896 xp = VTONULL(vp);
897 lowervp = xp->null_lowervp;
902 null_hashrem(xp);
925 if ((xp->null_flags & NULLV_NOUNLOCK) != 0)
929 free(xp, M_NULLFSNODE);
947 struct null_node *xp; local
1025 struct null_node *xp; local
1047 struct null_node *xp; local
[all...]
/freebsd-current/sys/powerpc/ps3/
H A Dps3cdrom.c162 struct ps3cdrom_xfer *xp; local
208 xp = &sc->sc_xfer[i];
209 xp->x_sc = sc;
212 &xp->x_dmamap);
219 TAILQ_INSERT_TAIL(&sc->sc_free_xferq, xp, x_queue);
287 while ((xp = TAILQ_FIRST(&sc->sc_free_xferq))) {
288 TAILQ_REMOVE(&sc->sc_free_xferq, xp, x_queue);
289 bus_dmamap_destroy(sc->sc_dmatag, xp->x_dmamap);
340 struct ps3cdrom_xfer *xp; local
363 xp
470 struct ps3cdrom_xfer *xp; local
549 struct ps3cdrom_xfer *xp = (struct ps3cdrom_xfer *) arg; local
[all...]
/freebsd-current/stand/efi/loader/
H A Dbootinfo.c330 struct preloaded_file *xp, *kfp; local
380 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) {
381 if (addr < xp->f_addr + xp->f_size)
382 addr = xp->f_addr + xp->f_size;
460 for (xp
[all...]
/freebsd-current/crypto/openssl/crypto/x509/
H A Dv3_purp.c20 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
22 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
24 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
27 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
29 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
31 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
33 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
35 static int no_check_purpose(const X509_PURPOSE *xp, const X509 *x,
37 static int check_purpose_ocsp_helper(const X509_PURPOSE *xp, const X509 *x,
239 int X509_PURPOSE_get_id(const X509_PURPOSE *xp) argument
244 X509_PURPOSE_get0_name(const X509_PURPOSE *xp) argument
249 X509_PURPOSE_get0_sname(const X509_PURPOSE *xp) argument
254 X509_PURPOSE_get_trust(const X509_PURPOSE *xp) argument
714 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
738 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
755 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
795 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
807 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
819 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
838 check_purpose_ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
851 check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
886 no_check_purpose(const X509_PURPOSE *xp, const X509 *x, int require_ca) argument
[all...]
H A Dx509_trust.c202 int X509_TRUST_get_flags(const X509_TRUST *xp) argument
204 return xp->flags;
207 char *X509_TRUST_get0_name(const X509_TRUST *xp) argument
209 return xp->name;
212 int X509_TRUST_get_trust(const X509_TRUST *xp) argument
214 return xp->trust;
/freebsd-current/usr.bin/xargs/
H A Dxargs.c77 static char **av, **bxp, **ep, **endxp, **xp; variable
276 endxp = (xp = bxp) + nargs;
347 *xp++ = argp;
390 if (xp == endxp || p > ebp || ch == EOF ||
392 if (xflag && xp != endxp && p > ebp) {
398 *xp++ = *avj;
406 xp = bxp;
440 if (bxp == xp) {
452 *xp++ = *avj;
455 xp
[all...]
/freebsd-current/lib/libc/gen/
H A Dopendir.c227 struct dirent *xp; local
235 xp = NULL;
245 if ((xp == NULL) ||
246 strcmp(dp->d_name, xp->d_name)) {
247 xp = dp;
/freebsd-current/contrib/nvi/vi/
H A Dvs_line.c37 vs_line(SCR *sp, SMAP *smp, size_t *yp, size_t *xp) argument
153 *xp = sp->cols - cols_per_screen;
389 *xp = scno - smp->c_ecsize;
391 *xp = scno - chlen;
393 *xp = scno - 1;
396 *xp += O_NUMBER_LENGTH;
/freebsd-current/contrib/sendmail/src/
H A Dmacro.c184 char *xp; local
208 for (xp = xbuf; *s != '\0'; s++)
283 if (skipping || xp >= &xbuf[sizeof(xbuf) - 1])
286 *xp++ = c;
293 xp < &xbuf[sizeof(xbuf) - 1])
298 *xp++ = c;
305 *xp = '\0';
332 i = xp - xbuf;
/freebsd-current/sbin/rcorder/
H A Dhash.c401 register Hash_Entry *e, *next = NULL, **hp, **xp; local
417 xp = &t->bucketPtr[e->namehash & mask];
418 e->next = *xp;
419 *xp = e;
/freebsd-current/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-generic.c87 * formed by `s[3] = xp[3];` and `xp[0] = s[0];` and call this function will
158 uint64_t *xp, s[4]; local
162 xp = get_cpu_ptr(spl_pseudo_entropy);
164 s[0] = xp[0];
165 s[1] = xp[1];
166 s[2] = xp[2];
167 s[3] = xp[3];
191 xp[0] = s[0];
192 xp[
[all...]
/freebsd-current/sys/ufs/ffs/
H A Dffs_snapshot.c208 struct inode *ip, *xp; local
581 xp = VTOI(xvp);
582 if (ffs_checkfreefile(copy_fs, vp, xp->i_number)) {
591 loc = howmany(xp->i_size, fs->fs_bsize) - 1;
593 len = fragroundup(fs, blkoff(fs, xp->i_size));
596 DIP(xp, i_db[loc]), len, xp->i_number,
598 blkno = DIP(xp, i_db[loc]);
599 DIP_SET(xp, i_db[loc], 0);
603 if (I_IS_UFS1(xp))
1592 struct inode *xp; local
2128 struct inode *xp; local
[all...]
/freebsd-current/sys/dev/isp/
H A Dispvar.h667 #define ISP_FW_REVX(xp) (((xp)[0] << 16) | ((xp)[1] << 8) | (xp)[2])
668 #define ISP_FW_MAJORX(xp) (xp[0])
669 #define ISP_FW_MINORX(xp) (xp[1])
670 #define ISP_FW_MICROX(xp) (xp[
[all...]
/freebsd-current/cddl/contrib/opensolaris/common/ctf/
H A Dctf_open.c253 uint_t *xp = fp->ctf_sxlate; local
254 uint_t *xend = xp + fp->ctf_nsyms;
271 for (; xp < xend; xp++, symp += sp->cts_entsize) {
285 *xp = -1u;
293 *xp = -1u;
297 *xp = objtoff;
303 *xp = -1u;
307 *xp = funcoff;
326 *xp
349 uint_t *xp; local
[all...]
/freebsd-current/sys/fs/unionfs/
H A Dunion.h127 #define UNIONFSTOV(xp) ((xp)->un_vnode)

Completed in 183 milliseconds

123