HomeSort by relevance Sort by last modified time
    Searched defs:uc (Results 51 - 75 of 97) sorted by null

1 23 4

  /external/harfbuzz/src/
harfbuzz-myanmar.c 197 const HB_UChar16 *uc = s + start; local
203 MymrCharClass charClass = getMyanmarCharClass(*uc);
208 MMDEBUG("state[%d]=%d class=%8x (uc=%4x)", pos - start, state, charClass, *uc);
215 ++uc;
264 const HB_UChar16 *uc = item->string + item->item.pos; local
290 printf(" %d: %4x", i, uc[i]);
294 HB_UChar16 chr = uc[i];
303 && uc[i+1] == Mymr_C_VIRAMA) {
304 int mc = getMyanmarCharClass(uc[i+2])
515 const HB_UChar16 *uc = text + from; local
    [all...]
harfbuzz-arabic.c 240 static ArabicGroup arabicGroup(unsigned short uc)
242 if (uc >= 0x0600 && uc < 0x750)
243 return (ArabicGroup) arabic_group[uc-0x600];
244 else if (uc == 0x200d)
246 else if (HB_GetUnicodeCharCategory(uc) == HB_Separator_Space)
488 qDebug("arabic properties(%d): uc=%x shape=%d, justification=%d", i, chars[i], properties[i].shape, properties[i].justification);
492 static Joining getNkoJoining(unsigned short uc)
494 if (uc < 0x7ca)
496 if (uc <= 0x7ea
1033 const HB_UChar16 *uc; local
    [all...]
harfbuzz-shaper.cpp 133 static void calcLineBreaks(const HB_UChar16 *uc, hb_uint32 len, HB_CharAttributes *charAttributes)
141 HB_GetGraphemeAndLineBreakClass(*uc, &grapheme, &cls);
154 HB_UChar32 code = uc[i];
161 if (HB_IsHighSurrogate(uc[i]) && i < len - 1 && HB_IsLowSurrogate(uc[i+1])) {
163 } else if (HB_IsLowSurrogate(uc[i]) && HB_IsHighSurrogate(uc[i-1])) {
164 code = HB_SurrogateToUcs4(uc[i-1], uc[i]);
202 if (uc[i-1] == 0xad) // soft hyphe
430 const HB_UChar16 *uc = item->string + item->item.pos; local
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-indic.cpp 903 static inline Form form(unsigned short uc) {
904 if (uc < 0x900 || uc > 0xdff) {
905 if (uc == 0x25cc)
907 if (uc == 0x200c || uc == 0x200d)
911 return (Form)indicForms[uc-0x900];
914 static inline Position indic_position(unsigned short uc) {
915 if (uc < 0x900 || uc > 0xdff
1243 HB_UChar16 *uc = reordered; local
1724 const HB_UChar16 *uc = s+start; 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
    [all...]
harfbuzz-myanmar.c 197 const HB_UChar16 *uc = s + start; local
203 MymrCharClass charClass = getMyanmarCharClass(*uc);
208 MMDEBUG("state[%d]=%d class=%8x (uc=%4x)", pos - start, state, charClass, *uc);
215 ++uc;
264 const HB_UChar16 *uc = item->string + item->item.pos; local
290 printf(" %d: %4x", i, uc[i]);
294 HB_UChar16 chr = uc[i];
303 && uc[i+1] == Mymr_C_VIRAMA) {
304 int mc = getMyanmarCharClass(uc[i+2])
    [all...]
harfbuzz-arabic.c 240 static ArabicGroup arabicGroup(unsigned short uc)
242 if (uc >= 0x0600 && uc < 0x750)
243 return (ArabicGroup) arabic_group[uc-0x600];
244 else if (uc == 0x200d)
246 else if (HB_GetUnicodeCharCategory(uc) == HB_Separator_Space)
488 qDebug("arabic properties(%d): uc=%x shape=%d, justification=%d", i, chars[i], properties[i].shape, properties[i].justification);
492 static Joining getNkoJoining(unsigned short uc)
494 if (uc < 0x7ca)
496 if (uc <= 0x7ea
1033 const HB_UChar16 *uc; local
    [all...]
  /external/icu4c/common/
dictbe.cpp 251 UChar32 uc; local
322 uc = utext_current32(text);
329 if (fEndWordSet.contains(pc) && fBeginWordSet.contains(uc)) {
332 // two characters after uc were not 0x0E4C THANTHAKHAT before
341 pc = uc;
371 && fSuffixSet.contains(uc = utext_current32(text))) {
372 if (uc == THAI_PAIYANNOI) {
378 uc = utext_current32(text); // Fetch next character
385 if (uc == THAI_MAIYAMOK) {
483 UChar32 uc; local
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
loopfilter_filters_dspr2.c 17 typedef unsigned char uc; typedef
    [all...]
  /external/qemu/
cpu-exec.c 72 struct ucontext *uc = puc; local
74 struct sigcontext *uc = puc;
87 sigprocmask(SIG_SETMASK, (sigset_t *)&uc->uc_sigmask, NULL);
89 sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL);
92 sigprocmask(SIG_SETMASK, &uc->sc_mask, NULL);
890 ucontext_t *uc = puc; local
892 struct sigcontext *uc = puc; local
894 struct ucontext *uc = puc; local
945 ucontext_t *uc = puc; local
947 struct sigcontext *uc = puc; local
949 struct ucontext *uc = puc; local
1029 ucontext_t *uc = puc; local
1031 struct ucontext *uc = puc; local
1056 struct ucontext *uc = puc; local
1099 struct sigcontext *uc = puc; local
1143 struct ucontext *uc = puc; local
1165 struct ucontext *uc = puc; local
1187 struct ucontext *uc = puc; local
1217 struct ucontext *uc = puc; local
1270 struct ucontext *uc = puc; local
1286 struct ucontext *uc = puc; local
    [all...]
  /external/strace/
net.c 1392 struct ucred *uc = (struct ucred *) CMSG_DATA (cmsg); local
1395 (long)uc->pid, (long)uc->uid, (long)uc->gid);
1999 struct ucred uc; local
    [all...]
signal.c 1712 ucontext_t uc; local
1731 ucontext_t uc; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
dir.c 156 unsigned char uc = *name;
158 h = (h << 4) + (isupper (uc) ? tolower (uc) : uc);
160 h = (h << 4) + uc;
155 unsigned char uc = *name; local
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 819 const ucontext_t* uc = (const ucontext_t*)sigcontext; local
822 state.reg[DWARF_EBP] = uc->uc_mcontext.gregs[REG_EBP];
823 state.reg[DWARF_ESP] = uc->uc_mcontext.gregs[REG_ESP];
824 state.reg[DWARF_EIP] = uc->uc_mcontext.gregs[REG_EIP];
  /bionic/libc/upstream-netbsd/libc/regex/
regcomp.c 1563 unsigned uc = (unsigned char)c; local
    [all...]
  /external/llvm/lib/Support/
regcomp.c 1256 unsigned uc = (uch)c; local
1259 if (col[uc] != 0)
    [all...]
  /external/valgrind/main/coregrind/
m_signals.c 256 machine context (uc) reflects the situation that a syscall had just
262 the machine state out of the uc. Of course if the program counter
269 # define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.eip)
270 # define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.esp)
271 # define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
273 VG_(mk_SysRes_x86_linux)( (uc)->uc_mcontext.eax )
274 # define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
275 { (srP)->r_pc = (ULong)((uc)->uc_mcontext.eip);
392 ucontext_t* uc = (ucontext_t*)ucV; local
398 ucontext_t* uc = (ucontext_t*)ucV; local
409 ucontext_t* uc = (ucontext_t*)ucV; local
439 ucontext_t* uc = (ucontext_t*)(ucV); local
450 ucontext_t* uc = (ucontext_t*)ucV; local
456 ucontext_t* uc = (ucontext_t*)ucV; local
465 ucontext_t* uc = (ucontext_t*)ucV; local
495 ucontext_t* uc = (ucontext_t*)ucV; local
1908 struct vki_ucontext uc; local
    [all...]
  /external/valgrind/main/none/tests/ppc32/
testVMX.c 416 unsigned char uc[4];
424 unsigned char uc[2];
2264 unsigned char uc[4]; member in union:__anon17329
3442 unsigned char uc[4]; member in union:__anon17330
3450 unsigned char uc[2]; member in union:__anon17331
    [all...]
  /libcore/luni/src/main/java/java/net/
URLClassLoader.java 203 URLConnection uc = resURL.openConnection(); local
204 uc.getInputStream().close();
211 if ((code = ((HttpURLConnection) uc).getResponseCode()) >= 200
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 1220 unsigned uc = (uch)c; local
1223 if (col[uc] != 0)
    [all...]
  /external/icu4c/test/cintltst/
cucdtst.c 1690 UChar uc; local
    [all...]
cloctst.c 592 UChar uc; local
599 uc=utext[i];
600 if(len<0 && uc==0) {
603 if(uc<0x20) {
604 for(j=0;j<ESCAPE_MAP_LENGTH && uc!=ESCAPE_MAP[j].sourceVal;j++) {
614 } else if(uc<0x7f) {
615 u_austrncpy(resultChars + resultLen, &uc, 1);
627 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff];
628 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff];
629 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff]
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 1960 Collection uc = Collections.unmodifiableCollection(al); local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf3.c 313 UChar uc; local
315 do { uc = get_UChar(c); } while (uc != 0);
556 UChar uc; local
557 uc = *p++; /*biasMe*/
558 if (uc == 0)
560 vg_assert(uc == 1);
563 uc = *p++;
564 if (uc == 1)
566 vg_assert(uc == 0)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java 2112 Collection uc = Collections.unmodifiableCollection(al); local
    [all...]

Completed in 940 milliseconds

1 23 4