Searched refs:_c (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | _ctype.h | 25 extern int __isCClass( int _c, unsigned int mask); ///< Internal character classification funct… 51 #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/ |
D | CConv.c | 46 IN int _c in tolower() argument 49 return (isupper(_c) ? _lConvT[_c] : _c); in tolower() 66 IN int _c in toupper() argument 69 return (islower(_c) ? _uConvT[_c] : _c); in toupper()
|
D | CClass.c | 32 IN int _c, in __isCClass() argument 36 return ((_c < 0 || _c > 127) ? 0 : (_cClass[_c] & mask)); in __isCClass()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/ |
D | rexpr.c | 109 static char *_c; variable 132 _c = expr; 382 while ( *_c==' ' || *_c=='\t' || *_c=='\n' ) _c++; in next() 383 if ( *_c=='\\' ) in next() 385 _c++; in next() 386 if ( isdigit(*_c) ) in next() 389 while ( isdigit(*_c) ) in next() 391 n = n*10 + (*_c++ - '0'); in next() 398 switch (*_c) in next() 403 default : tokchar = *_c; in next() [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/ |
D | EfiVariable.h | 64 #define IS_VARIABLE_STATE(_c, _Mask) (BOOLEAN) (((~_c) & (~_Mask)) != 0) argument
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | stdio.h | 1575 static __inline int __sputc(int _c, FILE *_p) { in __sputc() argument 1576 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) in __sputc() 1577 return (*_p->_p++ = _c); in __sputc() 1579 return (__swbuf(_c, _p)); in __sputc()
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Include/Library/ |
D | GenericBdsLib.h | 57 #define IS_LOAD_OPTION_TYPE(_c, _Mask) (BOOLEAN) (((_c) & (_Mask)) != 0) argument
|
/device/google/contexthub/firmware/os/core/ |
D | printf.c | 199 #define putc_(_ud,_c) \ in cvprintf() argument 201 if (!putc_f(_ud,_c)) \ in cvprintf()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | generic.h | 73 typedef struct _c { struct
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
D | vfwscanf.c | 118 #define INCCL(_c) \ argument 119 (cclcompl ? (wmemchr(ccls, (_c), (size_t)(ccle - ccls)) == NULL) : \ 120 (wmemchr(ccls, (_c), (size_t)(ccle - ccls)) != NULL))
|