Searched refs:pm (Results 1 - 25 of 179) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachOPasses.h18 void addLayoutPass(PassManager &pm, const MachOLinkingContext &ctx);
19 void addStubsPass(PassManager &pm, const MachOLinkingContext &ctx);
20 void addGOTPass(PassManager &pm, const MachOLinkingContext &ctx);
21 void addTLVPass(PassManager &pm, const MachOLinkingContext &ctx);
22 void addCompactUnwindPass(PassManager &pm, const MachOLinkingContext &ctx);
23 void addObjCPass(PassManager &pm, const MachOLinkingContext &ctx);
24 void addShimPass(PassManager &pm, const MachOLinkingContext &ctx);
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_pm.c60 for (i = 0; i < rdev->pm.num_power_states; i++) {
61 if (rdev->pm.power_state[i].type == ps_type) {
68 return rdev->pm.default_power_state_index;
73 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
74 if (rdev->pm.profile == PM_PROFILE_AUTO) {
75 sx_xlock(&rdev->pm.mutex);
78 sx_xunlock(&rdev->pm.mutex);
85 switch (rdev->pm.profile) {
87 rdev->pm.profile_index = PM_PROFILE_DEFAULT_IDX;
92 if (rdev->pm
396 int pm = rdev->pm.pm_method; local
[all...]
H A Dr420.c44 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index;
45 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index;
46 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0;
47 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0;
49 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 0;
50 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 0;
51 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0;
52 rdev->pm
[all...]
H A Dr600.c128 rdev->pm.dynpm_can_upclock = true;
129 rdev->pm.dynpm_can_downclock = true;
135 if (rdev->pm.num_power_states > 2)
138 switch (rdev->pm.dynpm_planned_action) {
140 rdev->pm.requested_power_state_index = min_power_state_index;
141 rdev->pm.requested_clock_mode_index = 0;
142 rdev->pm.dynpm_can_downclock = false;
145 if (rdev->pm.current_power_state_index == min_power_state_index) {
146 rdev->pm.requested_power_state_index = rdev->pm
[all...]
H A Drs690.c84 rdev->pm.igp_sideport_mclk.full = dfixed_const(le32_to_cpu(info->info.ulBootUpMemoryClock));
85 rdev->pm.igp_sideport_mclk.full = dfixed_div(rdev->pm.igp_sideport_mclk, tmp);
87 rdev->pm.igp_system_mclk.full = dfixed_const(le16_to_cpu(info->info.usK8MemoryClock));
89 rdev->pm.igp_system_mclk.full = dfixed_const(rdev->clock.default_mclk);
90 rdev->pm.igp_system_mclk.full = dfixed_div(rdev->pm.igp_system_mclk, tmp);
92 rdev->pm.igp_system_mclk.full = dfixed_const(400);
93 rdev->pm.igp_ht_link_clk.full = dfixed_const(le16_to_cpu(info->info.usFSBClock));
94 rdev->pm
[all...]
/freebsd-11-stable/contrib/ntp/scripts/lib/
H A DMakefile.am3 nobase_perllib_DATA = NTP/Util.pm
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dtlb.c63 tlb_context_demap(struct pmap *pm) argument
80 cookie = ipi_tlb_context_demap(pm);
82 if (CPU_ISSET(PCPU_GET(cpuid), &pm->pm_active)) {
83 KASSERT(pm->pm_context[curcpu] != -1,
94 tlb_page_demap(struct pmap *pm, vm_offset_t va) argument
101 cookie = ipi_tlb_page_demap(pm, va);
103 if (CPU_ISSET(PCPU_GET(cpuid), &pm->pm_active)) {
104 KASSERT(pm->pm_context[curcpu] != -1,
106 if (pm == kernel_pmap)
120 tlb_range_demap(struct pmap *pm, vm_offset_ argument
[all...]
H A Dpmap.c144 static int pmap_unwire_tte(pmap_t pm, pmap_t pm2, struct tte *tp,
155 static int pmap_enter_locked(pmap_t pm, vm_offset_t va, vm_page_t m,
184 #define PMAP_REMOVE_DONE(pm) \
185 ((pm) != kernel_pmap && (pm)->pm_stats.resident_count == 0)
306 struct pmap *pm; local
672 pm = kernel_pmap;
673 PMAP_LOCK_INIT(pm);
675 pm->pm_context[i] = TLB_CTX_KERNEL;
676 CPU_FILL(&pm
830 pmap_extract(pmap_t pm, vm_offset_t va) argument
853 pmap_extract_and_hold(pmap_t pm, vm_offset_t va, vm_prot_t prot) argument
1212 pmap_pinit0(pmap_t pm) argument
1230 pmap_pinit(pmap_t pm) argument
1272 pmap_release(pmap_t pm) argument
1336 pmap_remove_tte(struct pmap *pm, struct pmap *pm2, struct tte *tp, vm_offset_t va) argument
1370 pmap_remove(pmap_t pm, vm_offset_t start, vm_offset_t end) argument
1398 struct pmap *pm; local
1432 pmap_protect_tte(struct pmap *pm, struct pmap *pm2, struct tte *tp, vm_offset_t va) argument
1451 pmap_protect(pmap_t pm, vm_offset_t sva, vm_offset_t eva, vm_prot_t prot) argument
1486 pmap_enter(pmap_t pm, vm_offset_t va, vm_page_t m, vm_prot_t prot, u_int flags, int8_t psind) argument
1507 pmap_enter_locked(pmap_t pm, vm_offset_t va, vm_page_t m, vm_prot_t prot, u_int flags, int8_t psind __unused) argument
1653 pmap_enter_object(pmap_t pm, vm_offset_t start, vm_offset_t end, vm_page_t m_start, vm_prot_t prot) argument
1675 pmap_enter_quick(pmap_t pm, vm_offset_t va, vm_page_t m, vm_prot_t prot) argument
1687 pmap_object_init_pt(pmap_t pm, vm_offset_t addr, vm_object_t object, vm_pindex_t pindex, vm_size_t size) argument
1697 pmap_unwire_tte(pmap_t pm, pmap_t pm2, struct tte *tp, vm_offset_t va) argument
1718 pmap_unwire(pmap_t pm, vm_offset_t sva, vm_offset_t eva) argument
2026 pmap_page_exists_quick(pmap_t pm, vm_page_t m) argument
2078 pmap_remove_pages(pmap_t pm) argument
2296 pmap_mincore(pmap_t pm, vm_offset_t addr, vm_paddr_t *locked_pa) argument
2311 struct pmap *pm; local
2343 pmap_sync_icache(pmap_t pm, vm_offset_t va, vm_size_t sz) argument
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_perfmgr.c125 static void init_monitored_nodes(osm_perfmgr_t * pm) argument
127 cl_qmap_init(&pm->monitored_map);
128 pm->remove_list = NULL;
129 cl_event_construct(&pm->sig_query);
130 cl_event_init(&pm->sig_query, FALSE);
133 static void mark_for_removal(osm_perfmgr_t * pm, monitored_node_t * node) argument
135 if (pm->remove_list) {
136 node->next = pm->remove_list;
137 pm->remove_list = node;
140 pm
144 remove_marked_nodes(osm_perfmgr_t * pm) argument
173 decrement_outstanding_queries(osm_perfmgr_t * pm) argument
197 osm_perfmgr_t *pm = (osm_perfmgr_t *) bind_context; local
225 osm_perfmgr_t *pm = (osm_perfmgr_t *) bind_context; local
285 osm_perfmgr_bind(osm_perfmgr_t * pm, ib_net64_t port_guid) argument
332 perfmgr_mad_unbind(osm_perfmgr_t * pm) argument
531 osm_perfmgr_t *pm = (osm_perfmgr_t *) context; local
599 perfmgr_send_cpi_mad(osm_perfmgr_t * pm, ib_net16_t dest_lid, ib_net32_t dest_qp, uint16_t pkey_ix, uint8_t port, osm_madw_context_t * p_context, uint8_t sl) argument
699 osm_perfmgr_t *pm = context; local
1049 osm_perfmgr_process(osm_perfmgr_t * pm) argument
1138 osm_perfmgr_t *pm = arg; local
1144 osm_perfmgr_shutdown(osm_perfmgr_t * pm) argument
1153 osm_perfmgr_destroy(osm_perfmgr_t * pm) argument
1170 perfmgr_check_oob_clear(osm_perfmgr_t * pm, monitored_node_t * mon_node, uint8_t port, perfmgr_db_err_reading_t * cr) argument
1269 perfmgr_check_overflow(osm_perfmgr_t * pm, monitored_node_t * mon_node, int16_t pkey_ix, uint8_t port, ib_port_counters_t * pc, boolean_t xmit_wait_sup) argument
1370 perfmgr_check_pce_overflow(osm_perfmgr_t * pm, monitored_node_t * mon_node, int16_t pkey_ix, uint8_t port, ib_port_counters_ext_t * pc) argument
1441 perfmgr_log_errors(osm_perfmgr_t * pm, monitored_node_t * mon_node, uint8_t port, perfmgr_db_err_reading_t * reading) argument
1502 validate_redir_pkey(osm_perfmgr_t *pm, ib_net16_t pkey) argument
1560 handle_redirect(osm_perfmgr_t *pm, ib_class_port_info_t *cpi, monitored_node_t *p_mon_node, uint8_t port, osm_madw_context_t *mad_context) argument
1695 perfmgr_check_data_cnt_oob_clear(osm_perfmgr_t * pm, monitored_node_t * mon_node, uint8_t port, perfmgr_db_data_cnt_reading_t * dc) argument
1756 osm_perfmgr_t *pm = context; local
1918 osm_perfmgr_init(osm_perfmgr_t * pm, osm_opensm_t * osm, const osm_subn_opt_t * p_opt) argument
1981 osm_perfmgr_clear_counters(osm_perfmgr_t * pm) argument
1993 osm_perfmgr_dump_counters(osm_perfmgr_t * pm, perfmgr_db_dump_t dump_type) argument
2013 osm_perfmgr_print_counters(osm_perfmgr_t * pm, char *nodename, FILE * fp, char *port, int err_only) argument
2029 osm_perfmgr_update_nodename(osm_perfmgr_t *pm, uint64_t node_guid, char *nodename) argument
[all...]
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dcopyinout.c81 set_user_sr(pmap_t pm, volatile const void *addr) argument
87 slb = user_va_to_slb_entry(pm, (vm_offset_t)addr);
91 PMAP_LOCK(pm);
92 slbv = va_to_vsid(pm, (vm_offset_t)addr) << SLBV_VSID_SHIFT;
93 PMAP_UNLOCK(pm);
114 set_user_sr(pmap_t pm, volatile const void *addr) argument
118 vsid = va_to_vsid(pm, (vm_offset_t)addr);
136 map_user_ptr(pmap_t pm, volatile const void *uaddr, void **kaddr, size_t ulen, argument
151 set_user_sr(pm, uaddr);
157 map_user_ptr(pmap_t pm, volatil argument
176 pmap_t pm; local
215 pmap_t pm; local
287 pmap_t pm; local
316 pmap_t pm; local
345 pmap_t pm; local
387 pmap_t pm; local
416 pmap_t pm; local
444 pmap_t pm; local
473 pmap_t pm; local
502 pmap_t pm; local
531 pmap_t pm; local
583 pmap_t pm; local
[all...]
/freebsd-11-stable/lib/libc/stdtime/
H A Dtimelocal.h51 const char *pm; member in struct:lc_time_T
/freebsd-11-stable/sys/sparc64/include/
H A Dtsb.h55 tsb_vpntobucket(pmap_t pm, vm_offset_t vpn) argument
58 return (&pm->pm_tsb[(vpn & TSB_BUCKET_MASK) << TSB_BUCKET_SHIFT]);
62 tsb_vtobucket(pmap_t pm, u_long sz, vm_offset_t va) argument
65 return (tsb_vpntobucket(pm, va >> TTE_PAGE_SHIFT(sz)));
85 struct tte *tsb_tte_lookup(pmap_t pm, vm_offset_t va);
87 struct tte *tsb_tte_enter(pmap_t pm, vm_page_t m, vm_offset_t va, u_long sz,
/freebsd-11-stable/sys/dev/hwpmc/
H A Dhwpmc_mod.c182 static int pmc_attach_process(struct proc *p, struct pmc *pm);
185 static int pmc_attach_one_process(struct proc *p, struct pmc *pm);
188 static int pmc_can_attach(struct pmc *pm, struct proc *p);
191 static int pmc_detach_process(struct proc *p, struct pmc *pm);
192 static int pmc_detach_one_process(struct proc *p, struct pmc *pm,
195 static void pmc_destroy_pmc_descriptor(struct pmc *pm);
197 static int pmc_find_pmc(pmc_id_t pmcid, struct pmc **pm);
203 static void pmc_link_target_process(struct pmc *pm,
206 static void pmc_log_kernel_mappings(struct pmc *pm);
221 static int pmc_start(struct pmc *pm);
741 struct pmc *pm, *tmp; local
798 pmc_link_target_process(struct pmc *pm, struct pmc_process *pp) argument
852 pmc_unlink_target_process(struct pmc *pm, struct pmc_process *pp) argument
915 pmc_can_attach(struct pmc *pm, struct proc *t) argument
970 pmc_attach_one_process(struct proc *p, struct pmc *pm) argument
1036 pmc_attach_process(struct proc *p, struct pmc *pm) argument
1098 pmc_detach_one_process(struct proc *p, struct pmc *pm, int flags) argument
1154 pmc_detach_process(struct proc *p, struct pmc *pm) argument
1211 struct pmc *pm; local
1341 struct pmc *pm; local
1526 const struct pmc *pm; local
1568 const struct pmc *pm; local
1593 pmc_log_kernel_mappings(struct pmc *pm) argument
1859 struct pmc *pm; local
2203 pmc_destroy_pmc_descriptor(struct pmc *pm) argument
2221 pmc_wait_for_pmc_idle(struct pmc *pm) argument
2257 pmc_release_pmc_descriptor(struct pmc *pm) argument
2468 struct pmc *pm; local
2560 struct pmc *pm; local
2577 struct pmc *pm, *opm; local
2620 pmc_start(struct pmc *pm) argument
2754 pmc_stop(struct pmc *pm) argument
2899 struct pmc *pm; local
3102 struct pmc *pm; local
3532 struct pmc *pm; local
3600 struct pmc *pm; local
3647 struct pmc *pm; local
3725 struct pmc *pm; local
3765 struct pmc *pm; local
3900 struct pmc *pm; local
3931 struct pmc *pm; local
3968 struct pmc *pm; local
4100 pmc_process_interrupt(int cpu, int ring, struct pmc *pm, struct trapframe *tf, int inuserspace) argument
4196 struct pmc *pm; local
4286 struct pmc *pm; local
4422 struct pmc *pm; local
4601 struct pmc *pm; local
[all...]
H A Dhwpmc_soft.c96 soft_allocate_pmc(int cpu, int ri, struct pmc *pm, argument
112 if ((pm->pm_caps & SOFT_CAPS) == 0)
115 if ((pm->pm_caps & ~SOFT_CAPS) != 0)
118 ev = pm->pm_event;
135 soft_config_pmc(int cpu, int ri, struct pmc *pm) argument
139 PMCDBG3(MDP,CFG,1, "cpu=%d ri=%d pm=%p", cpu, ri, pm);
148 KASSERT(pm == NULL || phw->phw_pmc == NULL,
149 ("[soft,%d] pm=%p phw->pm
265 struct pmc *pm; local
289 struct pmc *pm; local
345 struct pmc *pm; local
372 struct pmc *pm; local
400 struct pmc *pm; local
[all...]
H A Dhwpmc_armv7.c132 armv7_allocate_pmc(int cpu, int ri, struct pmc *pm, argument
153 pm->pm_md.pm_armv7.pm_armv7_evsel = config;
165 struct pmc *pm; local
172 pm = armv7_pcpu[cpu]->pc_armv7pmcs[ri].phw_pmc;
174 if (pm->pm_md.pm_armv7.pm_armv7_evsel == 0xFF)
180 if (PMC_IS_SAMPLING_MODE(PMC_TO_MODE(pm)))
191 struct pmc *pm; local
198 pm = armv7_pcpu[cpu]->pc_armv7pmcs[ri].phw_pmc;
200 if (PMC_IS_SAMPLING_MODE(PMC_TO_MODE(pm)))
205 if (pm
214 armv7_config_pmc(int cpu, int ri, struct pmc *pm) argument
241 struct pmc *pm; local
266 struct pmc *pm; local
302 struct pmc *pm; local
[all...]
H A Dhwpmc_arm64.c164 arm64_allocate_pmc(int cpu, int ri, struct pmc *pm, argument
185 pm->pm_md.pm_arm64.pm_arm64_evsel = config;
197 struct pmc *pm; local
204 pm = arm64_pcpu[cpu]->pc_arm64pmcs[ri].phw_pmc;
209 if (PMC_IS_SAMPLING_MODE(PMC_TO_MODE(pm)))
220 struct pmc *pm; local
227 pm = arm64_pcpu[cpu]->pc_arm64pmcs[ri].phw_pmc;
229 if (PMC_IS_SAMPLING_MODE(PMC_TO_MODE(pm)))
240 arm64_config_pmc(int cpu, int ri, struct pmc *pm) argument
244 PMCDBG3(MDP, CFG, 1, "cpu=%d ri=%d pm
267 struct pmc *pm; local
294 struct pmc *pm; local
330 struct pmc *pm; local
[all...]
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_anylock.h40 apr_proc_mutex_t *pm; /**< Process mutex */ member in union:apr_anylock_t::apr_anylock_u_t
57 ? apr_proc_mutex_lock((lck)->lock.pm) \
70 ? apr_proc_mutex_lock((lck)->lock.pm) \
84 ? apr_proc_mutex_trylock((lck)->lock.pm) \
97 ? apr_proc_mutex_trylock((lck)->lock.pm) \
111 ? apr_proc_mutex_unlock((lck)->lock.pm) \
123 ? apr_proc_mutex_unlock((lck)->lock.pm) \
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFGStmtMap.h28 CFGStmtMap(ParentMap *pm, void *m) : PM(pm), M(m) {} argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DRegex.cpp95 SmallVector<llvm_regmatch_t, 8> pm; local
96 pm.resize(nmatch > 0 ? nmatch : 1);
97 pm[0].rm_so = 0;
98 pm[0].rm_eo = String.size();
100 int rc = llvm_regexec(preg, String.data(), nmatch, pm.data(), REG_STARTEND);
118 if (pm[i].rm_so == -1) {
123 assert(pm[i].rm_eo >= pm[i].rm_so);
124 Matches->push_back(StringRef(String.data()+pm[i].rm_so,
125 pm[
[all...]
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dqsort.c119 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
127 for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
128 for (pl = pm;
134 pm = (char *)a + (n / 2) * es;
141 pm = med3(pm - d, pm, pm
[all...]
/freebsd-11-stable/sys/libkern/
H A Dqsort.c115 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
124 for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
125 for (pl = pm;
131 pm = (char *)a + (n / 2) * es;
139 pm = med3(pm - d, pm, pm
[all...]
/freebsd-11-stable/lib/libc/stdlib/
H A Dqsort.c93 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
101 for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
102 for (pl = pm;
108 pm = (char *)a + (n / 2) * es;
116 pm = med3(pm - d, pm, pm
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-npi.h116 uint64_t pm : 2; /**< Parse mode */ member in struct:__anon8658::__anon8660
122 uint64_t pm : 2;
131 uint64_t pm : 2; /**< Parse mode */ member in struct:__anon8658::__anon8661
137 uint64_t pm : 2;
/freebsd-11-stable/usr.bin/m4/
H A Dgnum4.c282 add_sub(int n, const char *string, regex_t *re, regmatch_t *pm) argument
288 else if (pm[n].rm_so != -1 &&
289 pm[n].rm_eo != -1) {
290 addchars(string + pm[n].rm_so,
291 pm[n].rm_eo - pm[n].rm_so);
299 add_replace(const char *string, regex_t *re, const char *replace, regmatch_t *pm) argument
305 add_sub(0, string, re, pm);
316 add_sub(0, string, re, pm);
323 add_sub(*(++p) - '0', string, re, pm);
332 do_subst(const char *string, regex_t *re, const char *source, const char *replace, regmatch_t *pm) argument
373 do_regexp(const char *string, regex_t *re, const char *source, const char *replace, regmatch_t *pm) argument
391 do_regexpindex(const char *string, regex_t *re, const char *source, regmatch_t *pm) argument
[all...]
/freebsd-11-stable/sys/powerpc/aim/
H A Dslb.c222 user_va_to_slb_entry(pmap_t pm, vm_offset_t va) argument
228 ua = pm->pm_slb_tree_root;
259 va_to_vsid(pmap_t pm, vm_offset_t va) argument
264 if (pm == kernel_pmap)
272 entry = user_va_to_slb_entry(pm, va);
275 return (allocate_user_vsid(pm,
282 allocate_user_vsid(pmap_t pm, uint64_t esid, int large) argument
289 KASSERT(pm != kernel_pmap, ("Attempting to allocate a kernel VSID"));
291 PMAP_LOCK_ASSERT(pm, MA_OWNED);
298 ua = pm
346 free_vsid(pmap_t pm, uint64_t esid, int large) argument
399 slb_free_tree(pmap_t pm) argument
463 slb_insert_user(pmap_t pm, struct slb *slb) argument
[all...]

Completed in 344 milliseconds

12345678