Searched refs:uc (Results 1 - 25 of 97) sorted by relevance

1234

/external/libffi/testsuite/libffi.call/
H A Dreturn_uc.c10 static unsigned char return_uc(unsigned char uc) argument
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(rint == (signed int) uc);
H A Dpromotion.c10 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);
9 promotion(signed char sc, signed short ss, unsigned char uc, unsigned short us) argument
H A Dstruct1.c12 unsigned char uc; member in struct:__anon6109
19 ts.uc++;
54 ts1_arg.uc = '\x01';
/external/clang/test/CodeGen/
H A DAtomics.c6 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_and (&uc, 1); // CHECK: atomicrmw and i8
66 uc = __sync_fetch_and_add (&uc, 11); // CHECK: atomicrmw add
75 uc = __sync_fetch_and_sub (&uc, 1
[all...]
/external/v8/test/cctest/
H A Dtest-conversions.cc14 UnicodeCache uc; local
15 CHECK_EQ(0.0, StringToDouble(&uc, "0x0", ALLOW_HEX | ALLOW_OCTALS));
16 CHECK_EQ(0.0, StringToDouble(&uc, "0X0", ALLOW_HEX | ALLOW_OCTALS));
17 CHECK_EQ(1.0, StringToDouble(&uc, "0x1", ALLOW_HEX | ALLOW_OCTALS));
18 CHECK_EQ(16.0, StringToDouble(&uc, "0x10", ALLOW_HEX | ALLOW_OCTALS));
19 CHECK_EQ(255.0, StringToDouble(&uc, "0xff", ALLOW_HEX | ALLOW_OCTALS));
20 CHECK_EQ(175.0, StringToDouble(&uc, "0xAF", ALLOW_HEX | ALLOW_OCTALS));
22 CHECK_EQ(0.0, StringToDouble(&uc, "0x0", ALLOW_HEX));
23 CHECK_EQ(0.0, StringToDouble(&uc, "0X0", ALLOW_HEX));
24 CHECK_EQ(1.0, StringToDouble(&uc, "
32 UnicodeCache uc; local
54 UnicodeCache uc; local
88 UnicodeCache uc; local
100 UnicodeCache uc; local
109 UnicodeCache uc; local
130 UnicodeCache uc; local
158 UnicodeCache uc; local
183 UnicodeCache uc; local
210 UnicodeCache uc; local
218 UnicodeCache uc; local
[all...]
/external/qemu/android/
H A Duser-config.c51 AUserConfig* uc; local
58 ANEW0(uc);
82 uc->iniPath = ASTRDUP(temp);
83 DD("looking user-config in: %s", uc->iniPath);
87 parentPath = path_parent(uc->iniPath, 1);
90 uc->iniPath);
107 if (path_exists(uc->iniPath)) {
109 ini = iniFile_newFromFile(uc->iniPath);
112 uc->iniPath);
117 uc
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLConnectionTest.java88 URLConnection uc; field in class:URLConnectionTest
92 uc = url.openConnection();
96 ((HttpURLConnection) uc).disconnect();
157 uc.setRequestProperty("prop", "yo");
158 uc.setRequestProperty("prop", "yo2");
159 assertEquals("yo2", uc.getRequestProperty("prop"));
160 Map<String, List<String>> map = uc.getRequestProperties();
161 List<String> props = uc.getRequestProperties().get("prop");
200 uc.setAllowUserInteraction(false);
201 assertFalse("getAllowUserInteraction should have returned false", uc
[all...]
/external/valgrind/main/memcheck/tests/linux/
H A Dstack_changes.c26 int init_context(mycontext *uc) argument
31 if (getcontext(uc) == -1) {
47 uc->uc_link = NULL;
48 uc->uc_stack.ss_sp = stack;
49 uc->uc_stack.ss_size = STACK_SIZE;
50 uc->uc_stack.ss_flags = 0;
/external/libvpx/vp8/common/
H A Dloopfilter_filters.c16 typedef unsigned char uc; typedef
28 uc p3, uc p2, uc p1, uc p0, uc q0, uc q1, uc q2, uc q3)
43 static __inline signed char vp8_hevmask(signed char thresh, uc p
[all...]
/external/icu4c/tools/genctd/
H A Dgenctd.cpp283 UChar uc = *current++;
292 while (uc && !breaks.contains(uc)) {
293 uc = *current++;
296 while (uc && breaks.contains(uc)) {
297 uc = *current++;
300 while (uc && (breaks.contains(uc) || u_isspace(uc)));
[all...]
/external/v8/test/mjsunit/
H A Dregexp-multiline-stack-trace.js86 function check_case(lc, uc) {
88 assertFalse(a.test(uc));
90 assertTrue(a.test(uc));
92 var A = new RegExp("^" + uc + "$");
94 A = new RegExp("^" + uc + "$", "i");
98 assertFalse(a.test(uc));
100 assertTrue(a.test(uc));
102 A = new RegExp("^[" + uc + "]$");
104 A = new RegExp("^[" + uc + "]$", "i");
H A Dregexp-multiline.js82 function check_case(lc, uc) {
84 assertFalse(a.test(uc));
86 assertTrue(a.test(uc));
88 var A = new RegExp("^" + uc + "$");
90 A = new RegExp("^" + uc + "$", "i");
94 assertFalse(a.test(uc));
96 assertTrue(a.test(uc));
98 A = new RegExp("^[" + uc + "]$");
100 A = new RegExp("^[" + uc + "]$", "i");
/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-ppc64-linux.c109 struct vki_ucontext uc; member in struct:rt_sigframe
215 frame->puc = &frame->uc;
217 frame->uc.uc_flags = 0;
218 frame->uc.uc_link = 0;
236 frame->uc.uc_flags = 0;
237 frame->uc.uc_link = 0;
238 frame->uc.uc_stack = tst->altstack;
239 frame->uc.uc_sigmask = tst->sig_mask;
241 (Addr)(&frame->uc), sizeof(frame->uc) );
[all...]
H A Dsigframe-arm-linux.c63 struct vki_ucontext uc; member in struct:sigframe
114 struct vki_ucontext *uc){
117 struct vki_sigcontext *sc = &uc->uc_mcontext;
119 VG_(memset)(uc, 0, sizeof(*uc));
121 uc->uc_flags = 0;
122 uc->uc_link = 0;
123 uc->uc_sigmask = *set;
124 uc->uc_stack = tst->altstack;
175 synth_ucontext(tst->tid, siginfo, trapno, err, mask, &frame->uc);
112 synth_ucontext( ThreadId tid, const vki_siginfo_t *si, UWord trapno, UWord err, const vki_sigset_t *set, struct vki_ucontext *uc) argument
[all...]
/external/bzip2/
H A Ddecompress.c108 UChar uc; local
197 GET_UCHAR(BZ_X_MAGIC_1, uc);
198 if (uc != BZ_HDR_B) RETURN(BZ_DATA_ERROR_MAGIC);
200 GET_UCHAR(BZ_X_MAGIC_2, uc);
201 if (uc != BZ_HDR_Z) RETURN(BZ_DATA_ERROR_MAGIC);
203 GET_UCHAR(BZ_X_MAGIC_3, uc)
204 if (uc != BZ_HDR_h) RETURN(BZ_DATA_ERROR_MAGIC);
222 GET_UCHAR(BZ_X_BLKHDR_1, uc);
224 if (uc == 0x17) goto endhdr_2;
225 if (uc !
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-hebrew.c73 const HB_UChar16 *uc = shaper_item->string + shaper_item->item.pos; local
83 *shapedChars = *uc;
90 if (uc[i] == Dagesh) {
104 } else if (uc[i] == ShinDot) {
111 } else if (uc[i] == SinDot) {
118 } else if (uc[i] == Patah) {
121 } else if (uc[i] == Qamats) {
124 } else if (uc[i] == Holam) {
127 } else if (uc[i] == Rafe) {
153 shapedChars[slen] = uc[
[all...]
H A Dharfbuzz-hangul.c66 #define hangul_isPrecomposed(uc) \
67 (uc >= Hangul_SBase && uc < Hangul_SBase + Hangul_SCount)
69 #define hangul_isLV(uc) \
70 ((uc - Hangul_SBase) % Hangul_TCount == 0)
81 static HangulType hangul_type(unsigned short uc) { argument
82 if (uc > Hangul_SBase && uc < Hangul_SBase + Hangul_SCount)
83 return hangul_isLV(uc) ? LV : LVT;
84 if (uc < Hangul_LBas
95 const HB_UChar16 *uc = s + start; local
215 const HB_UChar16 *uc = item->string + item->item.pos; local
[all...]
H A Dharfbuzz-khmer.c194 static KhmerCharClass getKhmerCharClass(HB_UChar16 uc) argument
196 if (uc == C_SIGN_ZWJ) {
200 if (uc == C_SIGN_ZWNJ) {
204 if (uc < KhmerFirstChar || uc > KhmerLastChar) {
208 return khmerCharClasses[uc - KhmerFirstChar];
314 const HB_UChar16 *uc = s + start; local
320 KhmerCharClass charClass = getKhmerCharClass(*uc);
326 KHDEBUG("state[%d]=%d class=%8lx (uc=%4x)", pos - start, state,
327 charClass, *uc );
445 HB_UChar16 uc = item->string[i]; local
647 const HB_UChar16 *uc = text + from; local
[all...]
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaStringJSC.h57 const jchar* uc = getUCharactersFromJStringInEnv(e, s); local
60 m_impl = UString(reinterpret_cast<const UChar*>(uc), size).impl();
62 releaseUCharactersForJStringInEnv(e, s, uc);
/external/valgrind/main/coregrind/
H A Dpub_core_sigframe.h50 const struct vki_ucontext *uc,
H A Dm_signals.c251 machine context (uc) reflects the situation that a syscall had just
257 the machine state out of the uc. Of course if the program counter
264 # define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.eip)
265 # define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.esp)
266 # define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
268 VG_(mk_SysRes_x86_linux)( (uc)->uc_mcontext.eax )
269 # define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
270 { (srP)->r_pc = (ULong)((uc)
390 ucontext_t* uc = (ucontext_t*)ucV; local
396 ucontext_t* uc = (ucontext_t*)ucV; local
402 ucontext_t* uc = (ucontext_t*)ucV; local
408 ucontext_t* uc = (ucontext_t*)ucV; local
423 ucontext_t* uc = (ucontext_t*)ucV; local
429 ucontext_t* uc = (ucontext_t*)ucV; local
435 ucontext_t* uc = (ucontext_t*)ucV; local
441 ucontext_t* uc = (ucontext_t*)ucV; local
453 ucontext_t* uc = (ucontext_t*)ucV; local
459 ucontext_t* uc = (ucontext_t*)ucV; local
470 ucontext_t* uc = (ucontext_t*)ucV; local
500 ucontext_t* uc = (ucontext_t*)(ucV); local
1838 struct vki_ucontext uc; local
2401 sigvgkill_handler(int signo, vki_siginfo_t *si, struct vki_ucontext *uc) argument
[all...]
/external/valgrind/main/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/valgrind/main/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);
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dint3-x86.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);
/external/icu4c/common/
H A Dubidiwrt.c456 UChar uc; local
475 uc=LRM_CHAR;
478 uc=RLM_CHAR;
480 else uc=0;
481 if(uc) {
483 *dest++=uc;
499 uc=LRM_CHAR;
502 uc=RLM_CHAR;
504 else uc=0;
505 if(uc) {
[all...]

Completed in 372 milliseconds

1234