HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 1 - 25 of 1245) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
prefetch-enum.cpp 8 char ch; local
9 __builtin_prefetch(&ch, 0, A);
builtins-va_arg.cpp 15 char ch; local
18 ch = *fmt++;
19 if (ch != '%') {
23 ch = *fmt++;
24 switch (ch) {
39 if (ch == '0') {
  /external/chromium_org/content/shell/renderer/test_runner/
test_common.h 12 inline bool IsASCIIAlpha(char ch) {
13 return (ch | 0x20) >= 'a' && (ch | 0x20) <= 'z';
16 inline bool IsNotASCIIAlpha(char ch) {
17 return !IsASCIIAlpha(ch);
  /bionic/libm/
digittoint.c 32 __LIBC_HIDDEN__ int digittoint(char ch) {
33 int d = ch - '0';
37 d = ch - 'a';
41 d = ch - 'A';
  /external/aac/libAACenc/src/
psy_main.cpp 250 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=0; ch<cm->elInfo[i].nChannelsInEl; ch++)
313 int i, ch; local
453 INT ch; \/* counts through channels *\/ local
    [all...]
  /external/lldb/test/python_api/frame/
main.c 17 int a(int val, char ch)
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)
33 char my_ch = ch;
34 printf("b(val=%d, ch='%c')\n", val, ch);
    [all...]
  /external/libpng/contrib/arm-neon/
linux.c 45 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 == 32 || ch == 9
    [all...]
  /bionic/libc/bionic/
strchr.cpp 33 char* strchr(const char* p, int ch) {
34 return __strchr_chk(p, ch, __BIONIC_FORTIFY_UNKNOWN_SIZE);
strrchr.cpp 33 char* strrchr(const char* p, int ch) {
34 return __strrchr_chk(p, ch, __BIONIC_FORTIFY_UNKNOWN_SIZE);
__strchr_chk.cpp 33 extern "C" char* __strchr_chk(const char* p, int ch, size_t s_len) {
38 if (*p == static_cast<char>(ch)) {
__strrchr_chk.cpp 33 extern "C" char* __strrchr_chk(const char *p, int ch, size_t s_len) {
38 if (*p == (char) ch) {
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.h 54 // 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)==kLF_PdfWhiteSpace)||((ch)==kCR_PdfWhiteSpace)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
nomem64-err2.asm 3 mov r8b, ch
  /external/chromium_org/third_party/icu/source/test/perf/charperf/
charperf.h 19 typedef void (*CharPerfFn)(UChar32 ch);
20 typedef void (*StdLibCharPerfFn)(wchar_t ch);
119 inline void isAlpha(UChar32 ch)
121 u_isalpha(ch);
124 inline void isUpper(UChar32 ch)
126 u_isupper(ch);
129 inline void isLower(UChar32 ch)
131 u_islower(ch);
134 inline void isDigit(UChar32 ch)
136 u_isdigit(ch);
    [all...]
  /external/icu/icu4c/source/test/perf/charperf/
charperf.h 19 typedef void (*CharPerfFn)(UChar32 ch);
20 typedef void (*StdLibCharPerfFn)(wchar_t ch);
119 inline void isAlpha(UChar32 ch)
121 u_isalpha(ch);
124 inline void isUpper(UChar32 ch)
126 u_isupper(ch);
129 inline void isLower(UChar32 ch)
131 u_islower(ch);
134 inline void isDigit(UChar32 ch)
136 u_isdigit(ch);
    [all...]
  /external/nist-sip/java/gov/nist/core/
StringTokenizer.java 75 public static boolean isHexDigit(char ch) {
76 return (ch >= 'A' && ch <= 'F') ||
77 (ch >= 'a' && ch <= 'f') ||
78 isDigit(ch);
81 public static boolean isAlpha(char ch) {
82 if (ch <= 127) {
83 return ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z'))
    [all...]
  /external/e2fsprogs/lib/et/
et_name.c 25 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/
afblue.hin 28 #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 << 6 ) | ( *p++ & 0x3F );
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ustrtrns.cpp 48 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 && ch <= 0xffff))
162 UChar32 ch; local
    [all...]
  /external/icu/icu4c/source/common/
ustrtrns.cpp 48 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 && ch <= 0xffff))
162 UChar32 ch; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 59 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 & halfMask) + UNI_SUR_LOW_START)
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/
ConvertUTF.c 125 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 & halfMask) + UNI_SUR_LOW_START)
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/
audio_test_support.cc 23 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/url/
url_file.h 18 inline bool IsWindowsDriveSeparator(base::char16 ch) {
19 return ch == ':' || ch == '|';
21 inline bool IsWindowsDriveLetter(base::char16 ch) {
22 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z');
  /external/chromium_org/third_party/icu/source/test/intltest/
nptrans.h 52 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){
128 if(ch>0x007A){
132 if( (ch==0x002D) ||
133 (0x0030 <= ch && ch <= 0x0039) ||
134 (0x0041 <= ch && ch <= 0x005A) |
    [all...]

Completed in 504 milliseconds

1 2 3 4 5 6 7 8 91011>>