Home
last modified time | relevance | path

Searched full:xp (Results 1 – 25 of 299) sorted by relevance

12345678910>>...12

/freebsd/sys/powerpc/pseries/
H A Dphyp_vscsi.c282 struct vscsi_xfer *xp; in vscsi_attach() local
340 xp = &sc->xfer[i]; in vscsi_attach()
341 xp->sc = sc; in vscsi_attach()
343 error = bus_dmamap_create(sc->data_tag, 0, &xp->dmamap); in vscsi_attach()
350 TAILQ_INSERT_TAIL(&sc->free_xferq, xp, queue); in vscsi_attach()
465 struct vscsi_xfer *xp; in vscsi_cam_action() local
469 xp = TAILQ_FIRST(&sc->free_xferq); in vscsi_cam_action()
470 if (xp == NULL) in vscsi_cam_action()
472 xp->ccb = ccb; in vscsi_cam_action()
473 TAILQ_REMOVE(&sc->free_xferq, xp, queue); in vscsi_cam_action()
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_entry_xattr.c74 struct ae_xattr *xp; in archive_entry_xattr_clear() local
77 xp = entry->xattr_head->next; in archive_entry_xattr_clear()
81 entry->xattr_head = xp; in archive_entry_xattr_clear()
91 struct ae_xattr *xp; in archive_entry_xattr_add_entry() local
93 if ((xp = malloc(sizeof(struct ae_xattr))) == NULL) in archive_entry_xattr_add_entry()
96 if ((xp->name = strdup(name)) == NULL) in archive_entry_xattr_add_entry()
99 if ((xp->value = malloc(size)) != NULL) { in archive_entry_xattr_add_entry()
100 memcpy(xp->value, value, size); in archive_entry_xattr_add_entry()
101 xp->size = size; in archive_entry_xattr_add_entry()
103 xp->size = 0; in archive_entry_xattr_add_entry()
[all …]
/freebsd/sys/powerpc/ps3/
H A Dps3cdrom.c162 struct ps3cdrom_xfer *xp; in ps3cdrom_attach() local
208 xp = &sc->sc_xfer[i]; in ps3cdrom_attach()
209 xp->x_sc = sc; in ps3cdrom_attach()
212 &xp->x_dmamap); in ps3cdrom_attach()
219 TAILQ_INSERT_TAIL(&sc->sc_free_xferq, xp, x_queue); in ps3cdrom_attach()
287 while ((xp = TAILQ_FIRST(&sc->sc_free_xferq))) { in ps3cdrom_attach()
288 TAILQ_REMOVE(&sc->sc_free_xferq, xp, x_queue); in ps3cdrom_attach()
289 bus_dmamap_destroy(sc->sc_dmatag, xp->x_dmamap); in ps3cdrom_attach()
340 struct ps3cdrom_xfer *xp; in ps3cdrom_action() local
363 xp = TAILQ_FIRST(&sc->sc_free_xferq); in ps3cdrom_action()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Darmada-xp.dtsi3 * Device Tree Include file for Marvell Armada XP family SoC
12 * Contains definitions specific to the Armada XP SoC that are not
16 #include "armada-370-xp.dtsi"
22 model = "Marvell Armada XP family SoC";
23 compatible = "marvell,armadaxp", "marvell,armada-370-xp";
40 compatible = "marvell,armada-xp-sdram-controller";
78 compatible = "marvell,armada-370-xp-system-controller";
83 compatible = "marvell,armada-xp-gating-clock";
90 compatible = "marvell,armada-xp-core-clock";
104 compatible = "marvell,armada-xp-cpu-clock";
[all …]
H A Darmada-xp-98dx3236.dtsi8 * common to all Armada XP SoCs.
11 #include "armada-370-xp.dtsi"
18 compatible = "marvell,armadaxp-98dx3236", "marvell,armada-370-xp";
58 compatible = "marvell,armada-xp-pcie";
104 compatible = "marvell,armada-xp-sdram-controller";
147 compatible = "marvell,armada-370-xp-system-controller";
170 compatible = "marvell,armada-xp-cpu-config";
175 compatible = "marvell,armada-xp-neta";
179 compatible = "marvell,armada-xp-neta";
290 compatible = "marvell,armada-xp-timer";
[all …]
H A Darmada-xp-matrix.dts3 * Device Tree file for Marvell Armada XP Matrix board
11 #include "armada-xp-mv78460.dtsi"
14 model = "Marvell Armada XP Matrix Board";
15 …le = "marvell,axp-matrix", "marvell,armadaxp-mv78460", "marvell,armadaxp", "marvell,armada-370-xp";
/freebsd/lib/libxo/tests/
H A DMakefile40 ${PACKAGE}FILES+= test_01.XP.err
41 ${PACKAGE}FILES+= test_01.XP.out
60 ${PACKAGE}FILES+= test_02.XP.err
61 ${PACKAGE}FILES+= test_02.XP.out
80 ${PACKAGE}FILES+= test_03.XP.err
81 ${PACKAGE}FILES+= test_03.XP.out
100 ${PACKAGE}FILES+= test_04.XP.err
101 ${PACKAGE}FILES+= test_04.XP.out
118 ${PACKAGE}FILES+= test_05.XP.err
119 ${PACKAGE}FILES+= test_05.XP.out
[all …]
/freebsd/sys/fs/nullfs/
H A Dnull_subr.c143 null_hashins(struct mount *mp, struct null_node *xp) in null_hashins() argument
152 hd = NULL_NHASH(xp->null_lowervp); in null_hashins()
155 if (oxp->null_lowervp == xp->null_lowervp && in null_hashins()
162 LIST_INSERT_HEAD(hd, xp, null_hash); in null_hashins()
166 null_destroy_proto(struct vnode *vp, void *xp) in null_destroy_proto() argument
177 free(xp, M_NULLFSNODE); in null_destroy_proto()
191 struct null_node *xp; in null_nodeget() local
211 xp = malloc(sizeof(struct null_node), M_NULLFSNODE, M_WAITOK); in null_nodeget()
216 free(xp, M_NULLFSNODE); in null_nodeget()
224 xp->null_vnode = vp; in null_nodeget()
[all …]
/freebsd/stand/common/
H A Dmetadata.c77 struct preloaded_file *xp; in md_load_dual() local
121 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in md_load_dual()
122 if (addr < (xp->f_addr + xp->f_size)) in md_load_dual()
123 addr = xp->f_addr + xp->f_size; in md_load_dual()
196 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in md_load_dual()
198 md = file_findmetadata(xp, mdt[i]); in md_load_dual()
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_x931p.c49 * and Xp derive the prime p. If the parameters p1 or p2 are not NULL they
54 const BIGNUM *Xp, const BIGNUM *Xp1, in BN_X931_derive_prime_ex() argument
113 if (!BN_mod_sub(p, p, Xp, p1p2, ctx)) in BN_X931_derive_prime_ex()
116 if (!BN_add(p, p, Xp)) in BN_X931_derive_prime_ex()
158 * Generate pair of parameters Xp, Xq for X9.31 prime generation. Note: nbits
162 int BN_X931_generate_Xpq(BIGNUM *Xp, BIGNUM *Xq, int nbits, BN_CTX *ctx) in BN_X931_generate_Xpq() argument
174 * The random value Xp must be between sqrt(2) * 2^(nbits-1) and 2^nbits in BN_X931_generate_Xpq()
178 if (!BN_priv_rand_ex(Xp, nbits, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ANY, 0, in BN_X931_generate_Xpq()
192 /* Check that |Xp - Xq| > 2^(nbits - 100) */ in BN_X931_generate_Xpq()
193 if (!BN_sub(t, Xp, Xq)) in BN_X931_generate_Xpq()
[all …]
/freebsd/usr.bin/ipcs/
H A Dipc.c108 struct scgs_vector *xp; in sysctlgatherstruct() local
112 for (xp = vecarr; xp->sysctl != NULL; xp++) { in sysctlgatherstruct()
113 assert(xp->offset <= size); in sysctlgatherstruct()
114 tsiz = xp->size; in sysctlgatherstruct()
115 rv = sysctlbyname(xp->sysctl, (char *)addr + xp->offset, in sysctlgatherstruct()
118 err(1, "sysctlbyname: %s", xp->sysctl); in sysctlgatherstruct()
119 if (tsiz != xp->size) in sysctlgatherstruct()
121 xp->sysctl, xp->size, tsiz); in sysctlgatherstruct()
/freebsd/sys/contrib/device-tree/Bindings/arm/marvell/
H A Darmada-370-xp-pmsu.txt3 Available on Marvell SOCs: Armada 370, Armada 38x and Armada XP
8 - "marvell,armada-370-pmsu" for Armada 370 or Armada XP
10 - "marvell,armada-370-xp-pmsu" was used for Armada 370/XP but is now
17 armada-370-xp-pmsu@22000 {
H A Darmada-370-xp.txt1 Marvell Armada 370 and Armada XP Platforms Device Tree Bindings
4 Boards with a SoC of the Marvell Armada 370 and Armada XP families
9 compatible: must contain "marvell,armada-370-xp"
18 In addition, boards using the Marvell Armada XP SoC shall have the
H A Dmvebu-cpu-config.txt4 MVEBU (Marvell SOCs: Armada 370/XP)
10 - "marvell,armada-xp-cpu-config"
18 compatible = "marvell,armada-xp-cpu-config";
/freebsd/stand/userboot/userboot/
H A Dbootinfo64.c95 struct preloaded_file *xp, *kfp; in bi_load64() local
129 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in bi_load64()
130 if (addr < (xp->f_addr + xp->f_size)) in bi_load64()
131 addr = xp->f_addr + xp->f_size; in bi_load64()
H A Dbootinfo32.c55 struct preloaded_file *xp, *kfp; in bi_load32() local
97 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in bi_load32()
98 if (addr < (xp->f_addr + xp->f_size)) in bi_load32()
99 addr = xp->f_addr + xp->f_size; in bi_load32()
/freebsd/stand/i386/libi386/
H A Dbootinfo32.c56 struct preloaded_file *xp, *kfp; in bi_load32() local
116 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in bi_load32()
117 if (addr < (xp->f_addr + xp->f_size)) in bi_load32()
118 addr = xp->f_addr + xp->f_size; in bi_load32()
H A Dbootinfo64.c99 struct preloaded_file *xp, *kfp; in bi_load64() local
134 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in bi_load64()
135 if (addr < (xp->f_addr + xp->f_size)) in bi_load64()
136 addr = xp->f_addr + xp->f_size; in bi_load64()
/freebsd/sys/contrib/device-tree/Bindings/timer/
H A Dmarvell,armada-370-xp-timer.txt1 Marvell Armada 370 and Armada XP Timers
8 "marvell,armada-xp-timer".
18 Clocks required for compatibles = "marvell,armada-xp-timer",
36 - Armada XP:
39 compatible = "marvell,armada-xp-timer";
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dmvebu-sdram-controller.txt8 Armada XP SDRAM controller.
12 - compatible: for Armada XP, "marvell,armada-xp-sdram-controller"
19 compatible = "marvell,armada-xp-sdram-controller";
/freebsd/crypto/openssl/crypto/rsa/
H A Drsa_x931g.c27 const BIGNUM *Xp, const BIGNUM *Xq1, const BIGNUM *Xq2, in RSA_X931_derive_ex() argument
62 if (Xp && rsa->p == NULL) { in RSA_X931_derive_ex()
68 Xp, Xp1, Xp2, e, ctx, cb)) in RSA_X931_derive_ex()
155 BIGNUM *Xp = NULL, *Xq = NULL; in RSA_X931_generate_key_ex() local
163 Xp = BN_CTX_get(ctx); in RSA_X931_generate_key_ex()
167 if (!BN_X931_generate_Xpq(Xp, Xq, bits, ctx)) in RSA_X931_generate_key_ex()
175 /* Generate two primes from Xp, Xq */ in RSA_X931_generate_key_ex()
177 if (!BN_X931_generate_prime_ex(rsa->p, NULL, NULL, NULL, NULL, Xp, in RSA_X931_generate_key_ex()
/freebsd/sbin/pfctl/
H A Dpf.os383 # Windows TCP/IP stack is a mess. For most recent XP, 2000 and
424 # Windows XP and 2000. Most of the signatures that were
428 65535:128:1:48:M*,N,N,S: Windows:2000:SP4:Windows 2000 SP4, XP SP1
429 65535:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows 2000 SP4, XP SP1
430 %8192:128:1:48:M*,N,N,S: Windows:2000:SP2+:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222)
431 %8192:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222)
432 S20:128:1:48:M*,N,N,S: Windows:2000::Windows 2000/XP SP3
433 S20:128:1:48:M*,N,N,S: Windows:XP:SP3:Windows 2000/XP SP3
434 S45:128:1:48:M*,N,N,S: Windows:2000:SP4:Windows 2000 SP4, XP SP 1
435 S45:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows 2000 SP4, XP SP 1
[all …]
/freebsd/stand/efi/loader/
H A Dbootinfo.c330 struct preloaded_file *xp, *kfp; in bi_load() local
389 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in bi_load()
390 if (addr < xp->f_addr + xp->f_size) in bi_load()
391 addr = xp->f_addr + xp->f_size; in bi_load()
480 for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) { in bi_load()
482 md = file_findmetadata(xp, mdt[i]); in bi_load()
/freebsd/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) in X509_PURPOSE_get_id() argument
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dncr10 0 beshort 000610 Tower/XP rel 2 object
15 0 beshort 000615 Tower/XP rel 2 object
20 0 beshort 000620 Tower/XP rel 3 object
25 0 beshort 000625 Tower/XP rel 3 object

12345678910>>...12