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

1 2 3 4 5

  /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(rint == (signed int) 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);
struct1.c 12 unsigned char uc; member in struct:__anon7587
19 ts.uc++;
54 ts1_arg.uc = '\x01';
  /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_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, 11); // CHECK: atomicrmw su
    [all...]
  /external/v8/test/cctest/
test-conversions.cc 14 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, "0x1", ALLOW_HEX))
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/
user-config.c 51 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->windowX = iniFile_getInteger(ini, KEY_WINDOW_X, DEFAULT_X)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 88 URLConnection uc;
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/
stack_changes.c 26 int init_context(mycontext *uc)
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/
loopfilter_filters.c 16 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 p1, uc p0, uc q0, uc q1
    [all...]
  /external/icu4c/tools/genctd/
genctd.cpp 283 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...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 213 URLConnection uc;
229 uc = url.openConnection();
244 ((HttpURLConnection) uc).disconnect();
258 uc.setRequestProperty("prop", "yo");
259 uc.setRequestProperty("prop", "yo2");
260 assertEquals("yo2", uc.getRequestProperty("prop"));
261 Map<String, List<String>> map = uc.getRequestProperties();
262 List<String> props = uc.getRequestProperties().get("prop");
320 uc.setAllowUserInteraction(false);
321 assertFalse("getAllowUserInteraction should have returned false", uc
    [all...]
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-ppc64-linux.c 109 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...]
sigframe-arm-linux.c 63 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);
    [all...]
  /external/bzip2/
decompress.c 108 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 != 0x31) RETURN(BZ_DATA_ERROR)
    [all...]
  /external/harfbuzz/src/
harfbuzz-hebrew.c 73 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[i]
    [all...]
harfbuzz-hangul.c 66 #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) {
82 if (uc > Hangul_SBase && uc < Hangul_SBase + Hangul_SCount)
83 return hangul_isLV(uc) ? LV : LVT;
84 if (uc < Hangul_LBase || uc > 0x11ff
95 const HB_UChar16 *uc = s + start; local
215 const HB_UChar16 *uc = item->string + item->item.pos; local
    [all...]
harfbuzz-khmer.c 194 static KhmerCharClass getKhmerCharClass(HB_UChar16 uc)
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/
JavaStringJSC.h 57 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/
pub_core_sigframe.h 50 const struct vki_ucontext *uc,
m_signals.c 251 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)->uc_mcontext.eip);
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
    [all...]
  /external/valgrind/main/none/tests/x86-linux/
sigcontext.c 12 static void handler1(int sig, siginfo_t *si, ucontext_t *uc)
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;
  /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/valgrind/main/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/main/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);
  /external/icu4c/common/
ubidiwrt.c 456 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 432 milliseconds

1 2 3 4 5