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

1 2

  /src/sys/dev/pci/
pci_verbose.h 41 DEV_VERBOSE_DECLARE(pci); variable
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_pci.c 74 static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *pci,
78 if (pci->pcPathLengthConstraint)
79 i2a_ASN1_INTEGER(out, pci->pcPathLengthConstraint);
84 i2a_ASN1_OBJECT(out, pci->proxyPolicy->policyLanguage);
85 if (pci->proxyPolicy->policy && pci->proxyPolicy->policy->data)
87 pci->proxyPolicy->policy->length,
88 pci->proxyPolicy->policy->data);
245 PROXY_CERT_INFO_EXTENSION *pci = NULL; local
299 pci = PROXY_CERT_INFO_EXTENSION_new()
    [all...]
v3_purp.c 443 PROXY_CERT_INFO_EXTENSION *pci; local
497 if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, &i, NULL)) != NULL) {
503 if (pci->pcPathLengthConstraint != NULL)
504 x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint);
507 PROXY_CERT_INFO_EXTENSION_free(pci);
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_pci.c 67 static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *pci,
71 if (pci->pcPathLengthConstraint)
72 i2a_ASN1_INTEGER(out, pci->pcPathLengthConstraint);
77 i2a_ASN1_OBJECT(out, pci->proxyPolicy->policyLanguage);
78 if (pci->proxyPolicy->policy && pci->proxyPolicy->policy->data)
80 pci->proxyPolicy->policy->length,
81 pci->proxyPolicy->policy->data);
242 PROXY_CERT_INFO_EXTENSION *pci = NULL; local
297 pci = PROXY_CERT_INFO_EXTENSION_new()
    [all...]
v3_purp.c 400 PROXY_CERT_INFO_EXTENSION *pci; local
454 if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, &i, NULL)) != NULL) {
460 if (pci->pcPathLengthConstraint != NULL)
461 x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint);
464 PROXY_CERT_INFO_EXTENSION_free(pci);
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_pci.c 67 static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *pci,
71 if (pci->pcPathLengthConstraint)
72 i2a_ASN1_INTEGER(out, pci->pcPathLengthConstraint);
77 i2a_ASN1_OBJECT(out, pci->proxyPolicy->policyLanguage);
79 if (pci->proxyPolicy->policy && pci->proxyPolicy->policy->data)
81 pci->proxyPolicy->policy->length,
82 pci->proxyPolicy->policy->data);
247 PROXY_CERT_INFO_EXTENSION *pci = NULL; local
302 pci = PROXY_CERT_INFO_EXTENSION_new()
    [all...]
