Searched defs:_c (Results 1 – 10 of 10) sorted by relevance
51 #define __isCClass( _c, mask) (((_c) < 0 || (_c) > 127) ? 0 : (_cClass[(_c)] & (mask))) argument52 #define __toLower( _c) ((__isCClass( ((int)_c), (_CU))) ? _lConvT[(_c)] : (_c)) argument53 #define __toUpper( _c) ((__isCClass( ((int)_c), (_CL))) ? _uConvT[(_c)] : (_c)) argument57 #define __isHexLetter(_c) (__isCClass( (int)c, (_CX))) argument
46 IN int _c in tolower()66 IN int _c in toupper()
32 IN int _c, in __isCClass()
73 typedef struct _c { struct74 int croot; /* cycle root */75 set cyclicDep; /* cyclic dependents */76 unsigned deg; /* degree of FOLLOW set of croot */
64 #define IS_VARIABLE_STATE(_c, _Mask) (BOOLEAN) (((~_c) & (~_Mask)) != 0) argument
199 #define putc_(_ud,_c) \ in cvprintf() argument
109 static char *_c; variable
118 #define INCCL(_c) \ argument
57 #define IS_LOAD_OPTION_TYPE(_c, _Mask) (BOOLEAN) (((_c) & (_Mask)) != 0) argument
1575 static __inline int __sputc(int _c, FILE *_p) { in __sputc()