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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/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...]
  /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);
promotion.c 10 unsigned char uc, unsigned short us)
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
24 unsigned char uc; local
35 values[2] = &uc;
48 for (uc = (unsigned char) 0;
49 uc <= (unsigned char) 200; uc += 20)
55 (unsigned char) uc + (unsigned short) us);
  /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);
promotion.c 10 unsigned char uc, unsigned short us)
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
24 unsigned char uc; local
35 values[2] = &uc;
48 for (uc = (unsigned char) 0;
49 uc <= (unsigned char) 200; uc += 20)
55 (unsigned char) uc + (unsigned short) us);
  /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);
promotion.c 10 unsigned char uc, unsigned short us)
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
24 unsigned char uc; local
35 values[2] = &uc;
48 for (uc = (unsigned char) 0;
49 uc <= (unsigned char) 200; uc += 20)
55 (unsigned char) uc + (unsigned short) us);
  /external/clang/test/CodeGen/
Atomics.c 6 unsigned char uc; variable
17 (void) __sync_fetch_and_add (&uc, 1); // CHECK: atomicrmw add i8
26 (void) __sync_fetch_and_sub (&uc, 1); // CHECK: atomicrmw sub i8
35 (void) __sync_fetch_and_or (&uc, 1); // CHECK: atomicrmw or i8
44 (void) __sync_fetch_and_xor (&uc, 1); // CHECK: atomicrmw xor i8
53 (void) __sync_fetch_and_nand (&uc, 1); // CHECK: atomicrmw nand i8
62 (void) __sync_fetch_and_and (&uc, 1); // CHECK: atomicrmw and i8
75 uc = __sync_fetch_and_add (&uc, 11); // CHECK: atomicrmw add
84 uc = __sync_fetch_and_sub (&uc, 11); // CHECK: atomicrmw su
    [all...]
nvptx-inlineasm-ptx.c 6 unsigned char uc; local
19 asm volatile ("mov.b8 %0, %1;" : "=c"(uc) : "c"(uc));
  /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);
  /external/strace/linux/powerpc64/
rt_sigframe.h 37 ucontext_t uc; member in struct:__anon35303
  /external/google-breakpad/src/client/linux/dump_writer_common/
ucontext_reader.h 44 static uintptr_t GetStackPointer(const struct ucontext* uc);
46 static uintptr_t GetInstructionPointer(const struct ucontext* uc);
52 static void FillCPUContext(RawContextCPU *out, const ucontext *uc,
55 static void FillCPUContext(RawContextCPU *out, const ucontext *uc,
58 static void FillCPUContext(RawContextCPU *out, const ucontext *uc);
  /external/libunwind/src/arm/
Gresume.c 41 unw_tdep_context_t *uc = c->dwarf.as_arg; local
48 regs[0] = uc->regs[4];
49 regs[1] = uc->regs[5];
50 regs[2] = uc->regs[6];
51 regs[3] = uc->regs[7];
52 regs[4] = uc->regs[8];
53 regs[5] = uc->regs[9];
54 regs[6] = uc->regs[10];
55 regs[7] = uc->regs[11]; /* FP */
56 regs[8] = uc->regs[13]; /* SP *
    [all...]
Ginit_local.c 32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc)
40 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc)
50 c->dwarf.as_arg = 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...]
  /device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/
mcontext.h 108 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP])
109 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC])
110 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_R0])
112 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc)
  /external/libunwind/src/x86/
Ginit_local.c 32 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
40 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
51 c->uc = uc;
  /external/libunwind/src/x86_64/
Ginit_local.c 34 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
42 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
53 c->uc = uc;
  /external/strace/linux/hppa/
rt_sigframe.h 36 ucontext_t uc; member in struct:__anon35291
  /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
  /tools/tradefederation/core/atest/test_runners/
atest_tf_test_runner_unittest.py 25 import unittest_constants as uc
43 METHOD2_FILTER = test_info.TestFilter(uc.FULL_CLASS_NAME, frozenset([uc.METHOD2_NAME]))
45 frozenset([uc.METHOD_NAME, uc.METHOD2_NAME]))
46 MODULE2_INFO = test_info.TestInfo(uc.MODULE2_NAME,
49 data={constants.TI_REL_CONFIG: uc.CONFIG2_FILE,
52 CLASS1_INFO = test_info.TestInfo(uc.MODULE_NAME,
55 data={constants.TI_REL_CONFIG: uc.CONFIG_FILE,
56 constants.TI_FILTER: frozenset([uc.CLASS_FILTER])}
    [all...]
  /external/libunwind/src/aarch64/
Ginit_local.c 32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc)
40 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc)
50 c->dwarf.as_arg = uc;
  /external/libunwind/src/hppa/
Ginit_local.c 32 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
40 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
50 c->dwarf.as_arg = uc;

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>