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

  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
IIOwrite.c 39 @param[in] InCh The wide character to process.
52 IIO_WriteOne(struct __filedes *filp, cFIFO *OBuf, wchar_t InCh)
84 switch(InCh) {
101 wc[0] = InCh; // Send the TAB itself - assumes that it does not move cursor.
118 InCh = CHAR_LINEFEED;
148 if((InCh >= 0) && (InCh < L' ')) {
149 // InCh contains a control character
151 wc[1] = InCh + L'@';
162 wc[0] = InCh;
    [all...]
IIOecho.c 33 If character InCh is a special "echo control" character, process it and output
38 @param[in] InCh The wide character to be echoed.
51 wchar_t InCh,
74 switch(InCh) {
123 (void)InBuf->Write(InBuf, &InCh, 1);
129 ((LFlags & ECHONL) && (InCh == CHAR_LINEFEED))))
131 NumEcho = IIO_WriteOne(filp, OutBuf, InCh);
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
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/LibC/Locale/
multibyte_Utf8.c 243 @param[in] InCh Wide character to test.
246 @retval 0 InCh is 0x0000
251 OneWcToMcLen(const wchar_t InCh)
255 if(InCh == 0) { // Is this a NUL, 0x0000 ?
258 else if(InCh < 0x0080) { // Is this a 1-byte character?
261 else if(InCh < 0x0800) { // Is this a 2-byte character?
264 else if((InCh >= 0xD800) && (InCh < 0xE000)) { // Is this a surrogate?
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
stdlib.h     [all...]

Completed in 568 milliseconds