HomeSort by: relevance | last modified time | path
    Searched refs:rsc (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/sys/external/bsd/gnu-efi/dist/lib/arm/
ldivmod.S 42 rsc r1,r1,#0
47 rsc r3,r3,#0
53 rsc r1,r1,#0
58 rsc r3,r3,#0
  /src/sys/arch/ia64/stand/ia64/ski/
start.S 39 mov ar.rsc=0
55 mov ar.rsc=3
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_lpe_audio.c 88 struct resource *rsc; local in function:lpe_audio_platdev_create
96 rsc = kcalloc(2, sizeof(*rsc), GFP_KERNEL);
97 if (!rsc) {
102 rsc[0].start = rsc[0].end = dev_priv->lpe_audio.irq;
103 rsc[0].flags = IORESOURCE_IRQ;
104 rsc[0].name = "hdmi-lpe-audio-irq";
106 rsc[1].start = pci_resource_start(dev->pdev, 0) +
108 rsc[1].end = pci_resource_start(dev->pdev, 0)
    [all...]
  /src/sys/dev/mii/
rdcphy.c 97 struct rdcphy_softc *rsc = device_private(self); local in function:rdcphyattach
98 struct mii_softc *sc = &rsc->sc_mii;
132 struct rdcphy_softc *rsc = (struct rdcphy_softc *)sc; local in function:rdcphy_service
162 rsc->sc_mii_link_tick = RDCPHY_MANNEG_TICK;
186 if (rsc->sc_mii_link_tick > 0) {
187 rsc->sc_mii_link_tick--;
rlphy.c 114 struct rlphy_softc *rsc = device_private(self); local in function:rlphyattach
115 struct mii_softc *sc = &rsc->sc_mii;
121 rsc->sc_rtl8201 = 1;
125 rsc->sc_rtl8201 = 1;
209 struct rlphy_softc *rsc = (void *)sc; local in function:rlphy_status
292 if (rsc->sc_rtl8201) {
rgephy.c 107 struct rgephy_softc *rsc = device_private(self); local in function:rgephy_attach
109 struct mii_softc *sc = &rsc->mii_sc;
138 prop_dictionary_get_bool(prop, "no-rx-delay", &rsc->mii_no_rx_delay);
627 struct rgephy_softc *rsc = (struct rgephy_softc *)sc; local in function:rgephy_reset
647 if (rsc->mii_no_rx_delay) {
  /src/sys/dev/ic/
icp_ioctl.c 276 gdt_rescan_t *rsc = (void *) data; local in function:icpioctl
278 icp = device_lookup_private(&icp_cd, rsc->io_node);
287 if (rsc->flag == 0)
290 icp_rescan(icp, rsc->hdr_no);
  /src/sys/arch/mips/cavium/dev/
octeon_asx.c 41 octasx_init(struct octasx_attach_args *aa, struct octasx_softc **rsc)
58 *rsc = sc;
octeon_ipd.c 54 octipd_init(struct octipd_attach_args *aa, struct octipd_softc **rsc)
70 *rsc = sc;
octeon_pko.c 54 octpko_init(struct octpko_attach_args *aa, struct octpko_softc **rsc)
71 *rsc = sc;
octeon_pip.c 175 octpip_init(struct octpip_attach_args *aa, struct octpip_softc **rsc)
192 *rsc = sc;
  /src/sys/arch/ia64/ia64/
locore.S 58 mov ar.rsc=0
92 mov ar.rsc=3 // turn rse back on
118 mov ar.rsc = 0
127 mov ar.rsc = 3
213 mov ar.rsc = 0
242 mov ar.rsc = 3
syscall_stubs.S 106 mov ar.rsc=r24
132 mov ar.rsc=0
163 mov ar.rsc=15
197 mov ar.rsc=0
209 mov ar.rsc=15
243 mov r16=ar.rsc
244 mov ar.rsc=0
282 mov ar.rsc=3
318 st8 [r31]=r16,16 // rsc
454 ld8 r24=[r14],16 // rsc
    [all...]
setjmp.S 215 mov r14 = ar.rsc // get user RSC conf
225 mov ar.rsc = r0 // put RSE in enforced lazy
265 mov ar.rsc = r14 // restore RSC conf
support.S 76 mov r19=ar.rsc // save rsc while we change mode
79 mov ar.rsc=0 // turn off RSE
109 2: mov ar.rsc=r19 // restore ar.rsc
  /src/usr.sbin/altq/libaltq/
qop_hfsc.c 482 &parent_clinfo->rsc) ||
496 hfsc_clinfo->rsc = *sc;
522 hfsc_clinfo->rsc.m1 = hfsc_clinfo->rsc.m1 / 10 * 8;
523 hfsc_clinfo->rsc.m2 = hfsc_clinfo->rsc.m2 / 10 * 8;
560 gsc_sub_sc(&parent_clinfo->gen_rsc, &hfsc_clinfo->rsc);
574 struct service_curve rsc, fsc, usc; local in function:qop_hfsc_modify_class
586 rsc = hfsc_clinfo->rsc;
    [all...]
qop_hfsc.h 53 struct service_curve rsc; /* real-time service curve */ member in struct:hfsc_classinfo
  /src/lib/libc/arch/ia64/gen/
_setjmp.S 109 mov r16 = ar.rsc
115 mov ar.rsc = r0
121 mov ar.rsc = r16
202 mov r14 = ar.rsc // get user RSC conf
206 mov ar.rsc = r0
226 mov ar.rsc = r14 // restore RSC conf
  /src/sys/altq/
altq_hfsc.c 384 hfsc_class_create(struct hfsc_if *hif, struct service_curve *rsc,
427 if (rsc != NULL && rsc->m2 > m2)
428 m2 = rsc->m2;
465 if (rsc != NULL && (rsc->m1 != 0 || rsc->m2 != 0)) {
470 sc2isc(rsc, cl->cl_rsc);
1620 sp->rsc.m1 = sm2m(cl->cl_rsc->sm1);
1621 sp->rsc.d = dx2d(cl->cl_rsc->dx)
2096 struct service_curve *rsc = NULL; local in function:hfsccmd_modify_class
    [all...]
  /src/common/lib/libc/arch/arm/quad/
__aeabi_ldivmod.S 159 rsc AHI, AHI, #0
172 rsc BHI, BHI, #0
  /src/usr.sbin/altq/altqstat/
qdisc_hfsc.c 106 rate2str((double)sp->rsc.m1), sp->rsc.d,
107 rate2str((double)sp->rsc.m2),
  /src/sys/external/bsd/gnu-efi/dist/lib/ia64/
setjmp.S 112 mov r16 = ar.rsc
123 mov ar.rsc = r2
200 mov ar.rsc = r16
  /src/sys/arch/mips/rmi/
rmixl_com.c 255 struct rmixl_com_softc *rsc = device_private(self); local in function:rmixl_com_attach
256 struct com_softc *sc = &rsc->sc_com;
  /src/sys/net80211/
ieee80211_crypto.h 228 u_int64_t rsc);
ieee80211_netbsd.c 660 u_int64_t rsc)
665 "[%s] %s replay detected <rsc %ju, csc %ju, keyix %u rxkeyix %u>\n",
667 (intmax_t) rsc, (intmax_t) k->wk_keyrsc,
681 iev.iev_rsc = rsc;

Completed in 20 milliseconds

1 2