/device/linaro/bootloader/edk2/StdLib/LibC/Locale/ |
D | _wcstoul.h | 66 wint_t wc; in _FUNCNAME() local 85 wc = (wchar_t) *s++; in _FUNCNAME() 86 } while (iswspace(wc)); in _FUNCNAME() 87 if (wc == L'-') { in _FUNCNAME() 89 wc = *s++; in _FUNCNAME() 92 if (wc == L'+') in _FUNCNAME() 93 wc = *s++; in _FUNCNAME() 96 wc == L'0' && (*s == L'x' || *s == L'X')) { in _FUNCNAME() 97 wc = s[1]; in _FUNCNAME() 102 base = wc == L'0' ? 8 : 10; in _FUNCNAME() [all …]
|
D | _wcstol.h | 64 wint_t wc; in _FUNCNAME() local 88 wc = (wchar_t) *s++; in _FUNCNAME() 89 } while (iswspace(wc)); in _FUNCNAME() 90 if (wc == L'-') { in _FUNCNAME() 92 wc = *s++; in _FUNCNAME() 95 if (wc == L'+') in _FUNCNAME() 96 wc = *s++; in _FUNCNAME() 99 wc == L'0' && (*s == L'x' || *s == L'X')) { in _FUNCNAME() 100 wc = s[1]; in _FUNCNAME() 105 base = ((wc == L'0') ? 8 : 10); in _FUNCNAME() [all …]
|
D | __wctoint.h | 33 __wctoint(wchar_t wc) in __wctoint() argument 38 switch (wc) { in __wctoint()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/ |
D | IIOwrite.c | 58 wchar_t wc[MAX_EXPANSION]; // Sub-buffer for conversions in IIO_WriteOne() local 68 wcb = wc; in IIO_WriteOne() 96 wc[0] = L' '; in IIO_WriteOne() 101 wc[0] = InCh; // Send the TAB itself - assumes that it does not move cursor. in IIO_WriteOne() 112 wc[0] = CHAR_CARRIAGE_RETURN; in IIO_WriteOne() 123 wc[0] = CHAR_CARRIAGE_RETURN; in IIO_WriteOne() 124 wc[1] = CHAR_LINEFEED; in IIO_WriteOne() 132 wc[0] = CHAR_BACKSPACE; in IIO_WriteOne() 151 wc[1] = InCh + L'@'; in IIO_WriteOne() 152 wc[0] = L'^'; in IIO_WriteOne() [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
D | ungetwc.c | 41 ungetwc(wint_t wc, FILE *fp) in ungetwc() argument 47 if (wc == WEOF) in ungetwc() 70 wcio->wcio_ungetwc_buf[wcio->wcio_ungetwc_inbuf++] = (wchar_t)wc; in ungetwc() 74 return wc; in ungetwc()
|
D | fputwc.c | 52 __fputwc_unlock(wchar_t wc, FILE *fp) in __fputwc_unlock() argument 82 size = wcrtomb(buf, wc, st); in __fputwc_unlock() 94 return (wint_t)wc; in __fputwc_unlock() 98 fputwc(wchar_t wc, FILE *fp) in fputwc() argument 109 r = __fputwc_unlock(wc, fp); in fputwc()
|
D | fgetwc.c | 54 wchar_t wc; in __fgetwc_unlock() local 72 wc = wcio->wcio_ungetwc_buf[--wcio->wcio_ungetwc_inbuf]; in __fgetwc_unlock() 74 return wc; in __fgetwc_unlock() 88 size = mbrtowc(&wc, &c, 1, st); in __fgetwc_unlock() 98 return wc; in __fgetwc_unlock()
|
D | fgetws.c | 58 wint_t wc; in fgetws() local 77 wc = __fgetwc_unlock(fp); in fgetws() 87 *wsp++ = (wchar_t)wc; in fgetws() 88 if (wc == L'\n') { in fgetws()
|
D | putwchar.c | 45 putwchar(wchar_t wc) in putwchar() argument 48 return fputwc(wc, stdout); in putwchar()
|
D | putwc.c | 45 putwc(wchar_t wc, FILE *fp) in putwc() argument 48 return fputwc(wc, fp); in putwc()
|
D | vfwprintf.c | 200 __xfputwc(wchar_t wc, FILE *fp) in __xfputwc() argument 210 return (__fputwc_unlock(wc, fp)); in __xfputwc() 213 if ((len = wcrtomb(buf, wc, &mbs)) == (size_t)-1) { in __xfputwc() 222 return (__sfvwrite(fp, &uio) != EOF ? (wint_t)wc : END_OF_FILE); in __xfputwc()
|
/device/google/crosshatch/fuzzy_fastboot/ |
D | test.sh | 21 RADIO_SIZE=$(wc -c <"$RADIO_PATH") 22 BOOTLOADER_SIZE=$(wc -c <"$BOOTLOADER_PATH")
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/tools/ |
D | elftobin.sh | 48 size_sec[${i}]=$(cat $VARBIN | wc -c) 61 tmp1=$(cat $OUTPUT_BIN_FILE | wc -c)
|
/device/common/ |
D | generate-blob-lists.sh | 86 …if test $(wc -l < $ARCHIVEDIR/$DEVICENAME-without.txt) != 0 -a $(wc -l < $ARCHIVEDIR/$DEVICENAME-w…
|
D | generate-packages.sh | 167 …2 + $(cat PROLOGUE $COMPANY/COPYRIGHT PART1 $COMPANY/LICENSE PART2 PART3 | wc -l)) \$0 \| tar zxv …
|
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/ |
D | misc.c | 281 int k, wa, wb, wc; local 301 wc = wa + wb; 302 if (wc > a->maxwds) 307 for(x = c->x, xa = x + wc; x < xa; x++) 381 for(xc0 = c->x, xc = xc0 + wc; wc > 0 && !*--xc; --wc) ; 382 c->wds = wc;
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Console/ |
D | daConsole.c | 85 wchar_t wc[2]; in WideTtyCvt() local 88 numB = (int)mbrtowc(wc, buf, MIN(MB_LEN_MAX,n), Cs); in WideTtyCvt() 93 wc[0] = BLOCKELEMENT_LIGHT_SHADE; in WideTtyCvt() 96 if(wc[0] == L'\n') { in WideTtyCvt() 100 *dest++ = (CHAR16)wc[0]; in WideTtyCvt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | dtoa.c | 615 int k, wa, wb, wc; in mult() local 642 wc = wa + wb; in mult() 643 if (wc > a->maxwds) in mult() 648 for(x = c->x, xa = x + wc; x < xa; x++) in mult() 703 for(xc0 = c->x, xc = xc0 + wc; wc > 0 && !*--xc; --wc) ; in mult() 704 c->wds = wc; in mult()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | dtoa.c | 632 int k, wa, wb, wc; in mult() local 659 wc = wa + wb; in mult() 660 if (wc > a->maxwds) in mult() 665 for(x = c->x, xa = x + wc; x < xa; x++) in mult() 720 for(xc0 = c->x, xc = xc0 + wc; wc > 0 && !*--xc; --wc) ; in mult() 721 c->wds = wc; in mult()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/ |
D | msilib.py | 316 wc = 2 # long file names, compressed, original media 318 wc = 2 | 8 # +never invoke UAC 319 si.SetProperty(PID_WORDCOUNT, wc)
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | wchar.h | 1483 size_t wcrtomb(char * __restrict S, wchar_t wc, mbstate_t * __restrict ps);
|
/device/google/crosshatch/acdbdata/OEM/sdm845-tavil-c1-snd-card/ |
D | workspaceFile.qwsp | 1 …fw4Ulli7rZASFxh+worv9QsC8R2LE3dvYjp8Woq4c9fx15XoddV6CHuq6vQY7+yBxS6ab7caBy/wc/XoPhRGEngl/SzRa+kXTJ…
|