Searched refs:InCh (Results 1 – 5 of 5) sorted by relevance
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/ |
D | IIOwrite.c | 52 IIO_WriteOne(struct __filedes *filp, cFIFO *OBuf, wchar_t InCh) in IIO_WriteOne() argument 84 switch(InCh) { in IIO_WriteOne() 101 wc[0] = InCh; // Send the TAB itself - assumes that it does not move cursor. in IIO_WriteOne() 118 InCh = CHAR_LINEFEED; in IIO_WriteOne() 148 if((InCh >= 0) && (InCh < L' ')) { in IIO_WriteOne() 151 wc[1] = InCh + L'@'; in IIO_WriteOne() 162 wc[0] = InCh; in IIO_WriteOne() 189 wc[0] = InCh; in IIO_WriteOne()
|
D | IIOecho.c | 51 wchar_t InCh, in IIO_EchoOne() argument 74 switch(InCh) { in IIO_EchoOne() 123 (void)InBuf->Write(InBuf, &InCh, 1); in IIO_EchoOne() 129 ((LFlags & ECHONL) && (InCh == CHAR_LINEFEED)))) in IIO_EchoOne() 131 NumEcho = IIO_WriteOne(filp, OutBuf, InCh); in IIO_EchoOne()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/ |
D | multibyte_Utf8.c | 251 OneWcToMcLen(const wchar_t InCh) in OneWcToMcLen() argument 255 if(InCh == 0) { // Is this a NUL, 0x0000 ? in OneWcToMcLen() 258 else if(InCh < 0x0080) { // Is this a 1-byte character? in OneWcToMcLen() 261 else if(InCh < 0x0800) { // Is this a 2-byte character? in OneWcToMcLen() 264 else if((InCh >= 0xD800) && (InCh < 0xE000)) { // Is this a surrogate? in OneWcToMcLen() 903 wchar_t InCh; in wcsrtombs() local 922 while ((MaxBytes > 0) && (OneWcToMcLen(InCh = *(*Src)++) <= MaxBytes)) { in wcsrtombs() 923 if(InCh == 0) { in wcsrtombs() 928 count = (int)wcrtomb(Dest, InCh, NULL); in wcsrtombs()
|
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/ |
D | IIO.h | 77 ssize_t IIO_WriteOne (struct __filedes *filp, cFIFO *Buf, wchar_t InCh); 78 ssize_t IIO_EchoOne (struct __filedes *filp, wchar_t InCh, BOOLEAN EchoIsOK);
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | stdlib.h | 920 OneWcToMcLen(const wchar_t InCh);
|