v3_purp.c 377 PROXY_CERT_INFO_EXTENSION *pci; local
425 if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, &i, NULL))) {
431 if (pci->pcPathLengthConstraint) {
432 x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint);
435 PROXY_CERT_INFO_EXTENSION_free(pci);
  /src/share/examples/refuse/pcifs/
pcifs.c 44 static virtdir_t pci; variable
61 if ((ep = virtdir_find(&pci, path, strlen(path))) == NULL) {
68 (void) memcpy(st, &pci.dir, sizeof(*st));
71 (void) memcpy(st, &pci.lnk, sizeof(*st));
87 if ((dirp = openvirtdir(&pci, path)) == NULL) {
128 if ((ep = virtdir_find(&pci, path, strlen(path))) == NULL) {
162 (void) snprintf(buf, sizeof(buf), "pcictl pci%d list", bus);
199 if (!build_tree(&pci, bus)) {
  /src/sys/arch/sandpoint/stand/altboot/
nif.c 68 struct pcidev *pci = self; local
77 tag = pci->bdf;
83 pci->drv = NULL;
86 pci->drv = dv->priv = (*dv->init)(tag, enaddr);
dsk.c 91 struct pcidev *pci = self; local
96 tag = pci->bdf;
104 pci->drv = (*dv->init)(tag, NULL);
105 if (pci->drv == NULL)
107 disk_scan(pci->drv);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_ttm.c 222 struct nvkm_pci *pci = device->pci; local
252 if (pci && pci->agp.bridge) {
253 drm->agp.bridge = pci->agp.bridge;
254 drm->agp.base = pci->agp.base;
255 drm->agp.size = pci->agp.size;
256 drm->agp.cma = pci->agp.cma;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pci/
nouveau_nvkm_subdev_pci_base.c 33 #include <core/pci.h>
37 nvkm_pci_rd32(struct nvkm_pci *pci, u16 addr)
39 return pci->func->rd32(pci, addr);
43 nvkm_pci_wr08(struct nvkm_pci *pci, u16 addr, u8 data)
45 pci->func->wr08(pci, addr, data);
49 nvkm_pci_wr32(struct nvkm_pci *pci, u16 addr, u32 data)
51 pci->func->wr32(pci, addr, data)
76 struct nvkm_pci *pci = arg; local
96 struct nvkm_pci *pci = nvkm_pci(subdev); local
107 struct nvkm_pci *pci = nvkm_pci(subdev); local
116 struct nvkm_pci *pci = nvkm_pci(subdev); local
186 struct nvkm_pci *pci = nvkm_pci(subdev); local
212 struct nvkm_pci *pci = nvkm_pci(subdev); local
256 struct nvkm_pci *pci; local
    [all...]
  /src/share/examples/refuse/dmesgfs/
dmesgfs.c 45 static virtdir_t pci; variable
77 if ((ep = virtdir_find(&pci, path, strlen(path))) == NULL) {
82 (void) memcpy(st, &pci.file, sizeof(*st));
87 (void) memcpy(st, &pci.dir, sizeof(*st));
90 (void) memcpy(st, &pci.lnk, sizeof(*st));
95 st->st_ino = virtdir_offset(&pci, ep) + 10;
108 if ((dirp = openvirtdir(&pci, path)) == NULL) {
138 if ((ep = virtdir_find(&pci, path, strlen(path))) == NULL) {
162 if ((ep = virtdir_find(&pci, path, strlen(path))) == NULL) {
342 if (!build_tree(&pci, (nexus) ? nexus : "mainbus0", type))
    [all...]
  /src/sys/dev/acpi/
acpi_pci.c 39 #include <dev/pci/pcireg.h>
40 #include <dev/pci/pcivar.h>
41 #include <dev/pci/pcidevs.h>
42 #include <dev/pci/ppbreg.h>
44 #include <dev/pci/pci_calls.h>
62 * Regarding PCI Segment Groups (ACPI 4.0, p. 277):
64 * "The optional _SEG object is located under a PCI host bridge and
65 * evaluates to an integer that describes the PCI Segment Group (see PCI
68 * "PCI Segment Group is purely a software concept managed by syste
444 struct pci_softc *pci; local
    [all...]
  /src/sys/arch/i386/stand/efiboot/
efinet.c 293 PCI_DEVICE_PATH *pci = (PCI_DEVICE_PATH *)dp; local
301 /* PCI root bus */
312 eni->bus.tag |= (pci->Device & 0x1f) << 3;
313 eni->bus.tag |= pci->Function & 0x7;
453 printf(" pci%d,%d,%d", (eni->bus.tag >> 8) & 0xff,
  /src/sys/arch/ia64/stand/ia64/efi/
main.c 544 printf(" PCI seg = %u\n", ent->pci_segment);
545 printf(" PCI bus = %u\n", ent->pci_bus);
546 printf(" PCI dev = %u\n", ent->pci_device);
547 printf(" PCI func = %u\n", ent->pci_function);
549 printf(" PCI flag = %u\n", ent->pci_flag);
560 printf(" PCI type = %u\n", ent->pci_devid);
561 printf(" PCI vndr = %u\n", ent->pci_vendor);
564 printf(" PCI iface = %u\n", ent->pci_interface);
598 struct dig64_pci_spec *pci = &pcdp->specs.pci; local
    [all...]
  /src/sys/arch/powerpc/mpc5200/
cdm.c 83 #define CFG_PCI_CLK_SEL __BITS(0, 1) /* PCI clock select [1:0] */
85 #define PCI_CLK_SEL_IPB 0 /* PCI = IPB */
86 #define PCI_CLK_SEL_IPB_DIV2 1 /* PCI = IPB / 2 */
87 /* values 2 and 3 both select PCI = XLB / 4 */
125 uint32_t fsystem, xlb, ipb, pci, core; local
139 pci = ipb;
142 pci = ipb / 2;
144 default: /* 2, 3: PCI = XLB / 4 */
145 pci = xlb / 4;
159 cdm_clocks.cc_pci = pci;
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/
nouveau_nvkm_subdev_clk_base.c 274 struct nvkm_pci *pci = subdev->device->pci; local
286 nvkm_pcie_set_link(pci, pstate->pcie_speed, pstate->pcie_width);
  /src/sys/arch/ia64/include/
dig64.h 129 uint8_t type; /* = 1 indicating PCI */
131 uint16_t length; /* of the PCI Specific Structure */
132 uint8_t sgn; /* PCI Segment Group Number */
133 uint8_t bus; /* PCI Bus Number */
134 uint8_t device; /* PCI Device Number */
135 uint8_t function; /* PCI Function Number */
164 struct dig64_pci_spec pci; member in union:dig64_pcdp_entry::__anon1525
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
physdev.h 341 struct physdev_pci_device pci; member in union:physdev_dbgp_op::__anon6638
memory.h 596 struct physdev_pci_device pci; member in union:xen_reserved_device_memory_map::__anon6631
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
device.h 163 struct nvkm_pci *pci; member in struct:nvkm_device
198 struct nvkm_device_pci *(*pci)(struct nvkm_device *); member in struct:nvkm_device_func
240 int (*pci )(struct nvkm_device *, int idx, struct nvkm_pci **); member in struct:nvkm_device_chip
  /src/external/gpl3/gcc/dist/gcc/
haifa-sched.cc 1895 /* Index PCI describes the maximum pressure on ira_pressure_classes[PCI]. */
1898 /* Index (POINT * ira_num_pressure_classes + PCI) describes the pressure
1899 on register class ira_pressure_classes[PCI] at point POINT of the
1930 /* The model_pressure_data for ira_pressure_classes[PCI] in GROUP
1932 #define MODEL_PRESSURE_DATA(GROUP, POINT, PCI) \
1933 (&(GROUP)->model[(POINT) * ira_pressure_classes_num + (PCI)])
1935 /* The maximum pressure on ira_pressure_classes[PCI] in GROUP at or
1937 #define MODEL_MAX_PRESSURE(GROUP, POINT, PCI) \
1938 (MODEL_PRESSURE_DATA (GROUP, POINT, PCI)->max_pressure
1961 int pci, max_pressure, point; local
2126 int pci, point, mix, new_last, cl, ref_pressure, queue; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
haifa-sched.cc 1891 /* Index PCI describes the maximum pressure on ira_pressure_classes[PCI]. */
1894 /* Index (POINT * ira_num_pressure_classes + PCI) describes the pressure
1895 on register class ira_pressure_classes[PCI] at point POINT of the
1926 /* The model_pressure_data for ira_pressure_classes[PCI] in GROUP
1928 #define MODEL_PRESSURE_DATA(GROUP, POINT, PCI) \
1929 (&(GROUP)->model[(POINT) * ira_pressure_classes_num + (PCI)])
1931 /* The maximum pressure on ira_pressure_classes[PCI] in GROUP at or
1933 #define MODEL_MAX_PRESSURE(GROUP, POINT, PCI) \
1934 (MODEL_PRESSURE_DATA (GROUP, POINT, PCI)->max_pressure
1957 int pci, max_pressure, point; local
2122 int pci, point, mix, new_last, cl, ref_pressure, queue; local
    [all...]
  /src/sys/arch/i386/stand/pxeboot/
pxe.h 307 } pci, cardbus; member in union:__anon1501::__anon1502

Completed in 42 milliseconds

1 2