Home
last modified time | relevance | path

Searched defs:_c (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/Include/sys/
D_ctype.h51 #define __isCClass( _c, mask) (((_c) < 0 || (_c) > 127) ? 0 : (_cClass[(_c)] & (mask))) argument
52 #define __toLower( _c) ((__isCClass( ((int)_c), (_CU))) ? _lConvT[(_c)] : (_c)) argument
53 #define __toUpper( _c) ((__isCClass( ((int)_c), (_CL))) ? _uConvT[(_c)] : (_c)) argument
57 #define __isHexLetter(_c) (__isCClass( (int)c, (_CX))) argument
/device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
DCConv.c46 IN int _c in tolower()
66 IN int _c in toupper()
DCClass.c32 IN int _c, in __isCClass()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dgeneric.h73 typedef struct _c { struct
74 int croot; /* cycle root */
75 set cyclicDep; /* cyclic dependents */
76 unsigned deg; /* degree of FOLLOW set of croot */
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
DEfiVariable.h64 #define IS_VARIABLE_STATE(_c, _Mask) (BOOLEAN) (((~_c) & (~_Mask)) != 0) argument
/device/google/contexthub/firmware/os/core/
Dprintf.c199 #define putc_(_ud,_c) \ in cvprintf() argument
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
Drexpr.c109 static char *_c; variable
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dvfwscanf.c118 #define INCCL(_c) \ argument
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Include/Library/
DGenericBdsLib.h57 #define IS_LOAD_OPTION_TYPE(_c, _Mask) (BOOLEAN) (((_c) & (_Mask)) != 0) argument
/device/linaro/bootloader/edk2/StdLib/Include/
Dstdio.h1575 static __inline int __sputc(int _c, FILE *_p) { in __sputc()