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

1 2

  /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:__anon4983
19 ts.uc++;
54 ts1_arg.uc = '\x01';
  /external/webkit/WebCore/bridge/jni/jsc/
JavaStringJSC.h 55 const jchar* uc = getUCharactersFromJStringInEnv(e, s); local
58 m_rep = UString(reinterpret_cast<const UChar*>(uc), size).rep();
60 releaseUCharactersForJStringInEnv(e, s, uc);
  /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/chromium/third_party/icu/source/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...]
dictbe.cpp 262 UChar32 uc; local
334 uc = utext_current32(text);
341 if (fEndWordSet.contains(pc) && fBeginWordSet.contains(uc)) {
344 // two characters after uc were not 0x0E4C THANTHAKHAT before
353 pc = uc;
383 && fSuffixSet.contains(uc = utext_current32(text))) {
384 if (uc == THAI_PAIYANNOI) {
390 uc = utext_current32(text); // Fetch next character
397 if (uc == THAI_MAIYAMOK) {
589 UChar32 uc = normalizer.next() local
    [all...]
  /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...]
dictbe.cpp 257 UChar32 uc; local
329 uc = utext_current32(text);
336 if (fEndWordSet.contains(pc) && fBeginWordSet.contains(uc)) {
339 // two characters after uc were not 0x0E4C THANTHAKHAT before
348 pc = uc;
378 && fSuffixSet.contains(uc = utext_current32(text))) {
379 if (uc == THAI_PAIYANNOI) {
385 uc = utext_current32(text); // Fetch next character
392 if (uc == THAI_MAIYAMOK) {
triedict.cpp 56 TernaryNode(UChar uc);
65 TernaryNode::TernaryNode(UChar uc) {
66 ch = uc;
124 UChar uc = utext_current32(text); local
127 if (uc < p->ch) {
131 else if (uc == p->ch) {
150 uc = utext_next32(text);
151 uc = utext_current32(text);
180 UChar32 uc = utext_next32(fIter); // TODO: supplemetary support? local
181 U_ASSERT(uc != U_SENTINEL)
474 UChar uc = utext_current32(text); 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/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...]
loopfilter.c 16 typedef unsigned char uc; typedef
  /external/tcpdump/
print-bootp.c 372 u_int8_t uc, subopt, suboptlen; local
426 uc = *bp++;
427 printf("%s", tok2str(dhcp_msg_values, "Unknown (%u)", uc));
434 uc = *bp++;
435 cp = tok2str(tag2str, "?Option %u", uc);
  /dalvik/tests/082-inline-execute/src/
Main.java 142 String uc = "ABCDEFG"; local
147 Assert.assertTrue(y.equals(uc));
  /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/quake/quake/src/WinQuake/
sound.h 51 unsigned char uc[1]; member in union:__anon7071::__anon7072
draw.cpp 816 unsigned uc; local
828 uc = d_8to16table[c];
833 pusdest[u] = uc;
  /external/bison/lib/
quotearg.c 154 unsigned char uc = c; local
156 (o ? o : &default_quoting_options)->quote_these_too + uc / INT_BITS;
157 int shift = uc % INT_BITS;
  /external/libffi/src/powerpc/
ffi.c 130 unsigned char **uc; member in union:__anon4971
330 gprvalue = **p_argv.uc;
444 unsigned char **uc; member in union:__anon4975
549 gprvalue = **p_argv.uc;
    [all...]
  /external/quake/quake/src/QW/client/
draw.c 927 unsigned uc; local
946 uc = d_8to16table[c];
951 pusdest[u] = uc;
  /external/qemu/
cpu-exec.c 72 struct ucontext *uc = puc; local
74 struct sigcontext *uc = puc;
86 sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL);
88 sigprocmask(SIG_SETMASK, &uc->sc_mask, NULL);
1243 struct sigcontext *uc = puc; local
1245 struct ucontext *uc = puc; local
1289 ucontext_t *uc = puc; local
1291 struct sigcontext *uc = puc; local
1293 struct ucontext *uc = puc; local
1358 struct ucontext *uc = puc; local
1382 struct ucontext *uc = puc; local
1425 struct sigcontext *uc = puc; local
1469 struct ucontext *uc = puc; local
1491 struct ucontext *uc = puc; local
1513 struct ucontext *uc = puc; local
1543 struct ucontext *uc = puc; local
1560 struct ucontext *uc = puc; local
1576 struct ucontext *uc = puc; local
    [all...]
  /external/strace/
net.c 1121 struct ucred *uc = (struct ucred *) CMSG_DATA (cmsg); local
1124 (long)uc->pid, (long)uc->uid, (long)uc->gid);
    [all...]
  /bionic/libc/regex/
regcomp.c 1220 unsigned uc = (uch)c; local
1223 if (col[uc] != 0)
    [all...]
  /libcore/luni/src/main/java/java/net/
URLClassLoader.java 267 URLConnection uc = resURL.openConnection(); local
268 uc.getInputStream().close();
275 if ((code = ((HttpURLConnection) uc).getResponseCode()) >= 200
    [all...]

Completed in 410 milliseconds

1 2