Home
last modified time | relevance | path

Searched refs:pc (Results 226 – 250 of 1107) sorted by relevance

12345678910>>...45

/freebsd/sys/arm/arm/
H A Dbcopyinout_xscale.S57 movle pc, lr /* Bail early if length is <= 0 */
80 ldmfd sp!, {r10-r11, pc}
88 ldmfd sp!, {r10-r11, pc}
100 addne pc, pc, ip, lsl #3
220 add pc, pc, r5, lsl #1
399 addne pc, pc, r2, lsl #3
443 ldmfd sp!, {r10-r11, pc}
451 ldmfd sp!, {r10-r11, pc}
463 addne pc, pc, ip, lsl #3
584 add pc, pc, r5, lsl #1
[all …]
/freebsd/contrib/bearssl/tools/
H A Dfiles.c169 br_pem_decoder_context pc; in decode_pem() local
177 br_pem_decoder_init(&pc); in decode_pem()
187 tlen = br_pem_decoder_push(&pc, buf, len); in decode_pem()
190 switch (br_pem_decoder_event(&pc)) { in decode_pem()
193 po.name = xstrdup(br_pem_decoder_name(&pc)); in decode_pem()
194 br_pem_decoder_setdest(&pc, vblob_append, &bv); in decode_pem()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_report.cpp39 static void DescribeStackOrigin(const char *so, uptr pc) { in DescribeStackOrigin() argument
52 if (pc) in DescribeStackOrigin()
53 StackTrace(&pc, 1).Print(); in DescribeStackOrigin()
68 uptr pc; in DescribeOrigin() local
69 const char *so = GetStackOriginDescr(o.getStackId(), &pc); in DescribeOrigin()
70 DescribeStackOrigin(so, pc); in DescribeOrigin()
H A Dmsan.h288 const char *GetStackOriginDescr(u32 id, uptr *pc);
292 void PrintWarning(uptr pc, uptr bp);
293 void PrintWarningWithOrigin(uptr pc, uptr bp, u32 origin);
319 #define GET_STORE_STACK_TRACE_PC_BP(pc, bp) \ argument
325 stack.Unwind(pc, bp, nullptr, common_flags()->fast_unwind_on_malloc, \
332 #define GET_FATAL_STACK_TRACE_PC_BP(pc, bp) \ argument
335 stack.Unwind(pc, bp, nullptr, common_flags()->fast_unwind_on_fatal); \
/freebsd/contrib/tcpdump/
H A Dtcpdump.c435 error("%s", pcap_geterr(pc)); in show_tstamp_types_and_exit()
1267 pcap_t *pc; in open_interface() local
1286 if (pc == NULL) { in open_interface()
1301 return (pc); in open_interface()
1307 if (pc == NULL) { in open_interface()
1388 status = pcap_activate(pc); in open_interface()
1393 cp = pcap_geterr(pc); in open_interface()
1432 pcap_close(pc); in open_interface()
1439 cp = pcap_geterr(pc); in open_interface()
1467 if (pc == NULL) { in open_interface()
[all …]
/freebsd/sys/riscv/include/
H A Ddb_machdep.h88 #define next_instr_address(pc, bd) ((bd) ? (pc) : ((pc) + 4)) argument
/freebsd/contrib/lua/src/
H A Dluac.c330 #define EXTRAARG GETARG_Ax(code[pc+1])
337 int pc,n=f->sizecode; in PrintCode() local
338 for (pc=0; pc<n; pc++) in PrintCode()
340 Instruction i=code[pc]; in PrintCode()
351 int line=luaG_getfuncline(f,pc); in PrintCode()
352 printf("\t%d\t",pc+1); in PrintCode()
559 printf(COMMENT "to %d",GETARG_sJ(i)+pc+2); in PrintCode()
617 printf(COMMENT "to %d",pc-bx+2); in PrintCode()
621 printf(COMMENT "exit to %d",pc+bx+3); in PrintCode()
625 printf(COMMENT "to %d",pc+bx+2); in PrintCode()
[all …]
/freebsd/sbin/routed/rtquery/
H A Drtquery.c850 char c, *pc; in parse_quote() local
854 pc = *linep; in parse_quote()
855 if (*pc == '\0') in parse_quote()
861 c = *pc++; in parse_quote()
865 if (c == '\\' && *pc != '\0') { in parse_quote()
866 if ((c = *pc++) == 'n') { in parse_quote()
876 if (*pc >= '0' && *pc <= '7') { in parse_quote()
877 c = (c<<3)+(*pc++ - '0'); in parse_quote()
878 if (*pc >= '0' && *pc <= '7') in parse_quote()
879 c = (c<<3)+(*pc++ - '0'); in parse_quote()
[all …]
/freebsd/sys/riscv/riscv/
H A Ddb_interface.c105 db_show_mdpcpu(struct pcpu *pc) in db_show_mdpcpu() argument
107 db_printf("curpmap = %p\n", pc->pc_curpmap); in db_show_mdpcpu()
108 db_printf("pending_ipis = %x\n", pc->pc_pending_ipis); in db_show_mdpcpu()
109 db_printf("hart = %u\n", pc->pc_hart); in db_show_mdpcpu()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cpp106 const uptr pc = trace.trace[si]; in SymbolizeStack() local
107 uptr pc1 = pc; in SymbolizeStack()
110 if ((pc & kExternalPCBit) == 0) in SymbolizeStack()
413 stack->PushBack(pc); in RestoreStackMatch()
517 if (ev->pc) { in RestoreStack()
519 stack.PushBack(ev->pc); in RestoreStack()
535 prev_pc = ev->pc; in RestoreStack()
550 uptr ev_pc = RestoreAddr(ev->pc); in RestoreStack()
566 uptr ev_pc = RestoreAddr(ev->pc); in RestoreStack()
827 ObtainCurrentStack(thr, pc, &trace); in PrintCurrentStack()
[all …]
H A Dtsan_new_delete.cpp37 p = user_alloc(thr, pc, size); \
39 GET_STACK_TRACE_FATAL(thr, pc); \
52 p = user_memalign(thr, pc, (uptr)align, size); \
54 GET_STACK_TRACE_FATAL(thr, pc); \
121 user_free(thr, pc, ptr);
/freebsd/sys/powerpc/ps3/
H A Dplatform_ps3.c223 ps3_smp_start_cpu(platform_t plat, struct pcpu *pc) in ps3_smp_start_cpu() argument
228 int remote_pir = pc->pc_hwref; in ps3_smp_start_cpu()
231 ap_pcpu = pc; in ps3_smp_start_cpu()
235 while (!pc->pc_awake && timeout--) { in ps3_smp_start_cpu()
242 return ((pc->pc_awake) ? 0 : EBUSY); in ps3_smp_start_cpu()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_stack.cpp57 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) { in UnwindImpl() argument
69 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), in UnwindImpl()
77 Unwind(max_depth, pc, bp, context, t ? t->stack_top() : 0, in UnwindImpl()
/freebsd/sys/dev/usb/serial/
H A Dulpt.c203 struct usb_page_cache *pc; in ulpt_write_callback() local
219 pc = usbd_xfer_get_frame(xfer, 0); in ulpt_write_callback()
221 if (usb_fifo_get_data(f, pc, 0, max, &actlen, 0)) { in ulpt_write_callback()
242 struct usb_page_cache *pc; in ulpt_read_callback() local
271 pc = usbd_xfer_get_frame(xfer, 0); in ulpt_read_callback()
272 usb_fifo_put_data(f, pc, 0, actlen, 1); in ulpt_read_callback()
301 struct usb_page_cache *pc; in ulpt_status_callback() local
308 pc = usbd_xfer_get_frame(xfer, 1); in ulpt_status_callback()
309 usbd_copy_out(pc, 0, &cur_status, 1); in ulpt_status_callback()
334 pc = usbd_xfer_get_frame(xfer, 0); in ulpt_status_callback()
[all …]
/freebsd/contrib/unbound/services/
H A Doutside_network.c1418 pif = pc->pif;
1425 pif->out[pc->index]->index = pc->index;
1751 pc = (struct port_comm*)calloc(1, sizeof(*pc));
1752 if(!pc) {
1761 free(pc);
1874 free(pc);
1890 free(pc);
2209 log_assert(pend->pc && pend->pc->cp);
2735 if(p->pc)
3873 for(pc = outnet->unused_fds; pc; pc = pc->next) {
[all …]
/freebsd/sys/netgraph/bluetooth/drivers/ubtbcmfw/
H A Dubtbcmfw.c272 struct usb_page_cache *pc; in ubtbcmfw_write_callback() local
279 pc = usbd_xfer_get_frame(xfer, 0); in ubtbcmfw_write_callback()
280 if (usb_fifo_get_data(f, pc, 0, usbd_xfer_max_len(xfer), in ubtbcmfw_write_callback()
306 struct usb_page_cache *pc; in ubtbcmfw_read_callback() local
313 pc = usbd_xfer_get_frame(xfer, 0); in ubtbcmfw_read_callback()
314 usb_fifo_put_data(fifo, pc, 0, actlen, 1); in ubtbcmfw_read_callback()
/freebsd/sys/dev/usb/net/
H A Dif_cdce.c1171 struct usb_page_cache *pc; in cdce_intr_read_callback() local
1177 pc = usbd_xfer_get_frame(xfer, 0); in cdce_intr_read_callback()
1209 usbd_copy_out(pc, off + in cdce_intr_read_callback()
1254 struct usb_page_cache *pc; in cdce_intr_write_callback() local
1292 pc = usbd_xfer_get_frame(xfer, 0); in cdce_intr_write_callback()
1293 usbd_copy_in(pc, 0, &req, sizeof(req)); in cdce_intr_write_callback()
1315 pc = usbd_xfer_get_frame(xfer, 0); in cdce_intr_write_callback()
1316 usbd_copy_in(pc, 0, &req, sizeof(req)); in cdce_intr_write_callback()
1365 cdce_ncm_tx_zero(struct usb_page_cache *pc, in cdce_ncm_tx_zero() argument
1373 usbd_frame_zero(pc, start, end - start); in cdce_ncm_tx_zero()
[all …]
/freebsd/contrib/cortex-strings/src/thumb/
H A Dstrcmp-armv6m.S104 pop {r4, r5, r6, pc}
117 pop {r4, r5, r6, pc}
121 pop {r4, r5, r6, pc}
141 pop {r4, r5, r6, pc}
/freebsd/contrib/arm-optimized-routines/string/arm/
H A Dstrcmp-armv6m.S78 pop {r4, r5, r6, pc}
91 pop {r4, r5, r6, pc}
95 pop {r4, r5, r6, pc}
115 pop {r4, r5, r6, pc}
/freebsd/sys/dev/hwpmc/
H A Dhwpmc_amd.c326 PMCDBG3(MDP, SWI, 1, "pc=%p pp=%p enable-msr=%d", pc, pp, in amd_switch_in()
341 amd_switch_out(struct pmc_cpu *pc __pmcdbg_used, in amd_switch_out()
344 PMCDBG3(MDP, SWO, 1, "pc=%p pp=%p enable-msr=%d", pc, pp, pp ? in amd_switch_out()
697 struct pmc_cpu *pc; in amd_pcpu_init() local
713 pc = pmc_pcpu[cpu]; in amd_pcpu_init()
716 KASSERT(pc != NULL, ("[amd,%d] NULL per-cpu pointer", __LINE__)); in amd_pcpu_init()
722 pc->pc_hwpmcs[n + first_ri] = phw; in amd_pcpu_init()
735 struct pmc_cpu *pc; in amd_pcpu_fini() local
770 pc = pmc_pcpu[cpu]; in amd_pcpu_fini()
771 KASSERT(pc != NULL, ("[amd,%d] NULL per-cpu state", __LINE__)); in amd_pcpu_fini()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
H A DABIMacOSX_arm64.cpp348 uint32_t pc_reg_num = arm64_dwarf::pc; in CreateFunctionEntryUnwindPlan()
373 uint32_t pc_reg_num = arm64_dwarf::pc; in CreateDefaultUnwindPlan()
808 addr_t ABIMacOSX_arm64::FixCodeAddress(addr_t pc) { in FixCodeAddress() argument
815 if (pc & pac_sign_extension) { in FixCodeAddress()
824 return (pc & pac_sign_extension) ? pc | mask : pc & (~mask); in FixCodeAddress()
827 addr_t ABIMacOSX_arm64::FixDataAddress(addr_t pc) { in FixDataAddress() argument
834 if (pc & pac_sign_extension) { in FixDataAddress()
843 return (pc & pac_sign_extension) ? pc | mask : pc & (~mask); in FixDataAddress()
/freebsd/include/
H A DMakefile384 .if exists(${SRCTOP}/sys/${MACHINE}/include/pc)
385 cd ${SRCTOP}/sys/${MACHINE}/include/pc; \
387 ${SDESTDIR}${INCLUDEDIR}/machine/pc
396 .if exists(${SRCTOP}/sys/${_MARCH}/include/pc)
398 ${SDESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
399 cd ${SRCTOP}/sys/${_MARCH}/include/pc; \
401 ${SDESTDIR}${INCLUDEDIR}/${_MARCH}/pc
457 ${SDESTDIR}${INCLUDEDIR}/machine/pc;
466 .if exists(${SRCTOP}/sys/${_MARCH}/include/pc)
468 ${SDESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
[all …]
/freebsd/sys/kern/
H A Dkern_cpu.c153 struct pcpu *pc; in cpufreq_attach() local
171 pc = cpu_get_pcpu(dev); in cpufreq_attach()
236 struct pcpu *pc; in cf_set_method() local
325 pc = cpu_get_pcpu(set->dev); in cf_set_method()
328 if (pc == NULL) { in cf_set_method()
358 pc = cpu_get_pcpu(set->dev); in cf_set_method()
458 struct pcpu *pc; in cf_get_method() local
536 pc = cpu_get_pcpu(dev); in cf_get_method()
537 if (pc == NULL) { in cf_get_method()
637 struct pcpu *pc; in cf_levels_method() local
[all …]
/freebsd/sys/i386/i386/
H A Dcopyout.c94 struct pcpu *pc; in cp_slow0() local
109 pc = get_pcpu(); in cp_slow0()
113 mtx_lock(&pc->pc_copyout_mlock); in cp_slow0()
114 kaddr = pc->pc_copyout_maddr; in cp_slow0()
117 sx_xlock(&pc->pc_copyout_slock); in cp_slow0()
118 kaddr = pc->pc_copyout_saddr; in cp_slow0()
125 sx_xunlock(&pc->pc_copyout_slock); in cp_slow0()
127 mtx_unlock(&pc->pc_copyout_mlock); in cp_slow0()
/freebsd/contrib/llvm-project/lld/MachO/Arch/
H A DARM64Common.cpp61 uint64_t pc) const { in relocateOne()
66 encodeBranch26(loc32, r, base, value - pc); in relocateOne()
74 value -= pc; in relocateOne()
81 encodePage21(loc32, r, base, pageBits(value) - pageBits(pc)); in relocateOne()

12345678910>>...45