Searched refs:ch (Results 1 - 25 of 1393) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dprefetch-enum.cpp8 char ch; local
9 __builtin_prefetch(&ch, 0, A);
H A Dbuiltins-va_arg.cpp15 char ch; local
18 ch = *fmt++;
19 if (ch != '%') {
23 ch = *fmt++;
24 switch (ch) {
39 if (ch == '0') {
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/
H A Daica.h33 void aica_play(int ch,int mode,unsigned long smpptr,int looptst,int loopend,int freq,int vol,int pan,int loopflag);
34 void aica_stop(int ch);
35 void aica_vol(int ch,int vol);
36 void aica_pan(int ch,int pan);
37 void aica_freq(int ch,int freq);
38 int aica_get_pos(int ch);
H A Daica.c17 #define CHNREGADDR(ch,x) SNDREGADDR(0x80*(ch)+(x))
22 #define CHNREG32(ch, x) (*(volatile unsigned long *)CHNREGADDR(ch,x))
23 #define CHNREG8(ch, x) (*(volatile unsigned long *)CHNREGADDR(ch,x))
139 ch is the channel to play on (0 - 63)
151 void aica_play(int ch,int mode,unsigned long smpptr,int loopst,int loopend,int freq,int vol,int pan,int loopflag) { argument
158 aica_stop(ch);
175 CHNREG32(ch,
228 aica_stop(int ch) argument
238 aica_vol(int ch,int vol) argument
245 aica_pan(int ch,int pan) argument
252 aica_freq(int ch,int freq) argument
258 aica_get_pos(int ch) argument
[all...]
/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
453 INT ch; /* counts through channels */ local
[all...]
/external/lldb/test/python_api/frame/
H A Dmain.c17 int a(int val, char ch) argument
20 char my_ch = ch;
21 printf("a(val=%d, ch='%c')\n", val, ch);
23 return b(val+1, ch+1);
25 return c(val+1, ch+1);
30 int b(int val, char ch) argument
33 char my_ch = ch;
34 printf("b(val=%d, ch='%c')\n", val, ch);
38 c(int val, char ch) argument
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtest_common.h12 inline bool IsASCIIAlpha(char ch) { argument
13 return (ch | 0x20) >= 'a' && (ch | 0x20) <= 'z';
16 inline bool IsNotASCIIAlpha(char ch) { argument
17 return !IsASCIIAlpha(ch);
/external/libpng/contrib/arm-neon/
H A Dlinux.c45 int ch = fgetc(f); local
47 if (ch == EOF)
60 if (ch <= 32) /* skip control characters and space */
69 if ((ch & ~0x20) == ch_feature[counter])
83 if (ch != 10 && ch != 13)
91 if (ch == 32 || ch == 9)
94 if (ch == 58) /* i.e. ':' */
108 if (ch
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeTokenizer.h54 // 4) vector (e.f. T type[256] .. return type[ch] ...
57 #define isPdfWhiteSpace(ch) (((ch)==kNUL_PdfWhiteSpace)|| \
58 ((ch)==kHT_PdfWhiteSpace)|| \
59 ((ch)==kLF_PdfWhiteSpace)|| \
60 ((ch)==kFF_PdfWhiteSpace)|| \
61 ((ch)==kCR_PdfWhiteSpace)|| \
62 ((ch)==kSP_PdfWhiteSpace))
64 #define isPdfEOL(ch) (((ch)
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dnomem64-err2.asm3 mov r8b, ch
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeTokenizer.h54 // 4) vector (e.f. T type[256] .. return type[ch] ...
57 #define isPdfWhiteSpace(ch) (((ch)==kNUL_PdfWhiteSpace)|| \
58 ((ch)==kHT_PdfWhiteSpace)|| \
59 ((ch)==kLF_PdfWhiteSpace)|| \
60 ((ch)==kFF_PdfWhiteSpace)|| \
61 ((ch)==kCR_PdfWhiteSpace)|| \
62 ((ch)==kSP_PdfWhiteSpace))
64 #define isPdfEOL(ch) (((ch)
[all...]
/external/chromium_org/third_party/icu/source/test/perf/charperf/
H A Dcharperf.h19 typedef void (*CharPerfFn)(UChar32 ch);
20 typedef void (*StdLibCharPerfFn)(wchar_t ch);
119 inline void isAlpha(UChar32 ch) argument
121 u_isalpha(ch);
124 inline void isUpper(UChar32 ch) argument
126 u_isupper(ch);
129 inline void isLower(UChar32 ch) argument
131 u_islower(ch);
134 inline void isDigit(UChar32 ch) argument
136 u_isdigit(ch);
139 isSpace(UChar32 ch) argument
144 isAlphaNumeric(UChar32 ch) argument
154 isPrint(UChar32 ch) argument
159 isControl(UChar32 ch) argument
164 toLower(UChar32 ch) argument
169 toUpper(UChar32 ch) argument
174 isWhiteSpace(UChar32 ch) argument
179 StdLibIsAlpha(wchar_t ch) argument
184 StdLibIsUpper(wchar_t ch) argument
189 StdLibIsLower(wchar_t ch) argument
194 StdLibIsDigit(wchar_t ch) argument
199 StdLibIsSpace(wchar_t ch) argument
204 StdLibIsAlphaNumeric(wchar_t ch) argument
214 StdLibIsPrint(wchar_t ch) argument
219 StdLibIsControl(wchar_t ch) argument
224 StdLibToLower(wchar_t ch) argument
229 StdLibToUpper(wchar_t ch) argument
234 StdLibIsWhiteSpace(wchar_t ch) argument
[all...]
/external/icu/icu4c/source/test/perf/charperf/
H A Dcharperf.h19 typedef void (*CharPerfFn)(UChar32 ch);
20 typedef void (*StdLibCharPerfFn)(wchar_t ch);
119 inline void isAlpha(UChar32 ch) argument
121 u_isalpha(ch);
124 inline void isUpper(UChar32 ch) argument
126 u_isupper(ch);
129 inline void isLower(UChar32 ch) argument
131 u_islower(ch);
134 inline void isDigit(UChar32 ch) argument
136 u_isdigit(ch);
139 isSpace(UChar32 ch) argument
144 isAlphaNumeric(UChar32 ch) argument
154 isPrint(UChar32 ch) argument
159 isControl(UChar32 ch) argument
164 toLower(UChar32 ch) argument
169 toUpper(UChar32 ch) argument
174 isWhiteSpace(UChar32 ch) argument
179 StdLibIsAlpha(wchar_t ch) argument
184 StdLibIsUpper(wchar_t ch) argument
189 StdLibIsLower(wchar_t ch) argument
194 StdLibIsDigit(wchar_t ch) argument
199 StdLibIsSpace(wchar_t ch) argument
204 StdLibIsAlphaNumeric(wchar_t ch) argument
214 StdLibIsPrint(wchar_t ch) argument
219 StdLibIsControl(wchar_t ch) argument
224 StdLibToLower(wchar_t ch) argument
229 StdLibToUpper(wchar_t ch) argument
234 StdLibIsWhiteSpace(wchar_t ch) argument
[all...]
/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/e2fsprogs/lib/et/
H A Det_name.c25 int ch; local
36 ch = (int)((num >> BITS_PER_CHAR * i) & ((1 << BITS_PER_CHAR) - 1));
37 if (ch != 0)
38 *p++ = char_set[ch-1];
/external/freetype/src/autofit/
H A Dafblue.hin28 #define GET_UTF8_CHAR( ch, p ) \
29 ch = (unsigned char)*p++; \
30 if ( ch >= 0x80 ) \
35 if ( ch < 0xE0 ) \
38 ch &= 0x1F; \
40 else if ( ch < 0xF0 ) \
43 ch &= 0x0F; \
48 ch &= 0x07; \
52 ch = ( ch <<
[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/chromium_org/third_party/icu/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/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/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/chromium_org/components/copresence/test/
H A Daudio_test_support.cc23 for (int ch = 0; ch < channels; ++ch)
24 PopulateSamples(random_seed, samples, bus->channel(ch));
32 for (int ch = 0; ch < channels; ++ch)
33 PopulateSamples(random_seed, samples, bus->channel(ch));
/external/chromium_org/tools/gyp/test/external-cross-compile/src/
H A Dtochar.py10 for ch in src.read():
11 dst.write('%d,\n' % ord(ch))
/external/chromium_org/url/
H A Durl_file.h18 inline bool IsWindowsDriveSeparator(base::char16 ch) { argument
19 return ch == ':' || ch == '|';
21 inline bool IsWindowsDriveLetter(base::char16 ch) { argument
22 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z');
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnptrans.h52 inline UBool isProhibited(UChar32 ch);
114 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
116 inline UBool isLDHChar(UChar32 ch);
126 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){ argument
128 if(ch>0x007A){
132 if( (ch==0x002D) ||
133 (0x0030 <= ch && ch <= 0x0039) ||
134 (0x0041 <= ch && ch <
[all...]

Completed in 754 milliseconds

1234567891011>>