HomeSort by relevance Sort by last modified time
    Searched defs:uc (Results 76 - 100 of 346) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/memcheck/tests/x86-solaris/
context_fpu.c 12 static ucontext_t uc; variable
21 uc = *ucp;
context_sse.c 14 static ucontext_t uc; variable
24 uc = *ucp;
42 fs = &uc.uc_mcontext.fpregs.fp_reg_set.fpchip_state;
context_gpr.c 13 static ucontext_t uc; variable
22 uc = *ucp;
80 uc.uc_mcontext.gregs[EAX], uc.uc_mcontext.gregs[EDX],
81 uc.uc_mcontext.gregs[ESI], uc.uc_mcontext.gregs[EDI]);
83 if (uc.uc_mcontext.gregs[EBX])
  /external/vogar/test/vogar/
ScriptBuilderEscapingTest.java 41 private final String uc; field in class:ScriptBuilderEscapingTest.SingleCharacterEscapeTest
45 this.uc = Character.toString(c);
47 setName("Escape '" + uc + "' as '" + qc + "'");
52 assertEquals(qc, ScriptBuilder.escape(uc));
53 assertEquals("a" + qc, ScriptBuilder.escape("a" + uc));
54 assertEquals(qc + "b", ScriptBuilder.escape(uc + "b"));
55 assertEquals("a" + qc + "b", ScriptBuilder.escape("a" + uc + "b"));
57 ScriptBuilder.escape(uc + "a" + uc + uc + uc + "b" + uc))
    [all...]
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 152 UnprocessedCatch uc = unprocessed_catches.elementAt(i); local
153 if (uc.from.compareToIgnoreCase(start) == 0) {
154 if (uc.to.compareToIgnoreCase(end) != 0)
158 + uc.from
159 + ") and different end addresses (" + uc.to
161 uc.add(exception, branch);
177 UnprocessedCatch uc = unprocessed_catches.elementAt(i); local
178 LabelTableEntry lte = labels_table.get(uc.from);
181 throw new RuntimeException("Label " + uc.from + " not defined");
184 lte = labels_table.get(uc.to)
    [all...]
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/util/
ASMifierTest$Compiler.class 
ASMifierTest.java 110 UnitCompiler uc = new UnitCompiler(p.parseCompilationUnit(), CL); local
111 return uc.compileUnit(DebuggingInformation.ALL)[0].toByteArray();
  /external/clang/test/CodeGen/
Nontemporal.cpp 5 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
char-literal.c 71 char16_t uc = u'\uF00B'; local
74 char32_t Uc = U'\uF00B';
  /external/libunwind/src/x86_64/
Gos-freebsd.c 156 x86_64_r_uc_addr (ucontext_t *uc, int reg)
163 case UNW_X86_64_R8: addr = &uc->uc_mcontext.mc_r8; break;
164 case UNW_X86_64_R9: addr = &uc->uc_mcontext.mc_r9; break;
165 case UNW_X86_64_R10: addr = &uc->uc_mcontext.mc_r10; break;
166 case UNW_X86_64_R11: addr = &uc->uc_mcontext.mc_r11; break;
167 case UNW_X86_64_R12: addr = &uc->uc_mcontext.mc_r12; break;
168 case UNW_X86_64_R13: addr = &uc->uc_mcontext.mc_r13; break;
169 case UNW_X86_64_R14: addr = &uc->uc_mcontext.mc_r14; break;
170 case UNW_X86_64_R15: addr = &uc->uc_mcontext.mc_r15; break;
171 case UNW_X86_64_RDI: addr = &uc->uc_mcontext.mc_rdi; break
191 ucontext_t *uc = (ucontext_t *)(c->sigcontext_addr + local
    [all...]
  /external/libunwind/tests/
Gtest-concurrent.c 54 unw_context_t uc; local
58 unw_getcontext (&uc);
59 unw_init_local (&c, &uc);
Gtest-init.cxx 54 unw_context_t uc; local
57 unw_getcontext (&uc);
58 unw_init_local (&cursor, &uc);
ia64-test-setjmp.c 64 ucontext_t *uc = sigcontext; local
69 &local, uc->uc_mcontext.sc_ar_bsp);
  /external/linux-kselftest/tools/testing/selftests/powerpc/math/
fpu_signal.c 47 ucontext_t *uc = context; local
48 mcontext_t *mc = &uc->uc_mcontext;
vmx_signal.c 50 ucontext_t *uc = context; local
51 mcontext_t *mc = &uc->uc_mcontext;
  /external/linux-kselftest/tools/testing/selftests/sigaltstack/
sas.c 28 static ucontext_t uc, sc; variable
71 swapcontext(&sc, &uc);
169 getcontext(&uc);
170 uc.uc_link = NULL;
171 uc.uc_stack.ss_sp = ustack;
172 uc.uc_stack.ss_size = SIGSTKSZ;
173 makecontext(&uc, switch_fn, 0);
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_draw.c 203 union util_color uc = {0}; local
243 util_format_write_4ui(pfmt, swapped.ui, 0, &uc, 0, 0, 0, 1, 1);
245 util_format_write_4i(pfmt, swapped.i, 0, &uc, 0, 0, 0, 1, 1);
247 util_pack_color(swapped.f, pfmt, &uc);
258 OUT_RING(ring, uc.ui[0]); /* RB_CLEAR_COLOR_DW0 */
259 OUT_RING(ring, uc.ui[1]); /* RB_CLEAR_COLOR_DW1 */
260 OUT_RING(ring, uc.ui[2]); /* RB_CLEAR_COLOR_DW2 */
261 OUT_RING(ring, uc.ui[3]); /* RB_CLEAR_COLOR_DW3 */
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_clear.c 38 union util_color uc; local
39 util_pack_color(rgba, format, &uc);
40 return uc.ui[0];
  /external/mesa3d/src/mesa/state_tracker/
st_atom_pixeltransfer.c 69 union util_color uc; local
76 util_pack_color(rgba, pt->format, &uc);
77 *(dest + k) = uc.ui[0];
  /libcore/ojluni/src/main/java/sun/net/www/protocol/file/
Handler.java 87 URLConnection uc; local
94 uc = ru.openConnection(p);
96 uc = ru.openConnection();
99 uc = null;
101 if (uc == null) {
105 return uc;
  /art/runtime/arch/arm/
fault_handler_arm.cc 50 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
51 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
101 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
102 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
134 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
135 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
199 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
200 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
201 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; local
  /art/test/004-SignalTest/
signaltest.cc 80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
81 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
84 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
85 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
88 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
89 uc->CTX_EIP += 3;
91 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
92 uc->CTX_EIP += 2;
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
GASMifierTest$Compiler.class 
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiWriter.java 301 char uc; local
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 != 0)
    [all...]
  /external/icu/icu4c/source/common/
ubidiwrt.cpp 456 UChar uc; local
475 uc=LRM_CHAR;
478 uc=RLM_CHAR;
480 else uc=0;
481 if(uc) {
483 *dest++=uc;
501 uc=LRM_CHAR;
504 uc=RLM_CHAR;
506 else uc=0;
507 if(uc) {
    [all...]

Completed in 581 milliseconds

1 2 34 5 6 7 8 91011>>