Searched refs:uc (Results 1 - 25 of 137) sorted by last modified time

123456

/freebsd-11-stable/contrib/libarchive/test_utils/
H A Dtest_main.c749 uint32_t uc; local
756 while ((n = _utf8_to_unicode(&uc, p, len)) > 0) {
759 logprintf("%04X", uc);
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c21100 } uc; member in struct:VdbeCursor
[all...]
H A Dltmain.sh5103 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
10639 done | sort | sort -uc >/dev/null 2>&1); then
/freebsd-11-stable/contrib/unbound/
H A Dltmain.sh5103 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
10632 done | sort | sort -uc >/dev/null 2>&1); then
/freebsd-11-stable/contrib/less/
H A Dttyin.c202 unsigned char uc;
203 result = iread(tty, &uc, sizeof(char));
204 c = (char) uc;
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_archive_string_conversion.c51 unicode_to_utf8(char *p, uint32_t uc) argument
56 if (uc <= 0x7f) {
57 *p++ = (char)uc;
58 } else if (uc <= 0x7ff) {
59 *p++ = 0xc0 | ((uc >> 6) & 0x1f);
60 *p++ = 0x80 | (uc & 0x3f);
61 } else if (uc <= 0xffff) {
62 *p++ = 0xe0 | ((uc >> 12) & 0x0f);
63 *p++ = 0x80 | ((uc >> 6) & 0x3f);
64 *p++ = 0x80 | (uc
84 unicode_to_utf16be(char *p, uint32_t uc) argument
111 unicode_to_utf16le(char *p, uint32_t uc) argument
135 unicode_to_wc(wchar_t *wp, uint32_t uc) argument
163 unsigned uc = 0; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_string.c131 #define IS_HIGH_SURROGATE_LA(uc) ((uc) >= 0xD800 && (uc) <= 0xDBFF)
132 #define IS_LOW_SURROGATE_LA(uc) ((uc) >= 0xDC00 && (uc) <= 0xDFFF)
133 #define IS_SURROGATE_PAIR_LA(uc) ((uc) >= 0xD800 && (uc) <= 0xDFFF)
2430 combine_surrogate_pair(uint32_t uc, uint32_ argument
2488 unicode_to_utf8(char *p, size_t remaining, uint32_t uc) argument
2538 unsigned uc; local
2594 unicode_to_utf16be(char *p, size_t remaining, uint32_t uc) argument
2616 unicode_to_utf16le(char *p, size_t remaining, uint32_t uc) argument
2658 uint32_t uc; local
2721 uint32_t uc; local
2812 get_nfc(uint32_t uc, uint32_t uc2) argument
2936 uint32_t uc, uc2; local
3190 get_nfd(uint32_t *cp1, uint32_t *cp2, uint32_t uc) argument
3243 uint32_t uc, uc2; local
3306 uint32_t uc; member in struct:__anon18
3738 uint32_t uc; local
[all...]
H A Darchive_string_composition.h987 #define IS_DECOMPOSABLE_BLOCK(uc) \
988 (((uc)>>8) <= 0x1D2 && u_decomposable_blocks[(uc)>>8])
1008 #define CCC(uc) \
1009 (((uc) > 0x1D244)?0:\
1010 ccc_val[ccc_val_index[ccc_index[(uc)>>8]][((uc)>>4)&0x0F]][(uc)&0x0F])
/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...]
/freebsd-11-stable/sys/dev/mlx5/
H A Dmlx5_ifc.h1168 u8 uc[0x1]; member in struct:mlx5_ifc_cmd_hca_cap_bits
/freebsd-11-stable/contrib/file/src/
H A Dis_json.c72 json_isspace(const unsigned char uc) argument
74 switch (uc) {
86 json_isdigit(unsigned char uc) argument
88 switch (uc) {
98 json_isxdigit(unsigned char uc) argument
100 if (json_isdigit(uc))
102 switch (uc) {
112 json_skip_space(const unsigned char *uc, const unsigned char *ue) argument
114 while (uc < ue && json_isspace(*uc))
122 const unsigned char *uc = *ucp; local
175 const unsigned char *uc = *ucp; local
209 const unsigned char *uc = *ucp; local
264 const unsigned char *uc = *ucp; local
315 const unsigned char *uc = *ucp; local
332 const unsigned char *uc; local
396 const unsigned char *uc = CAST(const unsigned char *, b->fbuf); local
[all...]
H A Dis_csv.c67 eatquote(const unsigned char *uc, const unsigned char *ue) argument
71 while (uc < ue) {
72 unsigned char c = *uc++;
76 return --uc;
92 csv_parse(const unsigned char *uc, const unsigned char *ue) argument
96 while (uc < ue) {
98 switch (c = *uc++) {
101 uc = eatquote(uc, ue);
136 const unsigned char *uc local
[all...]
/freebsd-11-stable/sys/amd64/amd64/
H A Dmachdep.c480 ucontext_t uc; local
494 error = copyin(uap->sigcntxp, &uc, sizeof(uc));
500 ucp = &uc;
535 if ((uc.uc_mcontext.mc_flags & _MC_HASFPXSTATE) != 0) {
536 xfpustate_len = uc.uc_mcontext.mc_xfpustate_len;
544 error = copyin((const void *)uc.uc_mcontext.mc_xfpustate,
/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/subversion/subversion/libsvn_subr/utf8proc/
H A Dutf8proc.c116 utf8proc_uint32_t uc; local
122 uc = *str++;
123 if (uc < 0x80) {
124 *dst = uc;
128 if ((uc - 0xc2) > (0xf4-0xc2)) return UTF8PROC_ERROR_INVALIDUTF8;
129 if (uc < 0xe0) { /* 2-byte sequence */
132 *dst = ((uc & 0x1f)<<6) | (*str & 0x3f);
135 if (uc < 0xf0) { /* 3-byte sequence */
139 if (uc == 0xed && *str > 0x9f)
141 uc
161 utf8proc_codepoint_valid(utf8proc_int32_t uc) argument
165 utf8proc_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t *dst) argument
192 unsafe_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t *dst) argument
223 unsafe_get_property(utf8proc_int32_t uc) argument
232 utf8proc_get_property(utf8proc_int32_t uc) argument
399 utf8proc_decompose_char(utf8proc_int32_t uc, utf8proc_int32_t *dst, utf8proc_ssize_t bufsize, utf8proc_option_t options, int *last_boundclass) argument
504 utf8proc_int32_t uc; local
563 utf8proc_int32_t uc; local
677 utf8proc_int32_t uc; local
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw2.c1081 * We could actually spare the variable and use *uc, setting
1087 struct ucred **uc)
1096 (struct bsd_ucred *)uc, ugid_lookupp, ((struct mbuf *)inp)->m_skb);
1118 *uc = crhold(inp->inp_cred);
1176 *uc = crhold(pcb->inp_cred);
1190 match = ((*uc)->cr_uid == (uid_t)insn->d[0]);
1192 match = groupmember((gid_t)insn->d[0], *uc);
1194 match = ((*uc)->cr_prison->pr_id == (int)insn->d[0]);
1086 check_uidgid(ipfw_insn_u32 *insn, struct ip_fw_args *args, int *ugid_lookupp, struct ucred **uc) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c1394 unsigned uc = (uch)c; local
1397 if (col[uc] != 0)
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindLevel1-gcc-ext.c94 unw_context_t uc; local
96 __unw_getcontext(&uc);
97 __unw_init_local(&cursor, &uc);
110 unw_context_t uc; local
111 __unw_getcontext(&uc);
112 __unw_init_local(&cursor, &uc);
196 unw_context_t uc; local
198 __unw_getcontext(&uc);
199 __unw_init_local(&cursor, &uc);
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...]
H A DUnwindLevel1.c38 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { argument
39 __unw_init_local(cursor, uc);
134 unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { argument
135 __unw_init_local(cursor, uc);
246 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor, argument
249 __unw_init_local(cursor, uc);
353 unw_context_t uc; local
355 __unw_getcontext(&uc);
363 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, &cursor, exception_object);
368 return unwind_phase2(&uc,
387 unw_context_t uc; local
412 unw_context_t uc; local
[all...]
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);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1008 static void SignalAction(int signo, void *si, void *uc) { argument
1013 __msan_unpoison(uc, __sanitizer::ucontext_t_sz);
1018 cb(signo, si, uc);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_linux.cpp369 static AccessInfo GetAccessInfo(siginfo_t *info, ucontext_t *uc) { argument
386 const uptr addr = uc->uc_mcontext.regs[0];
390 const uptr size = size_log == 0xf ? uc->uc_mcontext.regs[1] : 1U << size_log;
396 uptr pc = (uptr)uc->uc_mcontext.gregs[REG_RIP];
405 const uptr addr = uc->uc_mcontext.gregs[REG_RDI];
410 size_log == 0xf ? uc->uc_mcontext.gregs[REG_RSI] : 1U << size_log;
420 ucontext_t *uc, uptr *registers_frame = nullptr) {
424 stack->Unwind(pc, frame, uc, common_flags()->fast_unwind_on_fatal);
441 static bool HwasanOnSIGTRAP(int signo, siginfo_t *info, ucontext_t *uc) { argument
442 AccessInfo ai = GetAccessInfo(info, uc);
419 HandleTagMismatch(AccessInfo ai, uptr pc, uptr frame, ucontext_t *uc, uptr *registers_frame = nullptr) argument
[all...]
/freebsd-11-stable/contrib/file/
H A Dltmain.sh5106 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
10645 done | sort | sort -uc >/dev/null 2>&1); then
/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_calendar.c511 uint32_t uc, sf; local
515 uc = (uint32_t)cycle;
519 uv %= uc;
520 pivot += (uc & sf) + (sf ^ uv);
524 uc = ~(uint32_t)cycle + 1;
528 uv %= uc;
529 pivot -= (uc & sf) + (sf ^ uv);

Completed in 820 milliseconds

123456