Searched refs:uc (Results 51 - 75 of 137) sorted by relevance

123456

/freebsd-11-stable/sys/kern/
H A Dkern_umtx.c187 #define UMTXQ_LOCKED_ASSERT(uc) mtx_assert(&(uc)->uc_lock, MA_OWNED)
315 struct umtxq_chain *uc; local
325 uc = &umtxq_chains[i][j];
326 mtx_lock(&uc->uc_lock);
327 tot += uc->max_length;
328 mtx_unlock(&uc->uc_lock);
337 uc = &umtxq_chains[i][j];
338 mtx_lock(&uc->uc_lock);
339 whole = uc
391 struct umtxq_chain *uc; local
501 struct umtxq_chain *uc; local
513 struct umtxq_chain *uc; local
526 struct umtxq_chain *uc; local
557 struct umtxq_chain *uc; local
580 struct umtxq_chain *uc; local
596 struct umtxq_chain *uc; local
629 struct umtxq_chain *uc; local
662 struct umtxq_chain *uc; local
680 struct umtxq_chain *uc; local
727 struct umtxq_chain *uc; local
754 struct umtxq_chain *uc; local
844 struct umtxq_chain *uc; local
1662 struct umtxq_chain *uc; local
1727 struct umtxq_chain *uc; local
1741 struct umtxq_chain *uc; local
1764 struct umtxq_chain *uc; local
1784 struct umtxq_chain *uc; local
[all...]
/freebsd-11-stable/sys/dev/uart/
H A Duart_core.c232 uart_getname(struct uart_class *uc) argument
234 return ((uc != NULL) ? uc->name : NULL);
238 uart_getops(struct uart_class *uc) argument
240 return ((uc != NULL) ? uc->uc_ops : NULL);
244 uart_getrange(struct uart_class *uc) argument
246 return ((uc != NULL) ? uc->uc_range : 0);
250 uart_getregshift(struct uart_class *uc) argument
256 uart_getregiowidth(struct uart_class *uc) argument
[all...]
H A Duart_subr.c70 struct uart_class *uc; local
76 uc = uart_classes[i];
77 nm = uart_getname(uc);
83 return (uc);
/freebsd-11-stable/sys/amd64/ia32/
H A Dia32_signal.c257 struct ia32_ucontext uc; local
263 bzero(&uc, sizeof(uc));
264 ia32_get_mcontext(td, &uc.uc_mcontext, GET_MC_CLEAR_RET);
266 uc.uc_sigmask = td->td_sigmask;
268 bzero(&uc.__spare__, sizeof(uc.__spare__));
269 ret = copyout(&uc, uap->ucp, UC_COPY_SIZE);
277 struct ia32_ucontext uc; local
283 ret = copyin(uap->ucp, &uc, UC_COPY_SIZ
298 struct ia32_ucontext uc; local
767 struct ia32_ucontext4 uc; local
841 struct ia32_ucontext uc; local
[all...]
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_signal.c531 struct svr4_ucontext uc; local
536 DPRINTF(("getcontext(%p)\n", uap->uc));
540 svr4_getcontext(td, &uc, &td->td_sigmask, onstack);
541 return copyout(&uc, uap->uc, sizeof(uc));
544 DPRINTF(("setcontext(%p)\n", uap->uc));
545 if ((error = copyin(uap->uc, &uc, sizeof(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 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;
/freebsd-11-stable/tools/tools/drm/
H A Dgen-drm_pciids29 my $vendor_id = uc($1);
30 my $device_id = uc($2);
61 my $vendor_id = uc($1);
62 my $device_id = uc($2);
94 my $vendor_id = uc($1);
104 my $device_id = uc($1);
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwind-seh.cpp241 unwind_phase2_forced(unw_context_t *uc, argument
245 __unw_init_local(&cursor2, uc);
378 unw_context_t uc; local
380 __unw_getcontext(&uc);
381 unwind_phase2_forced(&uc, exception_object,
417 unw_context_t uc; local
418 __unw_getcontext(&uc);
426 return unwind_phase2_forced(&uc, exception_object, stop, stop_parameter);
H A DUnwind-EHABI.cpp440 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { argument
445 // Instead, they are passed the original |uc| and they create a new VRS
447 __unw_init_local(cursor, uc);
538 static _Unwind_Reason_Code unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, argument
542 __unw_init_local(cursor, uc);
674 unw_context_t uc; local
676 __unw_getcontext(&uc);
683 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, &cursor, exception_object);
688 return unwind_phase2(&uc, &cursor, exception_object, false);
712 unw_context_t uc; local
[all...]
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Dlinux-unwind.h134 struct gcc_ucontext uc; member in struct:rt_sigframe
140 return frame->uc.regs;
177 struct gcc_ucontext uc; member in struct:rt_sigframe
179 return frame->uc.regs;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dutf8proc.c484 apr_int32_t uc;
488 len = utf8proc_iterate((apr_byte_t*)src + done, length - done, &uc);
527 uc = -((apr_int32_t)(*p & 0xff));
536 uc = ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
539 uc = (((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
543 uc = (((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
555 ((apr_int32_t*)buffer.data)[decomp_length++] = uc;
482 apr_int32_t uc; local
/freebsd-11-stable/contrib/libreadline/
H A Drltty.c897 unsigned char uc;
899 uc = tiop->c_cc[sc];
900 if (uc != (unsigned char)_POSIX_VDISABLE && kmap[uc].type == ISFUNC)
901 kmap[uc].function = func;
905 #define RESET_SPECIAL(uc) \
906 if (uc != (unsigned char)_POSIX_VDISABLE && kmap[uc].type == ISFUNC) \
907 kmap[uc].function = rl_insert;
896 unsigned char uc; local
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dbacktrace.c99 btcallback(void *uc, void *opq) { argument
105 arg->result[arg->count++] = (void *)_Unwind_GetIP(uc);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-ilk.h166 extern unsigned char cvmx_ilk_bit_count (unsigned char uc);
/freebsd-11-stable/sys/rpc/rpcsec_gss/
H A Dsvc_rpcsec_gss.c449 rpc_gss_ucred_t *uc; local
465 uc = &client->cl_ucred;
467 cr->cr_uid = cr->cr_ruid = cr->cr_svuid = uc->uid;
468 cr->cr_rgid = cr->cr_svgid = uc->gid;
469 crsetgroups(cr, uc->gidlen, uc->gidlist);
796 rpc_gss_ucred_t *uc = &client->cl_ucred; local
799 uc->uid = 65534;
800 uc->gid = 65534;
801 uc
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dpm_machdep.c191 ucontext_t uc; local
194 error = copyin(uap->sigcntxp, &uc, sizeof(uc));
198 error = set_mcontext(td, &uc.uc_mcontext);
202 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/lib/librpcsec_gss/
H A Dsvc_rpcsec_gss.c568 rpc_gss_ucred_t *uc = &client->cl_ucred; local
570 uc->uid = 65534;
571 uc->gid = 65534;
572 uc->gidlen = 0;
573 uc->gidlist = client->cl_gid_storage;
582 uc->uid = pw->pw_uid;
583 uc->gid = pw->pw_gid;
584 uc->gidlist = client->cl_gid_storage;
585 getgrouplist(pw->pw_name, pw->pw_gid, uc->gidlist, &len);
586 uc
[all...]
/freebsd-11-stable/contrib/nvi/common/
H A Dkey.c285 int uc = -1; local
288 uc = decode_utf8(sp->cname);
299 uc = decode_utf16(buf, 1);
302 if (uc >= 0) {
304 uc < 0x10000 ? "\\u%04x" : "\\U%05X", uc);
/freebsd-11-stable/usr.sbin/inetd/
H A Dbuiltins.c352 struct xucred uc; local
538 size = sizeof(uc);
545 if (sysctlbyname("net.inet.tcp.getcred", &uc, &size, sin4,
555 if (sysctlbyname("net.inet6.tcp6.getcred", &uc, &size, sin6,
564 if (getcredfail != 0 || uc.cr_version != XUCRED_VERSION) {
573 pw = getpwuid(uc.cr_uid);
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dasn1_print.c194 unsigned char *uc; local
197 uc = (unsigned char *)str.data;
199 printf ("%02x", uc[i]);
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dvis.c361 unsigned char uc = (unsigned char)c; local
371 dst = do_hvis(dst, uc, flag, nextc, extra);
373 dst = do_svis(dst, uc, flag, nextc, extra);
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dquotearg.c174 unsigned char uc = c; local
175 int *p = (o ? o : &default_quoting_options)->quote_these_too + uc / INT_BITS;
176 int shift = uc % INT_BITS;

Completed in 211 milliseconds

123456