/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
Utils.java | 38 char ch= str.charAt(i); local 39 if (!(ch== 0x20 40 || ch>= 0x27 && ch<= 0x29 // '() 41 || ch>= 0x2B && ch<= 0x3A // +,-./0-9: 42 || ch== '=' 43 || ch== '?' 44 || ch>= 'A' && ch<= 'Z [all...] |
/external/opencore/codecs_v2/audio/mp3/dec/src/ |
pvmp3_get_side_info.cpp | 119 int32 ch, gr; local 140 for (ch = 0; ch < stereo; ch++) 143 si->ch[ch].scfsi[0] = (tmp << 28) >> 31; /* 1 */ 144 si->ch[ch].scfsi[1] = (tmp << 29) >> 31; /* 1 */ 145 si->ch[ch].scfsi[2] = (tmp << 30) >> 31; /* 1 * [all...] |
/frameworks/base/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_get_side_info.cpp | 119 int32 ch, gr; local 140 for (ch = 0; ch < stereo; ch++) 143 si->ch[ch].scfsi[0] = (tmp << 28) >> 31; /* 1 */ 144 si->ch[ch].scfsi[1] = (tmp << 29) >> 31; /* 1 */ 145 si->ch[ch].scfsi[2] = (tmp << 30) >> 31; /* 1 * [all...] |
/external/qemu/distrib/sdl-1.2.12/src/audio/dc/ |
aica.h | 33 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);
|
aica.c | 17 #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) { 158 aica_stop(ch); 175 CHNREG32(ch, 8) = loopst & 0xffff [all...] |
/packages/apps/Email/src/com/beetstra/jutf7/ |
Base64Util.java | 75 final char ch = this.alphabet[i];
local 76 if (ch >= 128)
77 throw new IllegalArgumentException("invalid character in alphabet: " + ch);
78 inverseAlphabet[ch] = i;
86 * @param ch The character, as a ASCII encoded byte
90 int getSextet(final byte ch) {
91 if (ch >= 128)
93 return inverseAlphabet[ch];
99 * @param ch The character
100 * @return true if the alphabet contains <code>ch</code>, false otherwise [all...] |
ModifiedUTF7Charset.java | 44 boolean canEncodeDirectly(char ch) {
45 if (ch == shift())
47 return ch >= 0x20 && ch <= 0x7E;
|
/bootable/bootloader/legacy/include/msm7k/ |
dmov.h | 36 #define DMOV_SD0(off, ch) (MSM_DMOV_BASE + 0x0000 + (off) + ((ch) << 2)) 37 #define DMOV_SD1(off, ch) (MSM_DMOV_BASE + 0x0400 + (off) + ((ch) << 2)) 38 #define DMOV_SD2(off, ch) (MSM_DMOV_BASE + 0x0800 + (off) + ((ch) << 2)) 39 #define DMOV_SD3(off, ch) (MSM_DMOV_BASE + 0x0C00 + (off) + ((ch) << 2)) 47 #define DMOV_CMD_PTR(ch) DMOV_SD3(0x000, ch) [all...] |
/bionic/libc/string/ |
memccpy.c | 36 char ch = ~(char)c; /* ensure ch != c */ local 39 if (ch == c || p >= p_end) break; 40 *q++ = ch = *p++; 42 if (ch == c || p >= p_end) break; 43 *q++ = ch = *p++; 45 if (ch == c || p >= p_end) break; 46 *q++ = ch = *p++; 48 if (ch == c || p >= p_end) break; 49 *q++ = ch = *p++ [all...] |
index.c | 34 index(const char *p, int ch) 37 if (*p == ch)
|
strchr.c | 34 strchr(const char *p, int ch) 37 if (*p == ch)
|
strrchr.c | 34 strrchr(const char *p, int ch) 39 if (*p == ch)
|
/external/icu4c/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/e2fsprogs/lib/et/ |
et_name.c | 26 int ch; local 37 ch = (int)((num >> BITS_PER_CHAR * i) & ((1 << BITS_PER_CHAR) - 1)); 38 if (ch != 0) 39 *p++ = char_set[ch-1];
|
/dalvik/libcore/luni/src/main/java/java/net/ |
URIEncoderDecoder.java | 53 char ch = s.charAt(i); local 54 if (ch == '%') { 72 if (!((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') 73 || (ch >= '0' && ch <= '9') || legal.indexOf(ch) > -1 || (ch > 12 85 char ch = s.charAt(i); local 117 char ch = s.charAt(i); local 153 char ch = s.charAt(i); local [all...] |
URLEncoder.java | 55 char ch = s.charAt(i); local 56 if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') 57 || (ch >= '0' && ch <= '9') || ".-*_".indexOf(ch) > -1) { //$NON-NLS-1$ 58 buf.append(ch); 59 } else if (ch == ' ') 103 char ch = s.charAt(i); local [all...] |
/external/icu4c/common/ |
ustrtrns.c | 42 UChar32 ch; local 70 while((ch=*src) != 0 && 71 ((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff))) { 74 *pDest++ = (UChar)ch; 80 if(ch != 0) { 90 ch = *src++; 93 if((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff)) 155 UChar32 ch; local 402 UChar32 ch; local 743 UChar32 ch; local 982 uint32_t ch=0,ch2=0; local [all...] |
/external/sqlite/android/ |
PhoneNumberUtils.cpp | 75 * Returns interger corresponding to the input if input "ch" is 79 static int tryGetISODigit (char ch) 81 if ('0' <= ch && ch <= '9') { 82 return ch - '0'; 89 * True if ch is ISO-LATIN characters 0-9, *, # , + 92 static bool isDialable(char ch) 94 return ('0' <= ch && ch <= '9') || ch == '*' || ch == '#' || ch == '+' 118 char ch = str[i]; local 154 char ch = str[i]; local [all...] |
/external/icu4c/test/intltest/ |
nptrans.h | 52 inline UBool isProhibited(UChar32 ch); 121 UBool isLabelSeparator(UChar32 ch, UErrorCode& status); 124 inline UBool isLDHChar(UChar32 ch); 133 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){ 135 if(ch>0x007A){ 139 if( (ch==0x002D) || 140 (0x0030 <= ch && ch <= 0x0039) || 141 (0x0041 <= ch && ch <= 0x005A) | [all...] |
/external/webkit/WebCore/rendering/ |
break_lines.cpp | 38 static inline bool isBreakableSpace(UChar ch, bool treatNoBreakSpaceAsBreak) 40 switch (ch) { 67 static inline bool shouldBreakAfter(UChar ch, UChar nextCh) 69 switch (ch) { 92 static inline bool needsLineBreakIterator(UChar ch) 94 return ch > 0x7F && ch != noBreakSpace; 115 UChar ch = str[i]; local 117 if (isBreakableSpace(ch, treatNoBreakSpaceAsBreak) || shouldBreakAfter(lastCh, ch)) [all...] |
/external/e2fsprogs/e2fsck/ |
argv_parse.c | 48 char **argv, **new_argv, *buf, ch; local 58 for (cp = in_buf; (ch = *cp); cp++) { 60 if (isspace((int) ch)) 78 if (ch == '"') 81 *outcp++ = ch; 85 if (isspace((int) ch)) { 94 if (ch == '"') { 98 if (ch == '\\') { 99 ch = *++cp; 100 switch (ch) { [all...] |
/dalvik/libcore/xml/src/main/java/javax/xml/parsers/ |
FilePathToURI.java | 43 char ch; typedefs 45 ch = escChs[i]; 46 gNeedEscaping[ch] = true; 47 gAfterEscaping1[ch] = gHexChs[ch >> 4]; 48 gAfterEscaping2[ch] = gHexChs[ch & 0xf]; 63 int len = path.length(), ch; local 68 ch = Character.toUpperCase(path.charAt(0)); 69 if (ch >= 'A' && ch <= 'Z') [all...] |
/dalvik/libcore/xml/src/main/java/javax/xml/transform/stream/ |
FilePathToURI.java | 43 char ch; typedefs 45 ch = escChs[i]; 46 gNeedEscaping[ch] = true; 47 gAfterEscaping1[ch] = gHexChs[ch >> 4]; 48 gAfterEscaping2[ch] = gHexChs[ch & 0xf]; 63 int len = path.length(), ch; local 68 ch = Character.toUpperCase(path.charAt(0)); 69 if (ch >= 'A' && ch <= 'Z') [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/util/ |
Strings.java | 43 char ch; local 52 ch = W2; 57 ch = (char)(((bytes[i] & 0x1f) << 12) 63 ch = (char)(((bytes[i] & 0x3f) << 6) | (bytes[i + 1] & 0x3f)); 68 ch = (char)(bytes[i] & 0xff); 72 cs[length++] = ch; 86 char ch = c[i]; local 88 if (ch < 0x0080) 90 bOut.write(ch); 92 else if (ch < 0x0800 147 char ch = chars[i]; local 176 char ch = chars[i]; local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
XMLCharacterRecognizer.java | 24 * Class used to verify whether the specified <var>ch</var> 32 * Returns whether the specified <var>ch</var> conforms to the XML 1.0 definition 35 * @param ch Character to check as XML whitespace. 36 * @return =true if <var>ch</var> is XML whitespace; otherwise =false. 38 public static boolean isWhiteSpace(char ch) 40 return (ch == 0x20) || (ch == 0x09) || (ch == 0xD) || (ch == 0xA); 46 * @param ch Character array to check as XML whitespace [all...] |