Searched defs:ch (Results 126 - 150 of 971) sorted by relevance

1234567891011>>

/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...]
H A Drdswitch.c25 register int ch; local
27 ch = getc(file);
28 if (ch == '#') {
30 ch = getc(file);
31 } while (ch != '\n' && ch != EOF);
33 return ch;
42 register int ch; local
47 ch = text_getc(file);
48 if (ch
134 register int ch; local
274 char ch; local
[all...]
/external/libedit/src/
H A Dparse.c207 int cnt, ch; local
210 ch = *p++;
211 if (ch < '0' || ch > '7') {
215 c = (c << 3) | (ch - '0');
/external/libopus/src/
H A Drepacketizer_demo.c44 static void int_to_char(opus_uint32 i, unsigned char ch[4]) argument
46 ch[0] = i>>24;
47 ch[1] = (i>>16)&0xFF;
48 ch[2] = (i>>8)&0xFF;
49 ch[3] = i&0xFF;
52 static opus_uint32 char_to_int(unsigned char ch[4]) argument
54 return ((opus_uint32)ch[0]<<24) | ((opus_uint32)ch[1]<<16)
55 | ((opus_uint32)ch[2]<< 8) | (opus_uint32)ch[
121 unsigned char ch[4]; local
[all...]
/external/lldb/examples/lookup/
H A Dmain.cpp132 char ch; local
133 while ((ch = getopt_long_only(argc, (char * const *)argv, short_options.c_str(), g_long_options, 0)) != -1)
135 switch (ch)
/external/nist-sip/java/gov/nist/core/
H A DStringTokenizer.java75 public static boolean isHexDigit(char ch) { argument
76 return (ch >= 'A' && ch <= 'F') ||
77 (ch >= 'a' && ch <= 'f') ||
78 isDigit(ch);
81 public static boolean isAlpha(char ch) { argument
82 if (ch <= 127) {
83 return ((ch >= 'a' && ch <
90 isDigit(char ch) argument
99 isAlphaDigit(char ch) argument
[all...]
/external/openssl/crypto/bio/
H A Db_dump.c83 unsigned char ch; local
120 ch=((unsigned char)*(s+i*dump_width+j)) & 0xff;
121 BIO_snprintf(tmp,sizeof tmp,"%02x%c",ch,
131 ch=((unsigned char)*(s+i*dump_width+j)) & 0xff;
134 ((ch>=' ')&&(ch<='~'))?ch:'.');
137 ((ch>=os_toascii[' '])&&(ch<=os_toascii['~']))
138 ? os_toebcdic[ch]
[all...]
/external/oprofile/libutil++/
H A Dchild_reader.cpp180 char ch = buf1[temp_pos++]; local
181 if (ch == '\n')
/external/protobuf/gtest/test/
H A Dgtest-tuple_test.cc100 const char ch = 'a'; local
101 const FooTuple a(i, ch);
104 const FooTuple b(j, ch);
/external/qemu/android/
H A Dasync-utils.c142 char ch; local
143 ret = HANDLE_EINTR(socket_recv(alr->io->fd, &ch, 1));
156 alr->buffer[alr->pos++] = (uint8_t)ch;
157 if (ch == alr->eol) {
/external/qemu/android/base/
H A DString.h82 String& assign(char ch);
97 String& operator=(char ch) { argument
98 return this->assign(ch);
106 String& append(char ch);
121 String& operator+=(char ch) { argument
122 return this->append(ch);
137 int compare(char ch) const;
144 bool equals(char ch) const;
159 bool operator==(char ch) const {
160 return equals(ch);
[all...]
/external/qemu/android/base/files/
H A DPathUtils.cpp20 bool PathUtils::isDirSeparator(int ch, HostType hostType) { argument
21 return (ch == '/') || (hostType == HOST_WIN32 && ch == '\\');
26 bool PathUtils::isPathSeparator(int ch, HostType hostType) { argument
27 return (hostType == HOST_POSIX && ch == ':') ||
28 (hostType == HOST_WIN32 && ch == ';');
41 int ch = path[0]; local
42 if ((ch >= 'A' && ch <= 'Z') || (ch >
[all...]
H A DPathUtils.h43 // Return true if |ch| is a directory separator for a given |hostType|.
44 static bool isDirSeparator(int ch, HostType hostType);
46 // Return true if |ch| is a directory separator for the current platform.
47 static inline bool isDirSeparator(int ch) { argument
48 return isDirSeparator(ch, HOST_TYPE);
51 // Return true if |ch| is a path separator for a given |hostType|.
52 static bool isPathSeparator(int ch, HostType hostType);
54 // Return true if |ch| is a path separator for the current platform.
55 static inline bool isPathSeparator(int ch) { argument
56 return isPathSeparator(ch, HOST_TYP
[all...]
H A DPathUtils_unittest.cpp28 int ch; member in struct:android::base::__anon29044
39 int ch = kData[n].ch; local
41 PathUtils::isDirSeparator(ch, kHostPosix))
42 << "Testing '" << ch << "'";
44 PathUtils::isDirSeparator(ch, kHostWin32))
45 << "Testing '" << ch << "'";
47 PathUtils::isDirSeparator(ch))
48 << "Testing '" << ch << "'";
54 int ch; member in struct:android::base::__anon29045
65 int ch = kData[n].ch; local
[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...]
H A Drdswitch.c25 register int ch; local
27 ch = getc(file);
28 if (ch == '#') {
30 ch = getc(file);
31 } while (ch != '\n' && ch != EOF);
33 return ch;
42 register int ch; local
47 ch = text_getc(file);
48 if (ch
134 register int ch; local
274 char ch; local
[all...]
/external/skia/experimental/PdfViewer/
H A DSkPdfUtils.h81 static void TRACE_COMMENT(char ch) { argument
82 printf("%c", ch);
85 static void TRACE_TK(char ch) { argument
86 printf("%c", ch);
114 #define TRACE_COMMENT(ch)
115 #define TRACE_TK(ch)
/external/speex/libspeex/
H A Dspeex_callbacks.c129 unsigned char ch; local
130 ch = speex_bits_unpack_unsigned(bits, 8);
131 _speex_putc(ch, data);
132 /*printf("speex_std_char_handler ch=%x\n", ch);*/
/external/valgrind/main/none/tests/x86/
H A Dbt_everything.c175 UChar ch = block[n]; local
177 res = rol1(res) ^ (UInt)ch;
/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...]
H A DISO8601Converter.java95 input.ch(0) == 'T' ||
96 (input.length() >= 2 && input.ch(1) == ':' ||
97 (input.length() >= 3 && input.ch(2) == ':'));
101 if (input.ch(0) == '-')
109 if (input.hasNext() && input.ch() != '-')
114 if (input.ch(0) == '-')
128 if (input.hasNext() && input.ch() != '-')
142 if (input.hasNext() && input.ch() != 'T')
159 if (input.ch() == 'T')
172 if (input.ch() !
426 public char ch(int index) method in class:ParseState
437 public char ch() method in class:ParseState
[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...]
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java368 char ch;
384 ch = patArr[i];
385 if (ch != '?') {
386 if (different(caseSensitive, ch, strArr[i])) {
400 ch = patArr[patIdxStart];
401 if (ch == '*' || strIdxStart > strIdxEnd) {
404 if (ch != '?') {
405 if (different(caseSensitive, ch, strArr[strIdxStart])) {
420 ch = patArr[patIdxEnd];
421 if (ch
496 different( boolean caseSensitive, char ch, char other) argument
[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/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java247 final char ch = this.currentHeader.charAt(from);
248 if (isTokenSeparator(ch) || isWhitespace(ch)) {
300 final char ch = this.currentHeader.charAt(from);
301 if (isTokenSeparator(ch)) {
303 } else if (isWhitespace(ch)) {
305 } else if (isTokenChar(ch)) {
353 * @param ch the character to check
358 protected boolean isTokenSeparator(char ch) { argument
359 return (ch
374 isWhitespace(char ch) argument
394 isTokenChar(char ch) argument
428 isHttpSeparator(char ch) argument
[all...]

Completed in 6760 milliseconds

1234567891011>>