HomeSort by relevance Sort by last modified time
    Searched defs:uc (Results 1 - 25 of 258) sorted by null

1 2 3 4 5 6 7 8 91011

  /bionic/libc/upstream-netbsd/lib/libc/string/
memccpy.c 54 unsigned char uc = c; local
56 if ((*tp++ = *fp++) == uc)
  /external/libunwind/src/unwind/
Backtrace.c 33 unw_context_t uc; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
Resume.c 32 unw_context_t uc; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
ForcedUnwind.c 34 unw_context_t uc; local
46 if (_Unwind_InitContext (&context, &uc) < 0)
Resume_or_Rethrow.c 32 unw_context_t uc; local
42 if (_Unwind_InitContext (&context, &uc) < 0)
RaiseException.c 37 unw_context_t uc; local
46 if (_Unwind_InitContext (&context, &uc) < 0)
104 if (unw_init_local (&context.cursor, &uc) < 0)
  /external/libunwind/src/x86_64/
Gstash_frame.c 85 const unw_word_t uc = c->sigcontext_addr; local
87 assert (DWARF_GET_LOC(d->loc[RIP]) - uc == UC_MCONTEXT_GREGS_RIP);
88 assert (DWARF_GET_LOC(d->loc[RBP]) - uc == UC_MCONTEXT_GREGS_RBP);
89 assert (DWARF_GET_LOC(d->loc[RSP]) - uc == UC_MCONTEXT_GREGS_RSP);
  /external/libunwind/tests/
test-static-link-gen.c 61 unw_context_t uc; local
64 unw_getcontext (&uc);
65 unw_init_local (&c, &uc);
66 unw_init_remote (&c, unw_local_addr_space, &uc);
test-static-link-loc.c 76 unw_context_t uc; local
82 unw_getcontext (&uc);
83 unw_init_local (&c, &uc);
84 unw_init_remote (&c, unw_local_addr_space, &uc);
Gia64-test-readonly.c 47 unw_context_t uc; local
54 unw_getcontext (&uc);
56 if ((ret = unw_init_local (&c, &uc)) < 0)
ia64-test-sig.c 43 unw_context_t uc; local
48 unw_getcontext (&uc);
49 if (unw_init_local (&cursor, &uc) < 0)
  /external/skia/tools/skiaserve/urlhandlers/
PostHandler.cpp 22 struct UploadContext* uc = reinterpret_cast<UploadContext*>(cls); local
25 uc->fStream.write(data, size);
38 UploadContext* uc = request->fUploadContext; local
41 if (!uc) {
43 uc = new UploadContext;
44 uc->connection = connection;
45 uc->fPostProcessor = MHD_create_post_processor(connection, kBufferSize,
46 &process_upload_data, uc);
47 SkASSERT(uc->fPostProcessor);
49 request->fUploadContext = uc;
    [all...]
  /external/valgrind/none/tests/solaris/
context_link.c 1 /* Test of correct simulation for uc->uc_link. */
14 ucontext_t uc; local
19 getcontext(&uc);
27 uc.uc_stack.ss_sp = stack;
28 uc.uc_stack.ss_size = sizeof(stack);
31 makecontext(&uc, print_value, 1, 42);
32 setcontext(&uc);
context_link2.c 1 /* Test of correct simulation for uc->uc_link in a signal handler. */
19 ucontext_t uc; local
23 if (getcontext(&uc)) {
27 assert(!uc.uc_link);
43 getcontext(&uc);
44 assert(!uc.uc_link);
  /external/libunwind/src/mi/
backtrace.c 36 slow_backtrace (void **buffer, int size, unw_context_t *uc)
42 if (unlikely (unw_init_local (&cursor, uc) < 0))
61 unw_context_t uc; local
64 (void) tdep_getcontext_trace (&uc);
66 if (unlikely (unw_init_local (&cursor, &uc) < 0))
71 (void) unw_getcontext (&uc);
72 return slow_backtrace (buffer, size, &uc);
  /toolchain/binutils/binutils-2.25/libiberty/
strcasecmp.c 35 typedef unsigned char uc; typedef
37 (uc)'\000',(uc)'\001',(uc)'\002',(uc)'\003',(uc)'\004',(uc)'\005',(uc)'\006',(uc)'\007',
38 (uc)'\010',(uc)'\011',(uc)'\012',(uc)'\013',(uc)'\014',(uc)'\015',(uc)'\016',(uc)'\017'
    [all...]
  /art/runtime/arch/mips/
fault_handler_mips.cc 45 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
46 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
81 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
109 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
110 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
111 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; local
  /art/runtime/arch/mips64/
fault_handler_mips64.cc 45 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
46 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
81 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
109 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
110 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
111 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; local
  /external/libunwind/src/setjmp/
longjmp.c 61 unw_context_t uc; local
66 if (unw_getcontext (&uc) < 0 || unw_init_local (&c, &uc) < 0)
siglongjmp.c 62 unw_context_t uc; local
67 if (unw_getcontext (&uc) < 0 || unw_init_local (&c, &uc) < 0)
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_clear.c 49 union util_color uc = {0}; local
64 util_pack_color(color->f, PIPE_FORMAT_B8G8R8A8_UNORM, &uc);
89 ret = SVGA3D_ClearRect(svga->swc, flags, uc.ui, depth, stencil,
  /external/valgrind/memcheck/tests/amd64-linux/
int3-amd64.c 13 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);
  /external/valgrind/memcheck/tests/amd64-solaris/
context_rflags.c 17 static ucontext_t uc; variable
22 uc = *ucp;
59 OBIT(uc.uc_mcontext.gregs[REG_RFL]),
60 SBIT(uc.uc_mcontext.gregs[REG_RFL]));
context_rflags2.c 24 static ucontext_t uc; variable
31 uc = *ucp;
80 if (!OBIT(uc.uc_mcontext.gregs[REG_RFL]) ||
81 !SBIT(uc.uc_mcontext.gregs[REG_RFL]))
  /external/valgrind/memcheck/tests/x86-linux/
int3-x86.c 13 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 2191 milliseconds

1 2 3 4 5 6 7 8 91011