Home
last modified time | relevance | path

Searched defs:ch (Results 1 – 25 of 4549) sorted by relevance

12345678910>>...182

/aosp_15_r20/external/coreboot/src/northbridge/intel/sandybridge/registers/
H A Dmchbar.h289 #define GDCRTRAININGRESULT(ch, y) GzLy(0x0004, ch, y) /* Test results for PI config */ argument
290 #define GDCRTRAININGRESULT1(ch) GDCRTRAININGRESULT(ch, 0) /* 0x0004 */ argument
291 #define GDCRTRAININGRESULT2(ch) GDCRTRAININGRESULT(ch, 1) /* 0x0008 */ argument
292 #define GDCRRX(ch, rank) GzLy(0x10, ch, rank) /* Time setting for lane Rx */ argument
293 #define GDCRTX(ch, rank) GzLy(0x20, ch, rank) /* Time setting for lane Tx */ argument
296 #define GDCRCLKRANKSUSED_ch(ch) Gz(0x0c00, ch) /* Indicates which rank is populated */ argument
297 #define GDCRCLKCOMP_ch(ch) Gz(0x0c04, ch) /* RCOMP result register */ argument
298 #define GDCRCKPICODE_ch(ch) Gz(0x0c14, ch) /* PI coding for DDR CLK pins */ argument
299 #define GDCRCKLOGICDELAY_ch(ch) Gz(0x0c18, ch) /* Logic delay of 1 QCLK in CLK slice */ argument
300 #define GDDLLFUSE_ch(ch) Gz(0x0c20, ch) /* Used for fuse download to the DLLs */ argument
[all …]
/aosp_15_r20/external/icu/icu4c/source/test/perf/charperf/
H A Dcharperf.h123 inline void isAlpha(UChar32 ch) in isAlpha()
128 inline void isUpper(UChar32 ch) in isUpper()
133 inline void isLower(UChar32 ch) in isLower()
138 inline void isDigit(UChar32 ch) in isDigit()
143 inline void isSpace(UChar32 ch) in isSpace()
148 inline void isAlphaNumeric(UChar32 ch) in isAlphaNumeric()
158 inline void isPrint(UChar32 ch) in isPrint()
163 inline void isControl(UChar32 ch) in isControl()
168 inline void toLower(UChar32 ch) in toLower()
173 inline void toUpper(UChar32 ch) in toUpper()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/test/perf/charperf/
H A Dcharperf.h123 inline void isAlpha(UChar32 ch) in isAlpha()
128 inline void isUpper(UChar32 ch) in isUpper()
133 inline void isLower(UChar32 ch) in isLower()
138 inline void isDigit(UChar32 ch) in isDigit()
143 inline void isSpace(UChar32 ch) in isSpace()
148 inline void isAlphaNumeric(UChar32 ch) in isAlphaNumeric()
158 inline void isPrint(UChar32 ch) in isPrint()
163 inline void isControl(UChar32 ch) in isControl()
168 inline void toLower(UChar32 ch) in toLower()
173 inline void toUpper(UChar32 ch) in toUpper()
[all …]
/aosp_15_r20/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/async/
H A DNonBlockingJsonParser.java197 int ch = _inputBuffer[_inputPtr++] & 0xFF; in nextToken() local
428 private final JsonToken _startDocument(int ch) throws IOException in _startDocument()
473 int ch = _inputBuffer[_inputPtr++] & 0xFF; in _finishBOM() local
508 private final JsonToken _startFieldName(int ch) throws IOException in _startFieldName()
535 private final JsonToken _startFieldNameAfterComma(int ch) throws IOException in _startFieldNameAfterComma()
601 private final JsonToken _startValue(int ch) throws IOException in _startValue()
671 private final JsonToken _startValueExpectComma(int ch) throws IOException in _startValueExpectComma()
770 private final JsonToken _startValueExpectColon(int ch) throws IOException in _startValueExpectColon()
845 private final JsonToken _startValueAfterComma(int ch) throws IOException in _startValueAfterComma()
909 protected JsonToken _startUnexpectedValue(boolean leadingComma, int ch) throws IOException in _startUnexpectedValue()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/regex/
DASCII.java198 static int getType(int ch) { in getType()
202 static boolean isType(int ch, int type) { in isType()
206 static boolean isAscii(int ch) { in isAscii()
210 static boolean isAlpha(int ch) { in isAlpha()
214 static boolean isDigit(int ch) { in isDigit()
218 static boolean isAlnum(int ch) { in isAlnum()
222 static boolean isGraph(int ch) { in isGraph()
226 static boolean isPrint(int ch) { in isPrint()
230 static boolean isPunct(int ch) { in isPunct()
234 static boolean isSpace(int ch) { in isSpace()
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/regex/
H A DASCII.java198 static int getType(int ch) { in getType()
202 static boolean isType(int ch, int type) { in isType()
206 static boolean isAscii(int ch) { in isAscii()
210 static boolean isAlpha(int ch) { in isAlpha()
214 static boolean isDigit(int ch) { in isDigit()
218 static boolean isAlnum(int ch) { in isAlnum()
222 static boolean isGraph(int ch) { in isGraph()
226 static boolean isPrint(int ch) { in isPrint()
230 static boolean isPunct(int ch) { in isPunct()
234 static boolean isSpace(int ch) { in isSpace()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/regex/
DASCII.java198 static int getType(int ch) { in getType()
202 static boolean isType(int ch, int type) { in isType()
206 static boolean isAscii(int ch) { in isAscii()
210 static boolean isAlpha(int ch) { in isAlpha()
214 static boolean isDigit(int ch) { in isDigit()
218 static boolean isAlnum(int ch) { in isAlnum()
222 static boolean isGraph(int ch) { in isGraph()
226 static boolean isPrint(int ch) { in isPrint()
230 static boolean isPunct(int ch) { in isPunct()
234 static boolean isSpace(int ch) { in isSpace()
[all …]
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
H A DCharUtils.java92 public static Character toCharacterObject(final char ch) { in toCharacterObject()
130 public static char toChar(final Character ch) { in toChar()
147 public static char toChar(final Character ch, final char defaultValue) { in toChar()
206 public static int toIntValue(final char ch) { in toIntValue()
228 public static int toIntValue(final char ch, final int defaultValue) { in toIntValue()
249 public static int toIntValue(final Character ch) { in toIntValue()
269 public static int toIntValue(final Character ch, final int defaultValue) { in toIntValue()
287 public static String toString(final char ch) { in toString()
311 public static String toString(final Character ch) { in toString()
328 public static String unicodeEscaped(final char ch) { in unicodeEscaped()
[all …]
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodectype.c62 Py_UCS4 _PyUnicode_ToTitlecase(Py_UCS4 ch) in _PyUnicode_ToTitlecase()
74 int _PyUnicode_IsTitlecase(Py_UCS4 ch) in _PyUnicode_IsTitlecase()
84 int _PyUnicode_IsXidStart(Py_UCS4 ch) in _PyUnicode_IsXidStart()
94 int _PyUnicode_IsXidContinue(Py_UCS4 ch) in _PyUnicode_IsXidContinue()
104 int _PyUnicode_ToDecimalDigit(Py_UCS4 ch) in _PyUnicode_ToDecimalDigit()
111 int _PyUnicode_IsDecimalDigit(Py_UCS4 ch) in _PyUnicode_IsDecimalDigit()
121 int _PyUnicode_ToDigit(Py_UCS4 ch) in _PyUnicode_ToDigit()
128 int _PyUnicode_IsDigit(Py_UCS4 ch) in _PyUnicode_IsDigit()
138 int _PyUnicode_IsNumeric(Py_UCS4 ch) in _PyUnicode_IsNumeric()
158 int _PyUnicode_IsPrintable(Py_UCS4 ch) in _PyUnicode_IsPrintable()
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/util/regex/
H A DPOSIX_Unicode.java31 public static boolean isAlpha(int ch) { in isAlpha()
35 public static boolean isLower(int ch) { in isLower()
39 public static boolean isUpper(int ch) { in isUpper()
44 public static boolean isSpace(int ch) { in isSpace()
54 public static boolean isCntrl(int ch) { in isCntrl()
59 public static boolean isPunct(int ch) { in isPunct()
72 public static boolean isHexDigit(int ch) { in isHexDigit()
83 public static boolean isDigit(int ch) { in isDigit()
89 public static boolean isAlnum(int ch) { in isAlnum()
97 public static boolean isBlank(int ch) { in isBlank()
[all …]
H A DPOSIX_ASCII.java190 static int getType(int ch) { in getType()
194 static boolean isType(int ch, int type) { in isType()
198 static boolean isAscii(int ch) { in isAscii()
202 static boolean isAlpha(int ch) { in isAlpha()
206 static boolean isDigit(int ch) { in isDigit()
210 static boolean isAlnum(int ch) { in isAlnum()
214 static boolean isGraph(int ch) { in isGraph()
218 static boolean isPrint(int ch) { in isPrint()
222 static boolean isPunct(int ch) { in isPunct()
226 static boolean isSpace(int ch) { in isSpace()
[all …]
/aosp_15_r20/external/python/cpython2/Include/
Dunicodeobject.h334 #define Py_UNICODE_ISSPACE(ch) iswspace(ch) argument
336 #define Py_UNICODE_ISLOWER(ch) iswlower(ch) argument
337 #define Py_UNICODE_ISUPPER(ch) iswupper(ch) argument
338 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) argument
339 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) argument
341 #define Py_UNICODE_TOLOWER(ch) towlower(ch) argument
342 #define Py_UNICODE_TOUPPER(ch) towupper(ch) argument
343 #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch) argument
345 #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch) argument
346 #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch) argument
[all …]
/aosp_15_r20/external/python/cpython2/Objects/
Dunicodectype.c57 Py_UNICODE _PyUnicode_ToTitlecase(register Py_UNICODE ch) in _PyUnicode_ToTitlecase()
74 int _PyUnicode_IsTitlecase(Py_UNICODE ch) in _PyUnicode_IsTitlecase()
84 int _PyUnicode_ToDecimalDigit(Py_UNICODE ch) in _PyUnicode_ToDecimalDigit()
91 int _PyUnicode_IsDecimalDigit(Py_UNICODE ch) in _PyUnicode_IsDecimalDigit()
101 int _PyUnicode_ToDigit(Py_UNICODE ch) in _PyUnicode_ToDigit()
108 int _PyUnicode_IsDigit(Py_UNICODE ch) in _PyUnicode_IsDigit()
118 int _PyUnicode_IsNumeric(Py_UNICODE ch) in _PyUnicode_IsNumeric()
130 int _PyUnicode_IsLowercase(Py_UNICODE ch) in _PyUnicode_IsLowercase()
140 int _PyUnicode_IsUppercase(Py_UNICODE ch) in _PyUnicode_IsUppercase()
150 Py_UNICODE _PyUnicode_ToUppercase(Py_UNICODE ch) in _PyUnicode_ToUppercase()
[all …]
/aosp_15_r20/external/slf4j/log4j-over-slf4j/compatibility/lib/
HDlogback-core-0.9.8-SNAPSHOT.jar ... -INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback
HDlogback-classic-0.9.8-SNAPSHOT.jar ... -INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback
/aosp_15_r20/external/trusty/arm-trusted-firmware/plat/rockchip/rk3399/include/shared/
Ddram_regs.h75 #define SYS_REG_ENC_ROW_3_4(n, ch) ((n) << (30 + (ch))) argument
76 #define SYS_REG_DEC_ROW_3_4(n, ch) (((n) >> (30 + (ch))) & 0x1) argument
77 #define SYS_REG_ENC_CHINFO(ch) (1 << (28 + (ch))) argument
78 #define SYS_REG_DEC_CHINFO(n, ch) (((n) >> (28 + (ch))) & 0x1) argument
83 #define SYS_REG_ENC_RANK(n, ch) (((n) - 1) << (11 + (ch) * 16)) argument
84 #define SYS_REG_DEC_RANK(n, ch) (1 + (((n) >> (11 + (ch) * 16)) & 0x1)) argument
85 #define SYS_REG_ENC_COL(n, ch) (((n) - 9) << (9 + (ch) * 16)) argument
86 #define SYS_REG_DEC_COL(n, ch) (9 + (((n) >> (9 + (ch) * 16)) & 0x3)) argument
87 #define SYS_REG_ENC_BK(n, ch) (((n) == 3 ? 0 : 1) << (8 + (ch) * 16)) argument
88 #define SYS_REG_DEC_BK(n, ch) (3 - (((n) >> (8 + (ch) * 16)) & 0x1)) argument
[all …]
/aosp_15_r20/external/arm-trusted-firmware/plat/rockchip/rk3399/include/shared/
H A Ddram_regs.h75 #define SYS_REG_ENC_ROW_3_4(n, ch) ((n) << (30 + (ch))) argument
76 #define SYS_REG_DEC_ROW_3_4(n, ch) (((n) >> (30 + (ch))) & 0x1) argument
77 #define SYS_REG_ENC_CHINFO(ch) (1 << (28 + (ch))) argument
78 #define SYS_REG_DEC_CHINFO(n, ch) (((n) >> (28 + (ch))) & 0x1) argument
83 #define SYS_REG_ENC_RANK(n, ch) (((n) - 1) << (11 + (ch) * 16)) argument
84 #define SYS_REG_DEC_RANK(n, ch) (1 + (((n) >> (11 + (ch) * 16)) & 0x1)) argument
85 #define SYS_REG_ENC_COL(n, ch) (((n) - 9) << (9 + (ch) * 16)) argument
86 #define SYS_REG_DEC_COL(n, ch) (9 + (((n) >> (9 + (ch) * 16)) & 0x3)) argument
87 #define SYS_REG_ENC_BK(n, ch) (((n) == 3 ? 0 : 1) << (8 + (ch) * 16)) argument
88 #define SYS_REG_DEC_BK(n, ch) (3 - (((n) >> (8 + (ch) * 16)) & 0x1)) argument
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DArabicShaping.java841 char ch = dest[i]; in shapeToArabicDigitsWithContext() local
886 private static char changeLamAlef(char ch) { in changeLamAlef()
901 private static int specialChar(char ch) { in specialChar()
925 private static int getLink(char ch) { in getLink()
971 private static boolean isTashkeelChar(char ch) { in isTashkeelChar()
982 private static int isSeenTailFamilyChar(char ch) { in isSeenTailFamilyChar()
995 private static int isSeenFamilyChar(char ch){ in isSeenFamilyChar()
1010 private static boolean isTailChar(char ch) { in isTailChar()
1024 private static boolean isAlefMaksouraChar(char ch) { in isAlefMaksouraChar()
1034 private static boolean isYehHamzaChar(char ch) { in isYehHamzaChar()
[all …]
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/
H A DArabicShaping.java887 char ch = dest[i]; in shapeToArabicDigitsWithContext() local
932 private static char changeLamAlef(char ch) { in changeLamAlef()
947 private static int specialChar(char ch) { in specialChar()
971 private static int getLink(char ch) { in getLink()
1017 private static boolean isTashkeelChar(char ch) { in isTashkeelChar()
1027 private static int isSeenTailFamilyChar(char ch) { in isSeenTailFamilyChar()
1040 private static int isSeenFamilyChar(char ch){ in isSeenFamilyChar()
1054 private static boolean isTailChar(char ch) { in isTailChar()
1067 private static boolean isAlefMaksouraChar(char ch) { in isAlefMaksouraChar()
1076 private static boolean isYehHamzaChar(char ch) { in isYehHamzaChar()
[all …]
/aosp_15_r20/external/arm-trusted-firmware/drivers/renesas/common/ddr/ddr_b/
H A Dboot_init_dram.c342 #define foreach_vch(ch) \ argument
345 #define foreach_ech(ch) \ argument
624 uint32_t ch; in reg_ddrphy_write_a() local
678 static void ddr_setval_s(uint32_t ch, uint32_t slice, uint32_t _regdef, in ddr_setval_s()
702 static uint32_t ddr_getval_s(uint32_t ch, uint32_t slice, uint32_t _regdef) in ddr_getval_s()
726 static void ddr_setval(uint32_t ch, uint32_t regdef, uint32_t val) in ddr_setval()
733 uint32_t ch; in ddr_setval_ach_s() local
752 static uint32_t ddr_getval(uint32_t ch, uint32_t regdef) in ddr_getval()
759 uint32_t ch; in ddr_getval_ach() local
768 uint32_t ch, slice; in ddr_getval_ach_as() local
[all …]
/aosp_15_r20/external/trusty/arm-trusted-firmware/drivers/renesas/common/ddr/ddr_b/
Dboot_init_dram.c342 #define foreach_vch(ch) \ argument
345 #define foreach_ech(ch) \ argument
624 uint32_t ch; in reg_ddrphy_write_a() local
678 static void ddr_setval_s(uint32_t ch, uint32_t slice, uint32_t _regdef, in ddr_setval_s()
702 static uint32_t ddr_getval_s(uint32_t ch, uint32_t slice, uint32_t _regdef) in ddr_getval_s()
726 static void ddr_setval(uint32_t ch, uint32_t regdef, uint32_t val) in ddr_setval()
733 uint32_t ch; in ddr_setval_ach_s() local
752 static uint32_t ddr_getval(uint32_t ch, uint32_t regdef) in ddr_getval()
759 uint32_t ch; in ddr_getval_ach() local
768 uint32_t ch, slice; in ddr_getval_ach_as() local
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dunicodeobject.h24 #define Py_UNICODE_ISSPACE(ch) \ argument
27 #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch) argument
28 #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch) argument
29 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) argument
30 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) argument
32 #define Py_UNICODE_TOLOWER(ch) _PyUnicode_ToLowercase(ch) argument
33 #define Py_UNICODE_TOUPPER(ch) _PyUnicode_ToUppercase(ch) argument
34 #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch) argument
36 #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch) argument
37 #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch) argument
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dunicodeobject.h24 #define Py_UNICODE_ISSPACE(ch) \ argument
27 #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch) argument
28 #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch) argument
29 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) argument
30 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) argument
32 #define Py_UNICODE_TOLOWER(ch) _PyUnicode_ToLowercase(ch) argument
33 #define Py_UNICODE_TOUPPER(ch) _PyUnicode_ToUppercase(ch) argument
34 #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch) argument
36 #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch) argument
37 #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch) argument
[all …]
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dunicodeobject.h24 #define Py_UNICODE_ISSPACE(ch) \ argument
27 #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch) argument
28 #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch) argument
29 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) argument
30 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) argument
32 #define Py_UNICODE_TOLOWER(ch) _PyUnicode_ToLowercase(ch) argument
33 #define Py_UNICODE_TOUPPER(ch) _PyUnicode_ToUppercase(ch) argument
34 #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch) argument
36 #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch) argument
37 #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch) argument
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dunicodeobject.h24 #define Py_UNICODE_ISSPACE(ch) \ argument
27 #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch) argument
28 #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch) argument
29 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) argument
30 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) argument
32 #define Py_UNICODE_TOLOWER(ch) _PyUnicode_ToLowercase(ch) argument
33 #define Py_UNICODE_TOUPPER(ch) _PyUnicode_ToUppercase(ch) argument
34 #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch) argument
36 #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch) argument
37 #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch) argument
[all …]

12345678910>>...182