HomeSort by relevance Sort by last modified time
    Searched defs:uc (Results 1 - 25 of 346) 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)
  /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);
  /external/strace/linux/powerpc64/
rt_sigframe.h 37 ucontext_t uc; member in struct:__anon35303
  /external/strace/linux/
rt_sigframe.h 37 ucontext_t uc; member in struct:__anon35304
  /external/strace/linux/x86_64/
rt_sigframe.h 38 ucontext_t uc; member in struct:__anon35317
  /external/Microsoft-GSL/tests/
byte_tests.cpp 51 const unsigned char uc = 12; variable
52 const byte b = to_byte(uc);
  /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/skqp/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/strace/linux/hppa/
rt_sigframe.h 36 ucontext_t uc; member in struct:__anon35291
  /external/strace/linux/mips/
rt_sigframe.h 36 ucontext_t uc; member in struct:__anon35299
  /external/strace/linux/tile/
rt_sigframe.h 36 ucontext_t uc; member in struct:__anon35314
  /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/libffi/testsuite/libffi.call/
return_uc.c 10 static unsigned char return_uc(unsigned char uc)
12 return uc;
22 unsigned char uc; local
25 values[0] = &uc;
31 for (uc = (unsigned char) '\x00';
32 uc < (unsigned char) '\xff'; uc++)
35 CHECK((unsigned char)rint == uc);
  /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);
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
return_uc.c 10 static unsigned char return_uc(unsigned char uc)
12 return uc;
22 unsigned char uc; local
25 values[0] = &uc;
31 for (uc = (unsigned char) '\x00';
32 uc < (unsigned char) '\xff'; uc++)
35 CHECK((unsigned char)rint == uc);
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
return_uc.c 10 static unsigned char return_uc(unsigned char uc)
12 return uc;
22 unsigned char uc; local
25 values[0] = &uc;
31 for (uc = (unsigned char) '\x00';
32 uc < (unsigned char) '\xff'; uc++)
35 CHECK((unsigned char)rint == uc);
  /external/strace/linux/s390/
rt_sigframe.h 37 ucontext_t uc; member in struct:__anon35305
  /external/strace/linux/sh64/
rt_sigframe.h 37 ucontext_t uc; member in struct:__anon35309

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 91011>>