Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dbytes_methods.h39 #define ISLOWER(c) Py_ISLOWER(c) argument
40 #define ISUPPER(c) Py_ISUPPER(c) argument
41 #define ISALPHA(c) Py_ISALPHA(c) argument
42 #define ISDIGIT(c) Py_ISDIGIT(c) argument
43 #define ISXDIGIT(c) Py_ISXDIGIT(c) argument
44 #define ISALNUM(c) Py_ISALNUM(c) argument
45 #define ISSPACE(c) Py_ISSPACE(c) argument
48 #define islower(c) undefined_islower(c) argument
50 #define isupper(c) undefined_isupper(c) argument
52 #define isalpha(c) undefined_isalpha(c) argument
[all …]
Dpyctype.h17 #define Py_ISLOWER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_LOWER) argument
18 #define Py_ISUPPER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_UPPER) argument
19 #define Py_ISALPHA(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA) argument
20 #define Py_ISDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT) argument
21 #define Py_ISXDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_XDIGIT) argument
22 #define Py_ISALNUM(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM) argument
23 #define Py_ISSPACE(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE) argument
28 #define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)]) argument
29 #define Py_TOUPPER(c) (_Py_ctype_toupper[Py_CHARMASK(c)]) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dbytes_methods.h39 #define ISLOWER(c) Py_ISLOWER(c) argument
40 #define ISUPPER(c) Py_ISUPPER(c) argument
41 #define ISALPHA(c) Py_ISALPHA(c) argument
42 #define ISDIGIT(c) Py_ISDIGIT(c) argument
43 #define ISXDIGIT(c) Py_ISXDIGIT(c) argument
44 #define ISALNUM(c) Py_ISALNUM(c) argument
45 #define ISSPACE(c) Py_ISSPACE(c) argument
48 #define islower(c) undefined_islower(c) argument
50 #define isupper(c) undefined_isupper(c) argument
52 #define isalpha(c) undefined_isalpha(c) argument
[all …]
Dpyctype.h17 #define Py_ISLOWER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_LOWER) argument
18 #define Py_ISUPPER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_UPPER) argument
19 #define Py_ISALPHA(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA) argument
20 #define Py_ISDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT) argument
21 #define Py_ISXDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_XDIGIT) argument
22 #define Py_ISALNUM(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM) argument
23 #define Py_ISSPACE(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE) argument
28 #define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)]) argument
29 #define Py_TOUPPER(c) (_Py_ctype_toupper[Py_CHARMASK(c)]) argument
/device/linaro/bootloader/edk2/StdLib/Include/
Dctype.h224 #define isalnum(c) (__isCClass( (int)c, (_CD | _CU | _CL | _XA))) argument
225 #define isalpha(c) (__isCClass( (int)c, (_CU | _CL | _XA))) argument
226 #define iscntrl(c) (__isCClass( (int)c, (_CC))) argument
227 #define isdigit(c) (__isCClass( (int)c, (_CD))) argument
228 #define isgraph(c) (__isCClass( (int)c, (_CG))) argument
229 #define islower(c) (__isCClass( (int)c, (_CL))) argument
230 #define isprint(c) (__isCClass( (int)c, (_CS | _CG))) argument
231 #define ispunct(c) (__isCClass( (int)c, (_CP))) argument
232 #define isspace(c) (__isCClass( (int)c, (_CW))) argument
233 #define isupper(c) (__isCClass( (int)c, (_CU))) argument
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
DCClass.c49 IN int c in isalnum()
68 IN int c in isalpha()
83 IN int c in iscntrl()
98 IN int c in isdigit()
113 IN int c in isgraph()
131 IN int c in islower()
146 IN int c in isprint()
164 IN int c in ispunct()
184 IN int c in isspace()
202 IN int c in isupper()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlctype.h52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) argument
57 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument
58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) argument
59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument
60 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument
61 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument
62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument
67 #define ltolower(c) ((c) | ('A' ^ 'a')) argument
83 #define lislalpha(c) (isalpha(c) || (c) == '_') argument
84 #define lislalnum(c) (isalnum(c) || (c) == '_') argument
[all …]
/device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/
Dint_const.h48 #define INT8_C(c) c argument
49 #define INT16_C(c) c argument
50 #define INT32_C(c) c argument
51 #define INT64_C(c) c ## LL argument
53 #define UINT8_C(c) c ## U argument
54 #define UINT16_C(c) c ## U argument
55 #define UINT32_C(c) c ## U argument
56 #define UINT64_C(c) c ## ULL argument
60 #define INTMAX_C(c) c ## LL argument
61 #define UINTMAX_C(c) c ## ULL argument
/device/linaro/bootloader/edk2/StdLib/Include/Ia32/machine/
Dint_const.h48 #define INT8_C(c) c argument
49 #define INT16_C(c) c argument
50 #define INT32_C(c) c argument
51 #define INT64_C(c) c ## LL argument
53 #define UINT8_C(c) c ## U argument
54 #define UINT16_C(c) c ## U argument
55 #define UINT32_C(c) c ## U argument
56 #define UINT64_C(c) c ## ULL argument
60 #define INTMAX_C(c) c ## LL argument
61 #define UINTMAX_C(c) c ## ULL argument
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
Dctype.h45 #define isspace(c) ((c) == ' ' || ((c) >= '\t' && (c) <= '\r')) argument
46 #define isascii(c) (((c) & ~0x7f) == 0) argument
47 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') argument
48 #define islower(c) ((c) >= 'a' && (c) <= 'z') argument
49 #define isalpha(c) (isupper(c) || islower(c)) argument
50 #define isdigit(c) ((c) >= '0' && (c) <= '9') argument
51 #define isxdigit(c) (isdigit(c) \ argument
54 #define isprint(c) ((c) >= ' ' && (c) <= '~') argument
56 #define toupper(c) ((c) - 0x20 * (((c) >= 'a') && ((c) <= 'z'))) argument
57 #define tolower(c) ((c) + 0x20 * (((c) >= 'A') && ((c) <= 'Z'))) argument
/device/linaro/bootloader/edk2/StdLib/Include/X64/machine/
Dint_const.h48 #define INT8_C(c) c argument
49 #define INT16_C(c) c argument
50 #define INT32_C(c) c argument
51 #define INT64_C(c) c ## LL argument
53 #define UINT8_C(c) c ## U argument
54 #define UINT16_C(c) c ## U argument
55 #define UINT32_C(c) c ## U argument
56 #define UINT64_C(c) c ## ULL argument
60 #define INTMAX_C(c) c ## LL argument
61 #define UINTMAX_C(c) c ## ULL argument
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
Dint_const.h49 #define INT8_C(c) c argument
50 #define INT16_C(c) c argument
51 #define INT32_C(c) c argument
52 #define INT64_C(c) c ## L argument
54 #define UINT8_C(c) c ## U argument
55 #define UINT16_C(c) c ## U argument
56 #define UINT32_C(c) c ## U argument
57 #define UINT64_C(c) c ## UL argument
61 #define INTMAX_C(c) c ## L argument
62 #define UINTMAX_C(c) c ## UL argument
/device/linaro/bootloader/edk2/StdLib/Include/Aarch64/machine/
Dint_const.h48 #define INT8_C(c) c argument
49 #define INT16_C(c) c argument
50 #define INT32_C(c) c argument
51 #define INT64_C(c) c ## LL argument
53 #define UINT8_C(c) c ## U argument
54 #define UINT16_C(c) c ## U argument
55 #define UINT32_C(c) c ## U argument
56 #define UINT64_C(c) c ## ULL argument
60 #define INTMAX_C(c) c ## LL argument
61 #define UINTMAX_C(c) c ## ULL argument
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/
Diswctype_sb.c60 iswalnum(wint_t c) in iswalnum()
67 iswalpha(wint_t c) in iswalpha()
74 iswblank(wint_t c) in iswblank()
81 iswcntrl(wint_t c) in iswcntrl()
88 iswdigit(wint_t c) in iswdigit()
95 iswgraph(wint_t c) in iswgraph()
102 iswlower(wint_t c) in iswlower()
109 iswprint(wint_t c) in iswprint()
116 iswpunct(wint_t c) in iswpunct()
123 iswspace(wint_t c) in iswspace()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
Dalg_jisx0201.h1 #define JISX0201_R_ENCODE(c, assi) \ argument
6 #define JISX0201_K_ENCODE(c, assi) \ argument
9 #define JISX0201_ENCODE(c, assi) \ argument
13 #define JISX0201_R_DECODE(c, assi) \ argument
19 #define JISX0201_K_DECODE(c, assi) \ argument
22 #define JISX0201_DECODE(c, assi) \ argument
D_codecs_jp.c23 Py_UNICODE c = IN1; in ENCODER() local
86 unsigned char c = IN1, c2; in DECODER() local
150 ucs4_t c = IN1; in ENCODER() local
237 unsigned char c = IN1; in DECODER() local
319 Py_UNICODE c = IN1; in ENCODER() local
370 unsigned char c = IN1; in DECODER() local
436 Py_UNICODE c = IN1; in ENCODER() local
489 unsigned char c = IN1; in DECODER() local
544 ucs4_t c = IN1; in ENCODER() local
637 unsigned char c = IN1; in DECODER() local
D_codecs_tw.c17 Py_UNICODE c = **inbuf; in ENCODER() local
44 unsigned char c = IN1; in DECODER() local
72 Py_UNICODE c = IN1; in ENCODER() local
98 unsigned char c = IN1; in DECODER() local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
Dalg_jisx0201.h1 #define JISX0201_R_ENCODE(c, assi) \ argument
6 #define JISX0201_K_ENCODE(c, assi) \ argument
9 #define JISX0201_ENCODE(c, assi) \ argument
13 #define JISX0201_R_DECODE(c, assi) \ argument
19 #define JISX0201_K_DECODE(c, assi) \ argument
22 #define JISX0201_DECODE(c, assi) \ argument
D_codecs_jp.c23 Py_UNICODE c = IN1; in ENCODER() local
86 unsigned char c = IN1, c2; in DECODER() local
150 ucs4_t c = IN1; in ENCODER() local
237 unsigned char c = IN1; in DECODER() local
319 Py_UNICODE c = IN1; in ENCODER() local
370 unsigned char c = IN1; in DECODER() local
436 Py_UNICODE c = IN1; in ENCODER() local
489 unsigned char c = IN1; in DECODER() local
544 ucs4_t c = IN1; in ENCODER() local
637 unsigned char c = IN1; in DECODER() local
D_codecs_tw.c17 Py_UNICODE c = **inbuf; in ENCODER() local
44 unsigned char c = IN1; in DECODER() local
72 Py_UNICODE c = IN1; in ENCODER() local
98 unsigned char c = IN1; in DECODER() local
D_codecs_cn.c46 Py_UNICODE c = IN1; in ENCODER() local
74 unsigned char c = **inbuf; in DECODER() local
102 Py_UNICODE c = IN1; in ENCODER() local
131 unsigned char c = IN1; in DECODER() local
160 ucs4_t c = IN1; in ENCODER() local
248 unsigned char c = IN1, c2; in DECODER() local
332 Py_UNICODE c = IN1; in ENCODER() local
385 unsigned char c = IN1; in DECODER() local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DNewInstances.py5 class c(object): class
20 class c(object): class
24 def __init__(self,a,b,c): argument
30 def __init__(self,a,b,c=4): argument
56 class c(object): class
60 def __init__(self,a,b,c): argument
66 def __init__(self,a,b,c=4): argument
DLookups.py11 class c: class
178 class c: class
192 class c: class
364 class c: class
378 class c: class
551 class c: class
566 class c: class
739 class c: class
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c121 ast_warn(struct compiling *c, const node *n, char *msg) in ast_warn()
134 forbidden_check(struct compiling *c, const node *n, const char *x) in forbidden_check()
223 struct compiling c; in PyAST_FromNode() local
370 set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n) in set_context()
488 ast_for_augassign(struct compiling *c, const node *n) in ast_for_augassign()
526 ast_for_comp_op(struct compiling *c, const node *n) in ast_for_comp_op()
578 seq_for_testlist(struct compiling *c, const node *n) in seq_for_testlist()
608 compiler_complex_args(struct compiling *c, const node *n) in compiler_complex_args()
663 ast_for_arguments(struct compiling *c, const node *n) in ast_for_arguments()
804 ast_for_dotted_name(struct compiling *c, const node *n) in ast_for_dotted_name()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c121 ast_warn(struct compiling *c, const node *n, char *msg) in ast_warn()
134 forbidden_check(struct compiling *c, const node *n, const char *x) in forbidden_check()
223 struct compiling c; in PyAST_FromNode() local
370 set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n) in set_context()
488 ast_for_augassign(struct compiling *c, const node *n) in ast_for_augassign()
526 ast_for_comp_op(struct compiling *c, const node *n) in ast_for_comp_op()
578 seq_for_testlist(struct compiling *c, const node *n) in seq_for_testlist()
608 compiler_complex_args(struct compiling *c, const node *n) in compiler_complex_args()
663 ast_for_arguments(struct compiling *c, const node *n) in ast_for_arguments()
804 ast_for_dotted_name(struct compiling *c, const node *n) in ast_for_dotted_name()
[all …]

12345678910>>...19