HomeSort by relevance Sort by last modified time
    Searched refs:_uConvT (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
CConv.c 69 return (islower(_c) ? _uConvT[_c] : _c);
iCtype.c 294 const UINT8 *_uConvT = _C_ToUpperTable;
307 _uConvT = _C_ToUpperTable;
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
_ctype.h 22 extern const UINT8 *_uConvT; ///< Locale independent pointer to Lowercase to Uppercase Conversion Table.
53 #define __toUpper( _c) ((__isCClass( ((int)_c), (_CL))) ? _uConvT[(_c)] : (_c))
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
ctypeio.c 121 if (_uConvT != _C_ToUpperTable)
122 free(__UNCONST(_uConvT));
123 _uConvT = new_toupper;
setlocale.c 261 if (_uConvT != _C_ToUpperTable) {
263 free((void *)_uConvT);
264 _uConvT = _C_ToUpperTable;

Completed in 1754 milliseconds