/src/sys/lib/libsa/ |
fnmatch.c | 68 char fc, pc; local in function:fnmatch 72 pc = *pattern++; 73 if (!fc && !pc) 75 if (pc == '?' && fc) 76 pc = fc; 77 } while (fc == pc); 79 if (pc != '*') 85 pc = *pattern++; 86 if (!pc) 88 while ((fname = strchr(fname, pc))) [all...] |
/src/sys/arch/ibmnws/pci/ |
pci_machdep.c | 63 ibmnws_pci_get_chipset_tag_indirect(pci_chipset_tag_t pc) 66 pc->pc_conf_v = (void *)pc; 68 pc->pc_attach_hook = genppc_pci_indirect_attach_hook; 69 pc->pc_bus_maxdevs = ibmnws_pci_bus_maxdevs; 70 pc->pc_make_tag = genppc_pci_indirect_make_tag; 71 pc->pc_conf_read = genppc_pci_indirect_conf_read; 72 pc->pc_conf_write = genppc_pci_indirect_conf_write; 74 pc->pc_intr_v = (void *)pc; [all...] |
/src/sys/arch/mvmeppc/pci/ |
pci_machdep.c | 73 mvmeppc_pci_get_chipset_tag(pci_chipset_tag_t pc) 75 pc->pc_conf_v = (void *)pc; 77 pc->pc_attach_hook = genppc_pci_indirect_attach_hook; 78 pc->pc_bus_maxdevs = genppc_pci_bus_maxdevs; 79 pc->pc_make_tag = genppc_pci_indirect_make_tag; 80 pc->pc_conf_read = genppc_pci_indirect_conf_read; 81 pc->pc_conf_write = genppc_pci_indirect_conf_write; 83 pc->pc_intr_v = (void *)pc; [all...] |
/src/sys/arch/bebox/pci/ |
pci_machdep.c | 72 bebox_pci_get_chipset_tag(pci_chipset_tag_t pc) 74 pc->pc_conf_v = (void *)pc; 76 pc->pc_attach_hook = genppc_pci_indirect_attach_hook; 77 pc->pc_bus_maxdevs = genppc_pci_bus_maxdevs; 78 pc->pc_make_tag = genppc_pci_indirect_make_tag; 79 pc->pc_conf_read = genppc_pci_indirect_conf_read; 80 pc->pc_conf_write = genppc_pci_indirect_conf_write; 82 pc->pc_intr_v = (void *)pc; [all...] |
/src/sys/dev/pci/ |
lynxfbvar.h | 28 int lynxfb_cnattach(bus_space_tag_t, bus_space_tag_t, pci_chipset_tag_t pc,
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_fd.h | 42 void FdAcquire(ThreadState *thr, uptr pc, int fd); 43 void FdRelease(ThreadState *thr, uptr pc, int fd); 44 void FdAccess(ThreadState *thr, uptr pc, int fd); 45 void FdClose(ThreadState *thr, uptr pc, int fd, bool write = true); 46 void FdFileCreate(ThreadState *thr, uptr pc, int fd); 47 void FdDup(ThreadState *thr, uptr pc, int oldfd, int newfd, bool write); 48 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd); 49 void FdEventCreate(ThreadState *thr, uptr pc, int fd); 50 void FdSignalCreate(ThreadState *thr, uptr pc, int fd); 51 void FdInotifyCreate(ThreadState *thr, uptr pc, int fd) [all...] |
tsan_interface_inl.h | 53 void __tsan_read1_pc(void *addr, void *pc) { 54 MemoryRead(cur_thread(), (uptr)pc, (uptr)addr, kSizeLog1); 57 void __tsan_read2_pc(void *addr, void *pc) { 58 MemoryRead(cur_thread(), (uptr)pc, (uptr)addr, kSizeLog2); 61 void __tsan_read4_pc(void *addr, void *pc) { 62 MemoryRead(cur_thread(), (uptr)pc, (uptr)addr, kSizeLog4); 65 void __tsan_read8_pc(void *addr, void *pc) { 66 MemoryRead(cur_thread(), (uptr)pc, (uptr)addr, kSizeLog8); 69 void __tsan_write1_pc(void *addr, void *pc) { 70 MemoryWrite(cur_thread(), (uptr)pc, (uptr)addr, kSizeLog1) [all...] |
/src/sys/arch/sgimips/pci/ |
pci_machdep.c | 77 pci_bus_maxdevs(pci_chipset_tag_t pc, int busno) 80 return (*pc->pc_bus_maxdevs)(pc, busno); 84 pci_make_tag(pci_chipset_tag_t pc, int bus, int device, int function) 91 pci_decompose_tag(pci_chipset_tag_t pc, pcitag_t tag, int *bp, int *dp, int *fp) 103 pci_conf_read(pci_chipset_tag_t pc, pcitag_t tag, int reg) 106 return (*pc->pc_conf_read)(pc, tag, reg); 110 pci_conf_write(pci_chipset_tag_t pc, pcitag_t tag, int reg, pcireg_t data) 113 (*pc->pc_conf_write)(pc, tag, reg, data) [all...] |
/src/sys/arch/evbppc/pmppc/pci/ |
pci_machdep.c | 88 pmppc_pci_get_chipset_tag(pci_chipset_tag_t pc) 90 pc->pc_conf_v = (void *)pc; 92 pc->pc_attach_hook = genppc_pci_indirect_attach_hook; 93 pc->pc_bus_maxdevs = genppc_pci_bus_maxdevs; 94 pc->pc_make_tag = genppc_pci_indirect_make_tag; 95 pc->pc_conf_read = genppc_pci_indirect_conf_read; 96 pc->pc_conf_write = genppc_pci_indirect_conf_write; 98 pc->pc_intr_v = (void *)pc; [all...] |
/src/sys/arch/ofppc/pci/ |
ofwpci.c | 68 ofwpci_get_chipset_tag(pci_chipset_tag_t pc) 70 pc->pc_conf_v = (void *)pc; 72 pc->pc_attach_hook = genppc_pci_ofmethod_attach_hook; 73 pc->pc_bus_maxdevs = genppc_pci_bus_maxdevs; 74 pc->pc_make_tag = genppc_pci_ofmethod_make_tag; 75 pc->pc_conf_read = genppc_pci_ofmethod_conf_read; 76 pc->pc_conf_write = genppc_pci_ofmethod_conf_write; 78 pc->pc_intr_v = (void *)pc; 131 pci_chipset_tag_t pc = &sc->sc_pc; local in function:ofwpci_attach [all...] |
/src/sys/arch/alpha/pci/ |
pci_kn20aa.c | 63 static void kn20aa_enable_intr(pci_chipset_tag_t pc, int irq); 64 static void kn20aa_disable_intr(pci_chipset_tag_t pc, int irq); 68 pci_chipset_tag_t pc) 72 pc->pc_intr_v = core; 73 pc->pc_intr_map = dec_kn20aa_intr_map; 74 pc->pc_intr_string = alpha_pci_generic_intr_string; 75 pc->pc_intr_evcnt = alpha_pci_generic_intr_evcnt; 76 pc->pc_intr_establish = alpha_pci_generic_intr_establish; 77 pc->pc_intr_disestablish = alpha_pci_generic_intr_disestablish; 80 pc->pc_pciide_compat_intr_establish = NULL 107 pci_chipset_tag_t pc = pa->pa_pc; local in function:ALPHA_PCI_INTR_INIT [all...] |
pci_machdep.c | 95 pci_display_console(bus_space_tag_t iot, bus_space_tag_t memt, pci_chipset_tag_t pc, int bus, int device, int function) 109 tag = pci_make_tag(pc, bus, device, function); 110 id = pci_conf_read(pc, tag, PCI_ID_REG); 115 class = pci_conf_read(pc, tag, PCI_CLASS_REG); 132 nmatch = tga_cnmatch(iot, memt, pc, tag); 140 (*fn)(iot, memt, pc, bus, device, function); 163 pci_chipset_tag_t pc) 170 (*impl)->intr_init(core, iot, memt, pc); 178 alpha_pci_intr_alloc(pci_chipset_tag_t pc, unsigned int maxstrays) 184 pc->pc_shared_intrs = alpha_shared_intr_alloc(pc->pc_nirq) 207 pci_chipset_tag_t const pc = pa->pa_pc; local in function:alpha_pci_generic_intr_map 404 pci_chipset_tag_t const pc = arg; local in function:alpha_pci_generic_iointr 503 pci_chipset_tag_t const pc = pba->pba_pc; local in function:pci_attach_hook 570 pci_chipset_tag_t const pc = pa->pa_pc; local in function:pci_intr_map [all...] |
pci_eb66.c | 93 extern void eb66_intr_enable(pci_chipset_tag_t pc, int irq); 94 extern void eb66_intr_disable(pci_chipset_tag_t pc, int irq); 98 pci_chipset_tag_t pc) 102 pc->pc_intr_v = core; 103 pc->pc_intr_map = alpha_pci_generic_intr_map; 104 pc->pc_intr_string = alpha_pci_generic_intr_string; 105 pc->pc_intr_evcnt = alpha_pci_generic_intr_evcnt; 106 pc->pc_intr_establish = alpha_pci_generic_intr_establish; 107 pc->pc_intr_disestablish = alpha_pci_generic_intr_disestablish; 110 pc->pc_pciide_compat_intr_establish = NULL [all...] |
pci_alphabook1.c | 90 pci_chipset_tag_t pc) 93 pc->pc_intr_v = core; 94 pc->pc_intr_map = dec_alphabook1_intr_map; 95 pc->pc_intr_string = sio_pci_intr_string; 96 pc->pc_intr_evcnt = sio_pci_intr_evcnt; 97 pc->pc_intr_establish = sio_pci_intr_establish; 98 pc->pc_intr_disestablish = sio_pci_intr_disestablish; 101 pc->pc_pciide_compat_intr_establish = NULL; 104 sio_intr_setup(pc, iot); 117 pci_chipset_tag_t pc = pa->pa_pc local in function:ALPHA_PCI_INTR_INIT [all...] |
pci_1000.c | 99 pci_chipset_tag_t pc) 107 pc->pc_intr_v = core; 108 pc->pc_intr_map = dec_1000_intr_map; 109 pc->pc_intr_string = alpha_pci_generic_intr_string; 110 pc->pc_intr_evcnt = alpha_pci_generic_intr_evcnt; 111 pc->pc_intr_establish = alpha_pci_generic_intr_establish; 112 pc->pc_intr_disestablish = alpha_pci_generic_intr_disestablish; 114 pc->pc_pciide_compat_intr_establish = NULL; 116 pc->pc_intr_desc = "dec 1000"; 117 pc->pc_vecbase = 0x900 138 pci_chipset_tag_t pc = pa->pa_pc; local in function:ALPHA_PCI_INTR_INIT [all...] |
pci_eb64plus.c | 98 pci_chipset_tag_t pc) 102 pc->pc_intr_v = core; 103 pc->pc_intr_map = alpha_pci_generic_intr_map; 104 pc->pc_intr_string = alpha_pci_generic_intr_string; 105 pc->pc_intr_evcnt = alpha_pci_generic_intr_evcnt; 106 pc->pc_intr_establish = alpha_pci_generic_intr_establish; 107 pc->pc_intr_disestablish = alpha_pci_generic_intr_disestablish; 110 pc->pc_pciide_compat_intr_establish = NULL; 117 pc->pc_intr_desc = "eb64+"; 118 pc->pc_vecbase = 0x900 [all...] |
/src/sys/arch/arc/include/ |
trap.h | 7 extern int arc_hardware_intr (unsigned mask, unsigned pc,
|
/src/lib/csu/arch/arm/ |
crtn.S | 41 ldmea fp, {fp, sp, pc} 44 ldmea fp, {fp, sp, pc}
|
/src/sys/dev/fdt/ |
fdt_pwm.c | 55 struct fdtbus_pwm_controller *pc; local in function:fdtbus_register_pwm_controller 57 pc = kmem_alloc(sizeof(*pc), KM_SLEEP); 58 pc->pc_dev = dev; 59 pc->pc_phandle = phandle; 60 pc->pc_funcs = funcs; 62 LIST_INSERT_HEAD(&fdtbus_pwm_controllers, pc, pc_next); 70 struct fdtbus_pwm_controller *pc; local in function:fdtbus_get_pwm_controller 72 LIST_FOREACH(pc, &fdtbus_pwm_controllers, pc_next) { 73 if (pc->pc_phandle == phandle 89 struct fdtbus_pwm_controller *pc; local in function:fdtbus_pwm_acquire_index [all...] |
/src/sys/arch/hpcmips/pci/ |
pci_machdep.c | 13 pci_bus_devorder(pci_chipset_tag_t pc, int bus, uint8_t *devs, int maxdevs) 15 return (*pc->pc_bus_devorder)(pc, bus, devs, maxdevs);
|
/src/sys/arch/prep/pci/ |
pci_machdep.c | 75 prep_pci_get_chipset_tag_indirect(pci_chipset_tag_t pc) 78 pc->pc_conf_v = (void *)pc; 80 pc->pc_attach_hook = genppc_pci_indirect_attach_hook; 81 pc->pc_bus_maxdevs = prep_pci_bus_maxdevs; 82 pc->pc_make_tag = genppc_pci_indirect_make_tag; 83 pc->pc_conf_read = genppc_pci_indirect_conf_read; 84 pc->pc_conf_write = genppc_pci_indirect_conf_write; 86 pc->pc_intr_v = (void *)pc; 273 pci_chipset_tag_t pc = v; local in function:prep_pci_conf_hook [all...] |
prep_pciconf_direct.c | 94 prep_pci_get_chipset_tag_direct(pci_chipset_tag_t pc) 97 pc->pc_conf_v = NULL; 99 pc->pc_attach_hook = prep_pci_direct_attach_hook; 100 pc->pc_bus_maxdevs = prep_pci_bus_maxdevs; 101 pc->pc_make_tag = prep_pci_direct_make_tag; 102 pc->pc_conf_read = prep_pci_direct_conf_read; 103 pc->pc_conf_write = prep_pci_direct_conf_write; 105 pc->pc_intr_v = NULL; 107 pc->pc_intr_map = prep_pci_intr_map; 108 pc->pc_intr_string = genppc_pci_intr_string [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_libignore.h | 13 // and checks whether the provided PC value belongs to the code ranges. 43 // Checks whether the provided PC belongs to one of the ignored libraries or 44 // the PC should be ignored because it belongs to an non-instrumented module 46 // "pc_in_ignored_lib" if the PC is in an ignored library, false otherwise. 47 bool IsIgnored(uptr pc, bool *pc_in_ignored_lib) const; 49 // Checks whether the provided PC belongs to an instrumented module. 50 bool IsPcInstrumented(uptr pc) const; 65 inline bool IsInRange(uptr pc, const LibCodeRange &range) const { 66 return (pc >= range.begin && pc < range.end) [all...] |
/src/sys/kern/ |
subr_physmap.c | 236 physmap_cookie_t * const pc = kmem_zalloc(sizeof(*pc), KM_SLEEP); local in function:physmap_map_init 240 pc->pc_physmap = map; 241 pc->pc_segs = map->pm_segs; 242 pc->pc_nsegs = map->pm_nsegs; 243 pc->pc_prot = prot; 244 pc->pc_klen = 0; 245 pc->pc_kva = 0; 246 pc->pc_direct_mapped = false; 251 while (offset >= pc->pc_segs->ps_len) 265 physmap_cookie_t * const pc = cookie; local in function:physmap_map 349 physmap_cookie_t * const pc = cookie; local in function:physmap_map_fini [all...] |
/src/sys/arch/sgimips/mace/ |
pci_mace.c | 123 pci_chipset_tag_t pc = &sc->sc_pc; local in function:macepci_attach 130 maa->maa_offset, 0, &pc->ioh) ) 133 pc->iot = maa->maa_st; 135 rev = bus_space_read_4(pc->iot, pc->ioh, MACEPCI_REVISION); 143 pc->pc_bus_maxdevs = macepci_bus_maxdevs; 144 pc->pc_conf_read = macepci_conf_read; 145 pc->pc_conf_write = macepci_conf_write; 146 pc->pc_intr_map = macepci_intr_map; 147 pc->pc_intr_string = macepci_intr_string 251 pci_chipset_tag_t pc = pa->pa_pc; local in function:macepci_intr_map 306 pci_chipset_tag_t pc = &sc->sc_pc; local in function:macepci_intr [all...] |