Home
last modified time | relevance | path

Searched refs:EChar (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Locale/
Dmultibyte_Utf8.c306 wchar_t EChar; in EstimateWtoM() local
310 EChar = *Src++; // Get the initial character and point to next in EstimateWtoM()
311 while(((NumBytes = OneWcToMcLen(EChar)) > 0) && in EstimateWtoM()
316 EChar = *Src++; // Get the next source character and point to the next. in EstimateWtoM()
346 char EChar; in CountMbcsChars() local
349 EChar = *Src++; in CountMbcsChars()
350 while(EChar != 0) { in CountMbcsChars()
351 if(EChar < 0x80) { in CountMbcsChars()
354 else if(EChar < 0xE0) { in CountMbcsChars()
358 else if(EChar < 0xF0) { in CountMbcsChars()
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
DIIO.c265 wchar_t EChar, in IIO_Echo() argument
282 if((EChar >= TtyFunKeyMin) && (EChar < TtyFunKeyMax)) { in IIO_Echo()
285 NumProc = IIO_EchoOne(filp, EChar, FALSE); // Don't echo this character in IIO_Echo()
286 EChar = CHAR_LINEFEED; // Every line must end with '\n' (legacy) in IIO_Echo()
289 NumProc = IIO_EchoOne(filp, EChar, EchoIsOK); in IIO_Echo()
296 if((EChar == IIO_ECHO_KILL) && (LFlags & ECHOE) && EchoIsOK) { in IIO_Echo()
321 if(EChar == IIO_ECHO_KILL) { in IIO_Echo()
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
DIIO.h34 typedef ssize_t (EFIAPI *cIIO_Echo) (struct __filedes *filp, wchar_t EChar, BOOLEAN EchoIsOK);