Searched refs:uc (Results 76 - 100 of 388) sorted by relevance

1234567891011>>

/external/strace/
H A Duserfaultfd.c112 struct uffdio_copy uc; local
116 if (umove_or_printaddr(tcp, arg, &uc))
118 PRINT_FIELD_X("{", uc, dst);
119 PRINT_FIELD_X(", ", uc, src);
120 PRINT_FIELD_X(", ", uc, len);
121 PRINT_FIELD_FLAGS(", ", uc, mode, uffd_copy_flags,
127 if (!syserror(tcp) && !umove(tcp, arg, &uc))
128 PRINT_FIELD_X(", ", uc, copy);
H A Drt_sigreturn.c38 offsetof(struct_rt_sigframe, uc.uc_sigmask)
H A Dmpers_test.sh51 unsigned char uc;
76 unsigned char uc;
98 unsigned char uc;
123 unsigned char uc;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidiWriter.java301 char uc;
318 uc = LRM_CHAR;
320 uc = RLM_CHAR;
322 uc = 0;
324 if (uc != 0) {
325 dest.append(uc);
336 uc = LRM_CHAR;
338 uc = RLM_CHAR;
340 uc = 0;
342 if (uc !
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiWriter.java300 char uc;
317 uc = LRM_CHAR;
319 uc = RLM_CHAR;
321 uc = 0;
323 if (uc != 0) {
324 dest.append(uc);
335 uc = LRM_CHAR;
337 uc = RLM_CHAR;
339 uc = 0;
341 if (uc !
[all...]
/external/libunwind/src/x86/
H A DGos-freebsd.c304 x86_r_uc_addr (ucontext_t *uc, int reg) argument
310 case UNW_X86_GS: addr = &uc->uc_mcontext.mc_gs; break;
311 case UNW_X86_FS: addr = &uc->uc_mcontext.mc_fs; break;
312 case UNW_X86_ES: addr = &uc->uc_mcontext.mc_es; break;
313 case UNW_X86_DS: addr = &uc->uc_mcontext.mc_ds; break;
314 case UNW_X86_EAX: addr = &uc->uc_mcontext.mc_eax; break;
315 case UNW_X86_EBX: addr = &uc->uc_mcontext.mc_ebx; break;
316 case UNW_X86_ECX: addr = &uc->uc_mcontext.mc_ecx; break;
317 case UNW_X86_EDX: addr = &uc->uc_mcontext.mc_edx; break;
318 case UNW_X86_ESI: addr = &uc
338 ucontext_t *uc = c->uc; local
[all...]
H A DGos-linux.c256 x86_r_uc_addr (ucontext_t *uc, int reg) argument
262 case UNW_X86_GS: addr = &uc->uc_mcontext.gregs[REG_GS]; break;
263 case UNW_X86_FS: addr = &uc->uc_mcontext.gregs[REG_FS]; break;
264 case UNW_X86_ES: addr = &uc->uc_mcontext.gregs[REG_ES]; break;
265 case UNW_X86_DS: addr = &uc->uc_mcontext.gregs[REG_DS]; break;
266 case UNW_X86_EAX: addr = &uc->uc_mcontext.gregs[REG_EAX]; break;
267 case UNW_X86_EBX: addr = &uc->uc_mcontext.gregs[REG_EBX]; break;
268 case UNW_X86_ECX: addr = &uc->uc_mcontext.gregs[REG_ECX]; break;
269 case UNW_X86_EDX: addr = &uc->uc_mcontext.gregs[REG_EDX]; break;
270 case UNW_X86_ESI: addr = &uc
291 ucontext_t *uc = c->uc; local
[all...]
/external/clang/test/CodeGen/
H A DNontemporal.cpp5 unsigned char uc; variable
22 __builtin_nontemporal_store(1, &uc); // CHECK: store i8{{.*}}align 1, !nontemporal
36 uc = __builtin_nontemporal_load(&sc); // CHECK: load i8{{.*}}align 1, !nontemporal
37 sc = __builtin_nontemporal_load(&uc); // CHECK: load i8{{.*}}align 1, !nontemporal
/external/valgrind/memcheck/tests/amd64-solaris/
H A Dcontext_rflags.c18 static ucontext_t uc; variable
23 uc = *((ucontext_t *) arg);
60 OBIT(uc.uc_mcontext.gregs[REG_RFL]),
61 SBIT(uc.uc_mcontext.gregs[REG_RFL]));
H A Dcontext_rflags2.c25 static ucontext_t uc; variable
34 uc = *ucp;
83 if (!OBIT(uc.uc_mcontext.gregs[REG_RFL]) ||
84 !SBIT(uc.uc_mcontext.gregs[REG_RFL]))
/external/valgrind/memcheck/tests/x86-solaris/
H A Dcontext_eflags.c16 static ucontext_t uc; variable
21 uc = *((ucontext_t *) arg);
65 OBIT(uc.uc_mcontext.gregs[EFL]), SBIT(uc.uc_mcontext.gregs[EFL]));
H A Dcontext_eflags2.c16 static ucontext_t uc; variable
25 uc = *ucp;
74 if (!OBIT(uc.uc_mcontext.gregs[EFL]) || !SBIT(uc.uc_mcontext.gregs[EFL]))
/external/valgrind/none/tests/x86-darwin/
H A Dbug341419.c98 ucontext_t *uc = (ucontext_t *)vuc; local
112 ASSERT_NE(uc, NULL);
113 ASSERT_NE(uc->uc_mcontext, NULL);
127 ASSERT_EQ(uc->uc_mcontext->__ss.__eax, 0xfeed0101);
128 ASSERT_EQ(uc->uc_mcontext->__ss.__ebx, 0xfeed0202);
129 ASSERT_EQ(uc->uc_mcontext->__ss.__ecx, 0xfeed0303);
130 ASSERT_EQ(uc->uc_mcontext->__ss.__edx, 0xfeed0404);
131 ASSERT_EQ(uc->uc_mcontext->__ss.__edi, 0xfeed0505);
132 ASSERT_EQ(uc->uc_mcontext->__ss.__esi, 0xfeed0606);
136 ASSERT_GTE(uc
[all...]
/external/valgrind/none/tests/x86-linux/
H A Dsigcontext.c12 static void handler1(int sig, siginfo_t *si, ucontext_t *uc) argument
16 if (uc->uc_mcontext.gregs[REG_EAX] != 0)
17 printf("FAILED: handler2 expected eax == 0, not %d\n", uc->uc_mcontext.gregs[REG_EAX]);
18 uc->uc_mcontext.gregs[REG_EAX] = VAL1;
/external/libunwind/src/ppc32/
H A DGinit.c46 uc_addr (ucontext_t *uc, int reg) argument
51 addr = &uc->uc_mcontext.uc_regs->gregs[reg - UNW_PPC32_R0];
56 addr = &uc->uc_mcontext.uc_regs->fpregs.fpregs[reg - UNW_PPC32_F0];
79 addr = &uc->uc_mcontext.uc_regs->gregs[gregs_idx];
87 tdep_uc_addr (ucontext_t *uc, int reg) argument
89 return uc_addr (uc, reg);
161 ucontext_t *uc = arg; local
167 addr = uc_addr (uc, reg);
192 ucontext_t *uc = arg; local
198 addr = uc_addr (uc, re
[all...]
/external/libunwind/tests/
H A DGperf-simple.c62 unw_context_t uc; local
65 unw_getcontext (&uc);
66 if (unw_init_local (&cursor, &uc) < 0)
162 unw_context_t uc; member in struct:__anon12484
165 uc[N]; local
177 uc[i].padding[511] = i; /* warm up the TLB */
180 unw_getcontext (&uc[i].uc);
192 uc[i].padding[511] = i; /* warm up the TLB */
195 unw_init_local (&cursor[i].c, &uc[
[all...]
/external/libunwind/src/hppa/
H A DGinit.c44 uc_addr (ucontext_t *uc, int reg) argument
49 addr = &uc->uc_mcontext.sc_gr[reg - UNW_HPPA_GR];
51 addr = &uc->uc_mcontext.sc_fr[reg - UNW_HPPA_FR];
60 _Uhppa_uc_addr (ucontext_t *uc, int reg) argument
62 return uc_addr (uc, reg);
138 ucontext_t *uc = arg; local
143 addr = uc_addr (uc, reg);
168 ucontext_t *uc = arg; local
174 addr = uc_addr (uc, reg);
/external/libunwind/src/mips/
H A DGinit.c45 uc_addr (ucontext_t *uc, int reg) argument
48 return &uc->uc_mcontext.gregs[reg - UNW_MIPS_R0];
50 return &uc->uc_mcontext.pc;
58 tdep_uc_addr (ucontext_t *uc, int reg) argument
60 char *addr = uc_addr (uc, reg);
144 ucontext_t *uc = arg; local
150 if (!(addr = uc_addr (uc, reg)))
174 ucontext_t *uc = arg; local
180 if (!(addr = uc_addr (uc, reg)))
/external/libunwind_llvm/src/
H A DUnwindLevel1.c36 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { argument
37 unw_init_local(cursor, uc);
129 unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { argument
130 unw_init_local(cursor, uc);
238 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor, argument
241 unw_init_local(cursor, uc);
345 unw_context_t uc; local
347 unw_getcontext(&uc);
355 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, &cursor, exception_object);
360 return unwind_phase2(&uc,
379 unw_context_t uc; local
404 unw_context_t uc; local
[all...]
/external/libunwind/include/
H A Dlibunwind-sh.h89 #define unw_tdep_getcontext(uc) (getcontext (uc), 0)
/external/libunwind/src/aarch64/
H A DGinit.c44 uc_addr (ucontext_t *uc, int reg) argument
47 return &uc->uc_mcontext.regs[reg];
55 tdep_uc_addr (ucontext_t *uc, int reg) argument
57 return uc_addr (uc, reg);
133 ucontext_t *uc = arg; local
138 if (!(addr = uc_addr (uc, reg)))
162 ucontext_t *uc = arg; local
168 if (!(addr = uc_addr (uc, reg)))
/external/libunwind/src/arm/
H A DGinit.c42 uc_addr (unw_tdep_context_t *uc, int reg) argument
45 return &uc->regs[reg - UNW_ARM_R0];
53 tdep_uc_addr (unw_tdep_context_t *uc, int reg) argument
55 return uc_addr (uc, reg);
125 unw_tdep_context_t *uc = arg; local
131 if (!(addr = uc_addr (uc, reg)))
155 unw_tdep_context_t *uc = arg; local
161 if (!(addr = uc_addr (uc, reg)))
/external/libunwind/src/sh/
H A DGinit.c43 uc_addr (ucontext_t *uc, int reg) argument
46 return &uc->uc_mcontext.gregs[reg];
54 tdep_uc_addr (ucontext_t *uc, int reg) argument
56 return uc_addr (uc, reg);
132 ucontext_t *uc = arg; local
137 if (!(addr = uc_addr (uc, reg)))
161 ucontext_t *uc = arg; local
167 if (!(addr = uc_addr (uc, reg)))
/external/linux-kselftest/tools/testing/selftests/powerpc/tm/
H A Dtm-signal-msr-resv.c33 void signal_usr1(int signum, siginfo_t *info, void *uc) argument
35 ucontext_t *ucp = uc;
/external/valgrind/memcheck/tests/amd64-linux/
H A Dint3-amd64.c13 ucontext_t *uc = (ucontext_t *)uc_arg; local
14 /* Note that uc->uc_mcontext is an embedded struct, not a pointer */
15 mcontext_t *mc = &(uc->uc_mcontext);

Completed in 559 milliseconds

1234567891011>>