Searched refs:ch (Results 26 - 50 of 1466) sorted by relevance

1234567891011>>

/external/aac/libAACenc/src/
H A Dpsy_main.cpp250 int i, ch, n, chInc = 0, resetChannels = 3; local
262 for (ch=0; ch<cm->elInfo[i].nChannelsInEl; ch++) {
264 hPsy->psyElement[i]->psyStatic[ch] = hPsy->pStaticChannels[chInc];
266 FDKaacEnc_psyInitStates(hPsy, hPsy->psyElement[i]->psyStatic[ch], audioObjectType);
268 hPsy->psyElement[i]->psyStatic[ch]->isLFE = 0;
271 hPsy->psyElement[i]->psyStatic[ch] = hPsy->pStaticChannels[nMaxChannels-1];
272 hPsy->psyElement[i]->psyStatic[ch]->isLFE = 1;
281 for (ch
313 int i, ch; local
455 INT ch; /* counts through channels */ local
[all...]
/external/syslinux/com32/lib/
H A Dstrntoumax.c11 static inline int digitval(int ch) argument
13 if (ch >= '0' && ch <= '9') {
14 return ch - '0';
15 } else if (ch >= 'A' && ch <= 'Z') {
16 return ch - 'A' + 10;
17 } else if (ch >= 'a' && ch <= 'z') {
18 return ch
[all...]
H A Dmemccpy.c14 char ch; local
17 *q++ = ch = *p++;
18 if (ch == (char)c)
H A Dstrcasecmp.c12 unsigned char ch; local
18 d = toupper(ch = *c1++) - toupper(*c2++);
19 if (d || !ch)
H A Dstrlcat.c13 char ch; local
20 while ((ch = *p++)) {
22 *q++ = ch;
H A Dstrlcpy.c13 char ch; local
15 while ((ch = *p++)) {
17 *q++ = ch;
H A Dstrncasecmp.c12 unsigned char ch; local
18 d = toupper(ch = *c1++) - toupper(*c2++);
19 if (d || !ch)
/external/syslinux/dos/
H A Dstrntoumax.c11 static inline int digitval(int ch) argument
13 if (ch >= '0' && ch <= '9') {
14 return ch - '0';
15 } else if (ch >= 'A' && ch <= 'Z') {
16 return ch - 'A' + 10;
17 } else if (ch >= 'a' && ch <= 'z') {
18 return ch
[all...]
/external/guava/guava-tests/test/com/google/common/xml/
H A DXmlEscapersTest.java76 for (char ch = 0; ch < 0x20; ch++) {
77 if (ch == '\t' || ch == '\n' || ch == '\r') {
80 assertEscaping(xmlEscaper, "&#x" + Integer.toHexString(ch).toUpperCase() + ";", ch);
82 assertUnescaped(xmlEscaper, ch);
86 assertEscaping(xmlEscaper, "\uFFFD", ch);
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
H A DConstant.java49 char ch = content.charAt(i);
50 if (ch < 128)
51 contains[ch] = true;
53 sb.append(ch);
61 public boolean has(char ch) { argument
62 return (ch < 128) ? contains[ch] : noASCII && content.indexOf(ch, 0) != -1;
65 public boolean hasNo(char ch) { argument
66 return !has(ch);
69 has(char ch, String additional) argument
73 hasNo(char ch, String additional) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DFixASCIIControlsReader.java109 * @param ch a char
112 private char processChar(char ch) argument
117 if (ch == '&')
121 return ch;
124 if (ch == '#')
132 return ch;
135 if (ch == 'x')
141 else if ('0' <= ch && ch <= '9')
143 control = Character.digit(ch, 1
[all...]
/external/unicode/
H A DConvertUTF.c68 UTF32 ch; local
72 ch = *source++;
73 if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */
75 if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) {
84 *target++ = (UTF16)ch; /* normal case */
86 } else if (ch > UNI_MAX_LEGAL_UTF32) {
98 ch -= halfBase;
99 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
100 *target++ = (UTF16)((ch
116 UTF32 ch, ch2; local
221 UTF32 ch; local
353 UTF32 ch = 0; local
426 UTF32 ch; local
479 UTF32 ch = 0; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DUTF16Util.java31 int ch = s.charAt(i);
32 if (0xd800 <= ch && ch <= 0xdbff && ++i < s.length()) {
35 ch = (ch << 10) + ch2 - suppOffset;
38 return ch;
49 int ch = s.charAt(--i);
50 if (0xdc00 <= ch && ch <= 0xdfff && --i >= 0) {
53 ch
111 appendCodePoint(StringBuffer buffer, int ch) argument
127 insertCodePoint(StringBuffer buffer, int i, int ch) argument
143 setCodePointAt(StringBuffer buffer, int i, int ch) argument
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DUTF16Util.java30 int ch = s.charAt(i);
31 if (0xd800 <= ch && ch <= 0xdbff && ++i < s.length()) {
34 ch = (ch << 10) + ch2 - suppOffset;
37 return ch;
48 int ch = s.charAt(--i);
49 if (0xdc00 <= ch && ch <= 0xdfff && --i >= 0) {
52 ch
110 appendCodePoint(StringBuffer buffer, int ch) argument
126 insertCodePoint(StringBuffer buffer, int i, int ch) argument
142 setCodePointAt(StringBuffer buffer, int i, int ch) argument
[all...]
/external/icu/icu4c/source/common/
H A Dustrtrns.cpp48 UChar32 ch; local
77 while((ch=*src) != 0 &&
78 ((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff))) {
81 *pDest++ = (UChar)ch;
87 if(ch != 0) {
97 ch = *src++;
100 if((uint32_t)ch < 0xd800 || (0xe000 <= ch
162 UChar32 ch; local
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c59 UTF32 ch; local
63 ch = *source++;
64 if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */
66 if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) {
75 *target++ = (UTF16)ch; /* normal case */
77 } else if (ch > UNI_MAX_LEGAL_UTF32) {
89 ch -= halfBase;
90 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
91 *target++ = (UTF16)((ch
107 UTF32 ch, ch2; local
212 UTF32 ch; local
336 UTF32 ch = 0; local
409 UTF32 ch; local
462 UTF32 ch = 0; local
[all...]
/external/google-breakpad/src/common/
H A Dconvert_UTF.c88 UTF32 ch; local
92 ch = *source++;
93 if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */
95 if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) {
104 *target++ = (UTF16)ch; /* normal case */
106 } else if (ch > UNI_MAX_LEGAL_UTF32) {
118 ch -= halfBase;
119 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
120 *target++ = (UTF16)((ch
135 UTF32 ch, ch2; local
239 UTF32 ch; local
360 UTF32 ch = 0; local
432 UTF32 ch; local
484 UTF32 ch = 0; local
[all...]
/external/llvm/lib/Support/
H A DConvertUTF.c125 UTF32 ch; local
129 ch = *source++;
130 if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */
132 if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) {
141 *target++ = (UTF16)ch; /* normal case */
143 } else if (ch > UNI_MAX_LEGAL_UTF32) {
155 ch -= halfBase;
156 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
157 *target++ = (UTF16)((ch
173 UTF32 ch, ch2; local
228 UTF32 ch; local
298 UTF32 ch; local
522 UTF32 ch = 0; local
596 UTF32 ch = 0; local
[all...]
/external/curl/docs/examples/
H A Dcacertinmem.c110 CURL * ch; local
114 ch=curl_easy_init();
115 rv=curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
116 rv=curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
117 rv=curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
118 rv=curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L);
119 rv=curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, *writefunction);
120 rv=curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout);
121 rv=curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, *writefunction);
122 rv=curl_easy_setopt(ch, CURLOPT_HEADERDAT
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DNormalizerData.java35 * @param ch the source character
38 public int getCanonicalClass(int ch) { argument
39 return canonicalClass.get(ch);
61 * @param ch the source character
64 public void getRecursiveDecomposition(boolean canonical, int ch, StringBuffer buffer) { argument
65 String decomp = decompose.get(ch);
66 if (decomp != null && !(canonical && isCompatibility.get(ch))) {
67 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) {
68 ch = UTF16Util.nextCodePoint(decomp, i);
69 getRecursiveDecomposition(canonical, ch, buffe
95 getExcluded(char ch) argument
102 getRawDecompositionMapping(char ch) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DNormalizerData.java34 * @param ch the source character
37 public int getCanonicalClass(int ch) { argument
38 return canonicalClass.get(ch);
60 * @param ch the source character
63 public void getRecursiveDecomposition(boolean canonical, int ch, StringBuffer buffer) { argument
64 String decomp = decompose.get(ch);
65 if (decomp != null && !(canonical && isCompatibility.get(ch))) {
66 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) {
67 ch = UTF16Util.nextCodePoint(decomp, i);
68 getRecursiveDecomposition(canonical, ch, buffe
94 getExcluded(char ch) argument
101 getRawDecompositionMapping(char ch) argument
[all...]
/external/autotest/client/cros/cellular/
H A Dcellular_logging.py22 ch = logging.StreamHandler(sys.stdout)
23 ch.setLevel(logging.DEBUG)
25 ch.setFormatter(formatter)
26 log.handlers = [ch]
/external/icu/icu4c/source/test/intltest/
H A Dnptrans.h54 inline UBool isProhibited(UChar32 ch);
116 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
118 inline UBool isLDHChar(UChar32 ch);
128 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){ argument
130 if(ch>0x007A){
134 if( (ch==0x002D) ||
135 (0x0030 <= ch && ch <= 0x0039) ||
136 (0x0041 <= ch && ch <
[all...]
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/cal10n_dummy/
H A DMonths.java2 * Copyright (c) 2004-2011 QOS.ch
27 import ch.qos.cal10n.BaseName;
28 import ch.qos.cal10n.Locale;
29 import ch.qos.cal10n.LocaleData;
H A DProduction.java2 * Copyright (c) 2004-2011 QOS.ch
27 import ch.qos.cal10n.LocaleData;
28 import ch.qos.cal10n.Locale;
29 import ch.qos.cal10n.BaseName;

Completed in 3251 milliseconds

1234567891011>>