Searched refs:ch (Results 51 - 75 of 1393) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjpeg_turbo/
H A Drdcolmap.c125 register int ch; local
127 ch = getc(infile);
128 if (ch == '#') {
130 ch = getc(infile);
131 } while (ch != '\n' && ch != EOF);
133 return ch;
144 register int ch; local
149 ch = pbm_getc(infile);
150 if (ch
[all...]
/external/jpeg/
H A Drdcolmap.c125 register int ch; local
127 ch = getc(infile);
128 if (ch == '#') {
130 ch = getc(infile);
131 } while (ch != '\n' && ch != EOF);
133 return ch;
144 register int ch; local
149 ch = pbm_getc(infile);
150 if (ch
[all...]
/external/qemu/distrib/jpeg-6b/
H A Drdcolmap.c125 register int ch; local
127 ch = getc(infile);
128 if (ch == '#') {
130 ch = getc(infile);
131 } while (ch != '\n' && ch != EOF);
133 return ch;
144 register int ch; local
149 ch = pbm_getc(infile);
150 if (ch
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java45 char ch;
54 ch = W2;
59 ch = (char)(((bytes[i] & 0x0f) << 12)
65 ch = (char)(((bytes[i] & 0x1f) << 6) | (bytes[i + 1] & 0x3f));
70 ch = (char)(((bytes[i] & 0x1f) << 6) | (bytes[i + 1] & 0x3f));
75 ch = (char)(bytes[i] & 0xff);
79 cs[length++] = ch;
114 char ch = c[i];
116 if (ch < 0x0080)
118 sOut.write(ch);
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dstringencode.cc35 char ch = source[srcpos++]; local
36 if ((ch == escape) || ::strchr(illegal, ch)) {
41 buffer[bufpos++] = ch;
57 char ch = source[srcpos++]; local
58 if ((ch == escape) && (srcpos < srclen)) {
59 ch = source[srcpos++];
61 buffer[bufpos++] = ch;
76 char ch = source[srcpos++]; local
77 if ((ch !
101 char ch = source[srcpos++]; local
152 unsigned char ch = source[srcpos++]; local
179 unsigned char ch = source[srcpos++]; local
266 unsigned char ch = source[srcpos]; local
325 unsigned char ch = source[srcpos++]; local
358 unsigned char ch = source[srcpos++]; local
418 hex_decode(char ch, unsigned char* val) argument
452 unsigned char ch = bsource[srcpos++]; local
[all...]
/external/chromium_org/third_party/icu/source/samples/case/
H A Ducase.c23 UChar32 ch; local
38 ch = u_toupper(char_k); /* ch = 'K' */
39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
40 ch = u_tolower(ch); /* ch = 'k' */
41 u_fprintf(out, "tolower() = %C\n", ch);
42 ch = u_totitle(char_k); /* ch
[all...]
/external/icu/icu4c/source/samples/case/
H A Ducase.c23 UChar32 ch; local
38 ch = u_toupper(char_k); /* ch = 'K' */
39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
40 ch = u_tolower(ch); /* ch = 'k' */
41 u_fprintf(out, "tolower() = %C\n", ch);
42 ch = u_totitle(char_k); /* ch
[all...]
/external/deqp/executor/
H A DxeXMLParser.cpp37 static inline bool isIdentifierStartChar (int ch) argument
39 return de::inRange<int>(ch, 'a', 'z') || de::inRange<int>(ch, 'A', 'Z');
42 static inline bool isIdentifierChar (int ch) argument
44 return isIdentifierStartChar(ch) || de::inRange<int>(ch, '0', '9') || (ch == '-') || (ch == '_');
47 static inline bool isWhitespaceChar (int ch) argument
49 return ch
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfsdk_baseannot.cpp218 FX_CHAR ch; local
221 ch = dtStr[i];
222 if (ch >= '0' && ch <= '9') break;
231 ch = dtStr[i];
232 k = k * 10 + ch - '0';
234 if (ch < '0' || ch > '9') break;
244 ch = dtStr[i];
245 k = k * 10 + ch
[all...]
/external/chromium_org/third_party/icu/source/samples/datefmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/chromium_org/third_party/icu/source/samples/msgfmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/chromium_org/third_party/icu/source/samples/translit/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/chromium_org/ui/app_list/search/
H A Dterm_break_iterator.cc56 TermBreakIterator::State TermBreakIterator::GetNewState(base::char16 ch) { argument
57 if (IsAsciiDigit(ch) || ch == '.' || ch == ',')
60 const bool is_upper = !!u_isUUppercase(ch);
61 const bool is_lower = !!u_isULowercase(ch);
64 NOTREACHED() << "Invalid state for ch=" << ch;
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/samples/translit/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/jemalloc/test/include/test/
H A Dmath.h224 double e, aa, xx, c, ch, a, q, p1, p2, t, x, b, s1, s2, s3, s4, s5, s6; local
238 ch = pow(p * xx * exp(ln_gamma_df_2 + xx * aa), 1.0 / xx);
239 if (ch - e < 0.0)
240 return (ch);
249 ch = df * pow(x * sqrt(p1) + 1.0 - p1, 3.0);
251 if (ch > 2.2 * df + 6.0) {
252 ch = -2.0 * (log(1.0 - p) - c * log(0.5 * ch) +
256 ch = 0.4;
259 q = ch;
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERPrintableString.java171 char ch = str.charAt(i);
173 if (ch > 0x007f)
178 if ('a' <= ch && ch <= 'z')
183 if ('A' <= ch && ch <= 'Z')
188 if ('0' <= ch && ch <= '9')
193 switch (ch)
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_u32.c53 uint32_t ch, i; local
60 ch = args->converter->toUnicodeStatus - 1;/*Stores the previously calculated ch from a previous call*/
67 ch = 0;
71 ch = (ch << 8) | (uint8_t)(*mySource);
77 args->converter->toUnicodeStatus = ch + 1;
83 if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) {
85 if (ch <
133 uint32_t ch, i; local
218 UChar32 ch, ch2; local
320 UChar32 ch, ch2; local
515 uint32_t ch, i; local
601 uint32_t ch, i; local
696 UChar32 ch, ch2; local
806 UChar32 ch, ch2; local
[all...]
H A Ducnv_u8.c109 uint32_t ch, ch2 = 0; local
119 ch = cnv->toUnicodeStatus;/*Stores the previously calculated ch from a previous call*/
127 ch = *(mySource++);
128 if (ch < 0x80) /* Simple case */
130 *(myTarget++) = (UChar) ch;
135 toUBytes[0] = (char)ch;
136 inBytes = bytesFromUTF8[ch]; /* lookup current sequence length */
149 ch = (ch <<
239 uint32_t ch, ch2 = 0; local
366 UChar32 ch; local
481 UChar32 ch; local
617 UChar32 ch; local
[all...]
/external/icu/icu4c/source/common/
H A Ducnv_u32.c53 uint32_t ch, i; local
60 ch = args->converter->toUnicodeStatus - 1;/*Stores the previously calculated ch from a previous call*/
67 ch = 0;
71 ch = (ch << 8) | (uint8_t)(*mySource);
77 args->converter->toUnicodeStatus = ch + 1;
83 if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) {
85 if (ch <
133 uint32_t ch, i; local
218 UChar32 ch, ch2; local
320 UChar32 ch, ch2; local
515 uint32_t ch, i; local
601 uint32_t ch, i; local
696 UChar32 ch, ch2; local
806 UChar32 ch, ch2; local
[all...]
H A Ducnv_u8.c100 uint32_t ch, ch2 = 0; local
110 ch = cnv->toUnicodeStatus;/*Stores the previously calculated ch from a previous call*/
118 ch = *(mySource++);
119 if (ch < 0x80) /* Simple case */
121 *(myTarget++) = (UChar) ch;
126 toUBytes[0] = (char)ch;
127 inBytes = bytesFromUTF8[ch]; /* lookup current sequence length */
140 ch = (ch <<
230 uint32_t ch, ch2 = 0; local
357 UChar32 ch; local
472 UChar32 ch; local
608 UChar32 ch; local
[all...]
/external/bluetooth/bluedroid/udrv/ulinux/
H A Duipc.c103 tUIPC_CHAN ch[UIPC_CH_NUM]; member in struct:__anon1734
229 tUIPC_CHAN *p = &uipc_main.ch[i];
264 //BTIF_TRACE_EVENT("CHECK TASK FLAGS %x %x", uipc_main.ch[i].task_evt_flags, UIPC_TASK_FLAG_DISCONNECT_CHAN);
265 if (uipc_main.ch[i].task_evt_flags & UIPC_TASK_FLAG_DISCONNECT_CHAN)
267 uipc_main.ch[i].task_evt_flags &= ~UIPC_TASK_FLAG_DISCONNECT_CHAN;
282 //BTIF_TRACE_EVENT("CHECK SRVFD %d (ch %d)", uipc_main.ch[ch_id].srvfd, ch_id);
284 if (SAFE_FD_ISSET(uipc_main.ch[ch_id].srvfd, &uipc_main.read_set))
288 uipc_main.ch[ch_id].fd = accept_server_socket(uipc_main.ch[ch_i
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DEncoding.java101 char ch = sb.charAt(i);
102 if (ch < 0x20) {
103 if (IS_BANNED_ASCII[ch]) {
106 } else if (0xd800 <= ch) {
107 if (ch <= 0xdfff) {
110 if (Character.isSurrogatePair(ch, next)) {
111 sb.setCharAt(k++, ch);
117 } else if ((ch & 0xfffe) == 0xfffe) {
121 sb.setCharAt(k++, ch);
135 char ch
[all...]
/external/aac/libAACdec/src/
H A Dchannel.cpp138 int ch, maybe_jstereo = 0; local
142 for (ch = 0; ch < el_channels; ch++) {
143 if ( pAacDecoderChannelInfo[ch]->renderMode == AACDEC_RENDER_IMDCT
144 || pAacDecoderChannelInfo[ch]->renderMode == AACDEC_RENDER_ELDFB )
146 CBlock_InverseQuantizeSpectralData(pAacDecoderChannelInfo[ch], pSamplingRateInfo);
179 for (ch = 0; ch < el_channels; ch
242 int i, ch, decision_bit; local
[all...]

Completed in 9217 milliseconds

1234567891011>>