Searched refs:pstate (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-9.3-release/sys/sparc64/sparc64/
H A Dlocore.S33 #include <machine/pstate.h>
57 wrpr %g0, PSTATE_NORMAL, %pstate
98 wrpr %g0, PSTATE_NORMAL, %pstate
110 wrpr %g0, PSTATE_ALT, %pstate
123 wrpr %g0, PSTATE_INTR, %pstate
133 wrpr %g0, PSTATE_NORMAL, %pstate
H A Dinterrupt.S33 #include <machine/pstate.h>
186 1: wrpr %g0, PSTATE_NORMAL, %pstate
192 wrpr %g0, PSTATE_KERNEL, %pstate
211 wrpr %g0, PSTATE_KERNEL, %pstate
H A Dsupport.S37 #include <machine/pstate.h>
582 rdpr %pstate, %o3
583 wrpr %g0, PSTATE_NORMAL, %pstate
605 1: wrpr %o3, 0, %pstate
655 rdpr %pstate, %o3
656 wrpr %g0, PSTATE_NORMAL, %pstate
678 1: wrpr %o3, 0, %pstate
766 rdpr %pstate, %o3
767 wrpr %g0, PSTATE_NORMAL, %pstate
789 1: wrpr %o3, 0, %pstate
[all...]
H A Dswtch.S122 wrpr %g0, PSTATE_NORMAL, %pstate
124 wrpr %g0, PSTATE_ALT, %pstate
126 wrpr %g0, PSTATE_KERNEL, %pstate
H A Dexception.S69 #include <machine/pstate.h>
502 wrpr %g0, PSTATE_ALT, %pstate
519 wrpr %g0, PSTATE_ALT, %pstate
737 wrpr %g0, PSTATE_ALT, %pstate
894 wrpr %g0, PSTATE_ALT, %pstate
1073 wrpr %g0, PSTATE_ALT, %pstate
1224 wrpr %g0, PSTATE_ALT, %pstate
1281 wrpr %g0, PSTATE_ALT, %pstate
1294 wrpr %g0, PSTATE_ALT, %pstate
1443 wrpr %g0, PSTATE_ALT, %pstate
[all...]
H A Dmp_locore.S35 #include <machine/pstate.h>
54 1: wrpr %g0, PSTATE_NORMAL, %pstate
H A Dmp_exception.S34 #include <machine/pstate.h>
H A Dmachdep.c104 #include <machine/pstate.h>
594 wrpr(pstate, 0, PSTATE_KERNEL);
/freebsd-9.3-release/sys/boot/sparc64/loader/
H A Dlocore.S18 #include <machine/pstate.h>
33 wrpr %g0, PSTATE_PRIV | PSTATE_IE | PSTATE_PEF, %pstate
H A Dmain.c374 u_long data, pstate; local
381 pstate = rdpr(pstate);
382 wrpr(pstate, pstate & ~PSTATE_IE, 0);
385 wrpr(pstate, pstate, 0);
392 u_long data, pstate; local
399 pstate = rdpr(pstate);
410 u_long pstate, reg; local
435 u_long pstate, reg; local
480 u_long data, pstate, tag; local
967 u_long pstate; local
[all...]
/freebsd-9.3-release/sys/sparc64/include/
H A Dpstate.h60 #define PSTATE_SECURE(pstate) \
61 (((pstate) & ~(PSTATE_AM|PSTATE_MM_MASK)) == (PSTATE_IE|PSTATE_PEF))
H A Dcpufunc.h33 #include <machine/pstate.h>
218 s = rdpr(pstate);
219 wrpr(pstate, s & ~PSTATE_IE, 0);
222 #define intr_restore(s) wrpr(pstate, (s), 0)
H A Dtstate.h30 #include <machine/pstate.h>
/freebsd-9.3-release/sys/dev/acpica/
H A Dacpi_pcibvar.h42 int *pstate);
H A Dacpi_pcib.c271 acpi_pcib_power_for_sleep(device_t pcib, device_t dev, int *pstate) argument
276 acpi_device_pwr_for_sleep(acpi_dev, dev, pstate);
/freebsd-9.3-release/contrib/nvi/vi/
H A Dv_paragraph.c34 pstate = P_INBLANK; \
71 enum { P_INTEXT, P_INBLANK } pstate; local
115 pstate = P_INBLANK;
118 pstate = P_INTEXT;
126 switch (pstate) {
134 pstate = P_INTEXT;
210 enum { P_INTEXT, P_INBLANK } pstate; local
260 pstate = P_INBLANK;
263 pstate = P_INTEXT;
277 switch (pstate) {
[all...]
/freebsd-9.3-release/usr.sbin/bsnmpd/modules/snmp_wlan/
H A Dwlan_sys.c2641 wlan_peerstate_to_snmp(uint32_t pstate) argument
2645 if ((pstate & IEEE80211_NODE_AUTH) != 0)
2647 if ((pstate & IEEE80211_NODE_QOS) != 0)
2649 if ((pstate & IEEE80211_NODE_ERP) != 0)
2651 if ((pstate & IEEE80211_NODE_PWR_MGT) != 0)
2653 if ((pstate & IEEE80211_NODE_AREF) != 0)
2655 if ((pstate & IEEE80211_NODE_HT) != 0)
2657 if ((pstate & IEEE80211_NODE_HTCOMPAT) != 0)
2659 if ((pstate & IEEE80211_NODE_WPS) != 0)
2661 if ((pstate
[all...]
/freebsd-9.3-release/sys/dev/bxe/
H A Decore_sp.h518 unsigned long *pstate; /* pointer to state buffer */ member in struct:ecore_raw_obj
901 unsigned long *pstate; member in struct:ecore_rx_mode_ramrod_params
992 /* A state that is set in raw.pstate, when there are pending commands */
1739 unsigned long *pstate, ecore_obj_type type,
1746 unsigned long *pstate, ecore_obj_type type,
1753 unsigned long *pstate, ecore_obj_type type,
1795 int state, unsigned long *pstate,
1835 int state, unsigned long *pstate,
H A Decore_sp.c270 return !!ECORE_TEST_BIT(o->state, o->pstate);
276 ECORE_CLEAR_BIT(o->state, o->pstate);
283 ECORE_SET_BIT(o->state, o->pstate);
296 unsigned long *pstate)
309 if (!ECORE_TEST_BIT(state, pstate)) {
333 return ecore_state_wait(sc, raw->state, raw->pstate);
2156 unsigned long *pstate, ecore_obj_type type)
2164 raw->pstate = pstate;
2174 int state, unsigned long *pstate, ecore_obj_typ
295 ecore_state_wait(struct bxe_softc *sc, int state, unsigned long *pstate) argument
2154 ecore_init_raw_obj(struct ecore_raw_obj *raw, uint8_t cl_id, uint32_t cid, uint8_t func_id, void *rdata, ecore_dma_addr_t rdata_mapping, int state, unsigned long *pstate, ecore_obj_type type) argument
2172 ecore_init_vlan_mac_common(struct ecore_vlan_mac_obj *o, uint8_t cl_id, uint32_t cid, uint8_t func_id, void *rdata, ecore_dma_addr_t rdata_mapping, int state, unsigned long *pstate, ecore_obj_type type, struct ecore_credit_pool_obj *macs_pool, struct ecore_credit_pool_obj *vlans_pool) argument
2195 ecore_init_mac_obj(struct bxe_softc *sc, struct ecore_vlan_mac_obj *mac_obj, uint8_t cl_id, uint32_t cid, uint8_t func_id, void *rdata, ecore_dma_addr_t rdata_mapping, int state, unsigned long *pstate, ecore_obj_type type, struct ecore_credit_pool_obj *macs_pool) argument
2249 ecore_init_vlan_obj(struct bxe_softc *sc, struct ecore_vlan_mac_obj *vlan_obj, uint8_t cl_id, uint32_t cid, uint8_t func_id, void *rdata, ecore_dma_addr_t rdata_mapping, int state, unsigned long *pstate, ecore_obj_type type, struct ecore_credit_pool_obj *vlans_pool) argument
2290 ecore_init_vlan_mac_obj(struct bxe_softc *sc, struct ecore_vlan_mac_obj *vlan_mac_obj, uint8_t cl_id, uint32_t cid, uint8_t func_id, void *rdata, ecore_dma_addr_t rdata_mapping, int state, unsigned long *pstate, ecore_obj_type type, struct ecore_credit_pool_obj *macs_pool, struct ecore_credit_pool_obj *vlans_pool) argument
3919 ecore_init_mcast_obj(struct bxe_softc *sc, struct ecore_mcast_obj *mcast_obj, uint8_t mcast_cl_id, uint32_t mcast_cid, uint8_t func_id, uint8_t engine_id, void *rdata, ecore_dma_addr_t rdata_mapping, int state, unsigned long *pstate, ecore_obj_type type) argument
4459 ecore_init_rss_config_obj(struct bxe_softc *sc, struct ecore_rss_config_obj *rss_obj, uint8_t cl_id, uint32_t cid, uint8_t func_id, uint8_t engine_id, void *rdata, ecore_dma_addr_t rdata_mapping, int state, unsigned long *pstate, ecore_obj_type type) argument
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/pic/
H A Dpic.y79 saved_state *pstate;
698 $<pstate>$ = p;
712 current_position.x = $<pstate>2->x;
713 current_position.y = $<pstate>2->y;
714 current_direction = $<pstate>2->dir;
718 current_table = $<pstate>2->tbl;
719 current_saved_state = $<pstate>2->prev;
720 delete $<pstate>2;
/freebsd-9.3-release/contrib/ofed/libibverbs/examples/
H A Ddevinfo.c79 static const char *port_state_str(enum ibv_port_state pstate) argument
81 switch (pstate) {
/freebsd-9.3-release/gnu/usr.bin/rcs/rlog/
H A Drlog.c969 struct stateattri const *pstate; local
978 if ((pstate = statelist)) /* only certain states wanted */
979 while (strcmp(pstate->status, pdelta->state) != 0)
980 if (!(pstate = pstate->nextstate))
/freebsd-9.3-release/sys/x86/cpufreq/
H A Dhwpstate.c158 hwpstate_goto_pstate(device_t dev, int pstate) argument
164 int id = pstate;
167 /* get the current pstate limit */
300 * Check if hardware pstate enable bit is set.
343 * it will take care of pstate transitions.
345 HWPSTATE_DEBUG(dev, "acpi_perf will take care of pstate transitions.\n");
401 /* Get pstate count */
/freebsd-9.3-release/sys/netinet/libalias/
H A Dalias_sctp.c2524 char *ploc, *pstate; local
2537 pstate = "Init";
2540 pstate = "InitAck";
2543 pstate = "Abort";
2546 pstate = "ShutAck";
2549 pstate = "ShutComp";
2552 pstate = "Asconf";
2555 pstate = "AsconfAck";
2558 pstate = "Other";
2561 pstate
[all...]
/freebsd-9.3-release/gnu/lib/libregex/
H A Dregexec.c144 re_dfastate_t *pstate) internal_function;
148 re_dfastate_t *pstate) internal_function;
820 re_dfastate_t *pstate = mctx.state_log[match_last];
821 mctx.last_node = check_halt_state_context (&mctx, pstate,
2302 re_dfastate_t *pstate;
2309 pstate = mctx->state_log[cur_idx];
2310 log_nodes = pstate->entrance_nodes;
2470 transit_state_mb (mctx, pstate)
2472 re_dfastate_t *pstate;
2478 for (i = 0; i < pstate
817 re_dfastate_t *pstate = mctx.state_log[match_last]; local
2298 re_dfastate_t *pstate; local
[all...]

Completed in 322 milliseconds

12