Searched refs:uc (Results 51 - 75 of 137) sorted by last modified time

123456

/freebsd-11-stable/sys/netpfil/ipfw/nat64/
H A Dnat64lsn_control.c75 nat64lsn_default_config(ipfw_nat64lsn_cfg *uc) argument
78 if (uc->max_ports == 0)
79 uc->max_ports = NAT64LSN_MAX_PORTS;
81 uc->max_ports = roundup(uc->max_ports, NAT64_CHUNK_SIZE);
82 if (uc->max_ports > NAT64_CHUNK_SIZE * NAT64LSN_MAXPGPTR)
83 uc->max_ports = NAT64_CHUNK_SIZE * NAT64LSN_MAXPGPTR;
84 if (uc->jmaxlen == 0)
85 uc->jmaxlen = NAT64LSN_JMAXLEN;
86 if (uc
116 ipfw_nat64lsn_cfg *uc; local
310 nat64lsn_export_config(struct ip_fw_chain *ch, struct nat64lsn_cfg *cfg, ipfw_nat64lsn_cfg *uc) argument
345 ipfw_nat64lsn_cfg *uc; local
407 ipfw_nat64lsn_cfg *uc; local
[all...]
H A Dnat64clat_control.c98 ipfw_nat64clat_cfg *uc)
100 uc->plat_prefix = cfg->base.plat_prefix;
101 uc->plat_plen = cfg->base.plat_plen;
102 uc->clat_prefix = cfg->base.clat_prefix;
103 uc->clat_plen = cfg->base.clat_plen;
104 uc->flags = cfg->base.flags & NAT64CLAT_FLAGSMASK;
105 uc->set = cfg->no.set;
106 strlcpy(uc->name, cfg->no.name, sizeof(uc->name));
119 ipfw_nat64clat_cfg *uc; local
97 nat64clat_export_config(struct ip_fw_chain *ch, struct nat64clat_cfg *cfg, ipfw_nat64clat_cfg *uc) argument
149 ipfw_nat64clat_cfg *uc; local
220 ipfw_nat64clat_cfg *uc; local
[all...]
/freebsd-11-stable/sys/arm64/arm64/
H A Dmachdep.c511 ucontext_t uc; local
516 if (copyin(uap->sigcntxp, &uc, sizeof(uc)))
519 error = set_mcontext(td, &uc.uc_mcontext);
522 set_fpcontext(td, &uc.uc_mcontext);
525 kern_sigprocmask(td, SIG_SETMASK, &uc.uc_sigmask, NULL, 0);
/freebsd-11-stable/sys/riscv/riscv/
H A Dmachdep.c432 ucontext_t uc; local
437 if (copyin(uap->sigcntxp, &uc, sizeof(uc)))
444 sstatus = uc.uc_mcontext.mc_gpregs.gp_sstatus;
449 error = set_mcontext(td, &uc.uc_mcontext);
453 set_fpcontext(td, &uc.uc_mcontext);
456 kern_sigprocmask(td, SIG_SETMASK, &uc.uc_sigmask, NULL, 0);
/freebsd-11-stable/contrib/openpam/
H A Dltmain.sh5103 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
10630 done | sort | sort -uc >/dev/null 2>&1); then
/freebsd-11-stable/contrib/bzip2/
H A Ddecompress.c108 UChar uc; local
197 GET_UCHAR(BZ_X_MAGIC_1, uc);
198 if (uc != BZ_HDR_B) RETURN(BZ_DATA_ERROR_MAGIC);
200 GET_UCHAR(BZ_X_MAGIC_2, uc);
201 if (uc != BZ_HDR_Z) RETURN(BZ_DATA_ERROR_MAGIC);
203 GET_UCHAR(BZ_X_MAGIC_3, uc)
204 if (uc != BZ_HDR_h) RETURN(BZ_DATA_ERROR_MAGIC);
222 GET_UCHAR(BZ_X_BLKHDR_1, uc);
224 if (uc == 0x17) goto endhdr_2;
225 if (uc !
[all...]
/freebsd-11-stable/sbin/ping/
H A Dping.c1381 u_char uc[2]; member in union:__anon3943
1401 last.uc[0] = *(u_char *)w;
1402 last.uc[1] = 0;
/freebsd-11-stable/lib/libthread_db/arch/mips/
H A Dlibpthread_md.c42 pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) argument
45 memcpy(uc->uc_mcontext.mc_regs, &r->r_regs[ZERO],
46 sizeof(uc->uc_mcontext.mc_regs));
47 uc->uc_mcontext.mc_pc = r->r_regs[PC];
48 uc->uc_mcontext.mullo = r->r_regs[MULLO];
49 uc->uc_mcontext.mulhi = r->r_regs[MULHI];
53 pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) argument
55 memcpy(&r->r_regs[ZERO], uc->uc_mcontext.mc_regs,
56 sizeof(uc->uc_mcontext.mc_regs));
57 r->r_regs[PC] = uc
63 pt_fpreg_to_ucontext(const struct fpreg* r, ucontext_t *uc) argument
71 pt_ucontext_to_fpreg(const ucontext_t *uc, struct fpreg *r) argument
[all...]
/freebsd-11-stable/usr.sbin/usbdump/
H A Dusbdump.c119 static struct usbcap uc; variable in typeref:struct:usbcap
557 struct usbcap *p = &uc;
818 struct usbcap *p = &uc;
/freebsd-11-stable/lib/libpmc/
H A Dlibpmc.c2290 __P4MASK(hit-uc, 2),
2346 __P4MASK(mem-uc, 7),
2360 __P4MASK(mem-uc, 7),
/freebsd-11-stable/sys/kern/
H A Dkern_context.c65 ucontext_t uc; local
71 bzero(&uc, sizeof(ucontext_t));
72 get_mcontext(td, &uc.uc_mcontext, GET_MC_CLEAR_RET);
74 uc.uc_sigmask = td->td_sigmask;
76 bzero(uc.__spare__, sizeof(uc.__spare__));
77 ret = copyout(&uc, uap->ucp, UC_COPY_SIZE);
85 ucontext_t uc; local
91 ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
93 ret = set_mcontext(td, &uc
106 ucontext_t uc; local
[all...]
H A Dkern_ktrace.c151 static void ktr_freeproc(struct proc *p, struct ucred **uc,
423 ktr_freeproc(struct proc *p, struct ucred **uc, struct vnode **vp) argument
429 *uc = p->p_tracecred;
492 ktrprocexec(struct proc *p, struct ucred **uc, struct vnode **vp) argument
497 ktr_freeproc(p, uc, vp);
/freebsd-11-stable/contrib/openbsm/bsm/
H A Dlibbsm.h212 u_char uc; member in struct:__anon3931
/freebsd-11-stable/tools/test/vm86/
H A Dvm86_test.c56 ucontext_t *uc; local
59 uc = ucp;
60 mc = &uc->uc_mcontext;
78 ucontext_t uc; local
115 memset(&uc, 0, sizeof(uc));
116 uc.uc_mcontext.mc_ecx = 0x2345;
117 uc.uc_mcontext.mc_eflags = PSL_VM | PSL_USER;
118 uc.uc_mcontext.mc_cs = uc
[all...]
/freebsd-11-stable/sys/dev/mly/
H A Dmly.c128 static int mly_user_command(struct mly_softc *sc, struct mly_user_command *uc);
2863 struct mly_user_command *uc = (struct mly_user_command *)addr; local
2868 return(mly_user_command(sc, uc));
2886 mly_user_command(struct mly_softc *sc, struct mly_user_command *uc) argument
2900 mc->mc_length = (uc->DataTransferLength >= 0) ? uc->DataTransferLength : -uc->DataTransferLength;
2907 if (uc->DataTransferLength > 0) {
2911 if (uc->DataTransferLength < 0) {
2913 if ((error = copyin(uc
[all...]
/freebsd-11-stable/sys/i386/i386/
H A Dk6_mem.c53 #define K6_REG_GET(reg, addr, mask, wc, uc) do { \
57 uc = (reg) & 0x1; \
60 #define K6_REG_MAKE(addr, mask, wc, uc) \
61 ((addr) | ((mask) << 2) | ((wc) << 1) | uc)
80 u_int32_t len = 0, wc, uc; local
93 uc = (desc->mr_flags & MDF_UNCACHEABLE) ? 1 : 0;
95 *mtrr = K6_REG_MAKE(desc->mr_base, len, wc, uc);
103 u_int32_t addr, mask, wc, uc; local
117 K6_REG_GET(one, addr, mask, wc, uc);
122 if (uc)
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dterm_ascii.c273 ascii_uc2str(int uc) argument
342 assert(uc >= 0);
343 if ((size_t)uc < sizeof(tab)/sizeof(tab[0]))
344 return tab[uc];
345 return mchars_uc2str(uc);
H A Dterm.c439 int sz, uc; local
485 uc = mchars_num2uc(seq + 1, sz - 1);
488 uc = mchars_num2char(seq, sz);
489 if (uc < 0)
498 uc = mchars_spec2cp(seq, sz);
499 if (uc > 0)
500 encode1(p, uc);
531 uc = -p->col;
533 uc = 0;
536 uc
815 int ssz, skip, uc; local
[all...]
H A Dmdoc_markdown.c496 int bs, sz, uc, breakline; local
571 uc = 0;
575 uc = mchars_num2uc(seq + 1, sz - 1);
578 uc = mchars_num2char(seq, sz);
581 uc = mchars_spec2cp(seq, sz);
623 if (uc) {
624 if ((uc < 0x20 && uc != 0x09) ||
625 (uc > 0x7E && uc <
[all...]
H A Dmain.c128 unsigned char *uc; local
345 ((uc = (unsigned char *)argv[0]) != NULL) &&
346 ((isdigit(uc[0]) && (uc[1] == '\0' ||
347 (isalpha(uc[1]) && uc[2] == '\0'))) ||
348 (uc[0] == 'n' && uc[1] == '\0'))) {
349 search.sec = (char *)uc;
H A Dchars.c503 mchars_uc2str(int uc) argument
508 if (uc == lines[i].unicode)
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_sig.c325 ucontext_t *uc; local
336 uc = alloca(uc_len);
337 getcontext(uc);
342 __fillcontextx2((char *)uc);
344 uc->uc_sigmask = curthread->deferred_sigmask;
348 handle_signal(&act, info.si_signo, &info, uc);
733 ucontext_t uc; local
741 (void) memcpy(&uc, ucp, sizeof(uc));
742 SIGDELSET(uc
749 ucontext_t uc; local
[all...]
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_proto.h206 char uc_l_[PADL_(struct svr4_ucontext *)]; struct svr4_ucontext * uc; char uc_r_[PADR_(struct svr4_ucontext *)]; member in struct:svr4_sys_context_args
/freebsd-11-stable/lib/libthread_db/arch/arm/
H A Dlibpthread_md.c37 pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) argument
39 mcontext_t *mc = &uc->uc_mcontext;
62 pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) argument
64 const mcontext_t *mc = &uc->uc_mcontext;
88 pt_fpreg_to_ucontext(const struct fpreg *r __unused, ucontext_t *uc) argument
90 mcontext_t *mc = &uc->uc_mcontext;
99 pt_ucontext_to_fpreg(const ucontext_t *uc __unused, struct fpreg *r)
/freebsd-11-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dltmain.sh5103 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
10630 done | sort | sort -uc >/dev/null 2>&1); then

Completed in 311 milliseconds

123456