Searched refs:uc (Results 1 - 25 of 137) sorted by relevance

123456

/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrcasecmp.c35 typedef unsigned char uc; typedef
37 (uc)'\000',(uc)'\001',(uc)'\002',(uc)'\003',(uc)'\004',(uc)'\005',(uc)'\006',(uc)'\007',
38 (uc)'\01
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrcasecmp.c35 typedef unsigned char uc; typedef
37 (uc)'\000',(uc)'\001',(uc)'\002',(uc)'\003',(uc)'\004',(uc)'\005',(uc)'\006',(uc)'\007',
38 (uc)'\01
[all...]
/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/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/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_c99_recursive_init.c7 char uc; member in union:top::onion
11 { .s = "foo", .c = 'b', .u = { .uc = 'c' } },
/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...]
/freebsd-11-stable/lib/libthread_db/arch/i386/
H A Dlibpthread_md.c40 pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) argument
42 memcpy(&uc->uc_mcontext.mc_fs, &r->r_fs, 18*4);
43 uc->uc_mcontext.mc_gs = r->r_gs;
47 pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) argument
49 memcpy(&r->r_fs, &uc->uc_mcontext.mc_fs, 18*4);
50 r->r_gs = uc->uc_mcontext.mc_gs;
54 pt_fpreg_to_ucontext(const struct fpreg* r, ucontext_t *uc) argument
57 memcpy(&uc->uc_mcontext.mc_fpstate, r,
61 struct savexmm *sx = (struct savexmm *)&uc->uc_mcontext.mc_fpstate;
69 pt_ucontext_to_fpreg(const ucontext_t *uc, struc argument
83 pt_fxsave_to_ucontext(const char* r, ucontext_t *uc) argument
90 pt_ucontext_to_fxsave(const ucontext_t *uc, char *r) argument
99 ucontext_t uc; local
[all...]
/freebsd-11-stable/lib/libthread_db/arch/sparc64/
H A Dlibpthread_md.c40 pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) argument
43 memcpy(&uc->uc_mcontext, r, MIN(sizeof(uc->uc_mcontext), sizeof(*r)));
47 pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) argument
50 memcpy(r, &uc->uc_mcontext, MIN(sizeof(uc->uc_mcontext), sizeof(*r)));
54 pt_fpreg_to_ucontext(const struct fpreg* r, ucontext_t *uc) argument
56 mcontext_t *mc = &uc->uc_mcontext;
66 pt_ucontext_to_fpreg(const ucontext_t *uc, struct fpreg *r) argument
68 const mcontext_t *mc = &uc
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dmemccpy.c45 unsigned char uc = c; local
47 if ((*tp++ = *fp++) == uc)
/freebsd-11-stable/lib/libc/sys/
H A Dsetcontext.c47 setcontext(const ucontext_t *uc) argument
51 __libc_interposing[INTERPOS_setcontext])(uc));
/freebsd-11-stable/lib/libthread_db/arch/powerpc/
H A Dlibpthread_md.c37 pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) argument
39 mcontext_t *mc = &uc->uc_mcontext;
45 pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) argument
47 const mcontext_t *mc = &uc->uc_mcontext;
53 pt_fpreg_to_ucontext(const struct fpreg *r, ucontext_t *uc) argument
55 mcontext_t *mc = &uc->uc_mcontext;
62 pt_ucontext_to_fpreg(const ucontext_t *uc, struct fpreg *r) argument
64 const mcontext_t *mc = &uc->uc_mcontext;
/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/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/contrib/netbsd-tests/lib/libc/sys/
H A Dt_lwp_create.c81 ucontext_t uc; \
85 getcontext(&uc); \
86 uc.uc_flags = _UC_CPU; \
87 ARCH##_##NAME(&uc); \
89 error = _lwp_create(&uc, 0, &lid); \
92 static void ARCH##_##NAME(ucontext_t *uc) \
105 ucontext_t uc; local
112 _lwp_makecontext(&uc, lwp_main_func, NULL, NULL, stack, ssize);
114 error = _lwp_create(&uc, 0, &lid);
123 uc
[all...]
H A Dt_getcontext.c112 ucontext_t uc[DEPTH]; local
117 ATF_REQUIRE_EQ(getcontext(&uc[i]), 0);
119 uc[i].uc_stack.ss_sp = malloc(STACKSZ);
120 uc[i].uc_stack.ss_size = STACKSZ;
121 uc[i].uc_link = (i > 0) ? &uc[i - 1] : &save;
126 makecontext(&uc[i], (void *)run, 6, i,
130 makecontext(&uc[i], (void *)run, 8, i,
134 makecontext(&uc[i], (void *)run, 6, i,
137 makecontext(&uc[
[all...]
/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/gnu/usr.bin/rcs/lib/
H A Drcsfcmp.c159 register int xc, uc; local
183 Igeteof_(ufp, uc, ueof=true;)
186 if (xc != uc)
193 uc = 0; /* Keep lint happy. */
201 Igeteof_(ufp, uc, ueof=true;)
209 Igeteof_(ufp, uc, ueof=true;)
212 if (xc != uc)
226 (xc==KDELIM || xc==VDELIM) && (uc==KDELIM || uc==VDELIM) &&
234 if (xc != uc) {
[all...]
/freebsd-11-stable/lib/libthread_db/arch/aarch64/
H A Dlibpthread_md.c42 pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) argument
44 mcontext_t *mc = &uc->uc_mcontext;
54 pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) argument
56 const mcontext_t *mc = &uc->uc_mcontext;
66 pt_fpreg_to_ucontext(const struct fpreg *r, ucontext_t *uc) argument
68 mcontext_t *mc = &uc->uc_mcontext;
75 pt_ucontext_to_fpreg(const ucontext_t *uc, struct fpreg *r) argument
77 const mcontext_t *mc = &uc->uc_mcontext;
/freebsd-11-stable/contrib/libc-vis/
H A Dunvis.c204 unsigned char uc = (unsigned char)c; local
357 if (isoctal(uc)) {
373 if (isoctal(uc)) {
383 if (!isxdigit(uc))
387 if (isxdigit(uc)) {
388 *cp = xtod(uc);
400 if (isxdigit(uc)) {
401 *cp = xtod(uc) | (*cp << 4);
407 if (uc == '\n' || uc
[all...]
/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/lib/libthread_db/arch/riscv/
H A Dlibpthread_md.c45 pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) argument
49 mc = &uc->uc_mcontext;
63 pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) argument
67 mc = &uc->uc_mcontext;
81 pt_fpreg_to_ucontext(const struct fpreg *r __unused, ucontext_t *uc __unused)
88 pt_ucontext_to_fpreg(const ucontext_t *uc __unused, struct fpreg *r __unused)
/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/unbound/contrib/
H A Dunbound_cache.cmd12 set uc=%program_path%\unbound-control.exe variable
16 if exist %uc% goto start
32 type %program_path%\%fname%|%uc% load_cache
42 %uc% dump_cache>%program_path%\%fname%
51 type %program_path%\%fname%|%uc% load_cache
58 %uc% dump_cache>%program_path%\%fname%
61 type %program_path%\%fname%|%uc% load_cache
69 %uc% dump_cache>%arg2%
78 type %arg2%|%uc% load_cache
85 %uc
[all...]

Completed in 430 milliseconds

123456