Searched defs:wc (Results 1 - 25 of 48) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dputwchar.c45 putwchar(wchar_t wc) argument
48 return fputwc(wc, stdout);
H A Dputwc.c45 putwc(wchar_t wc, FILE *fp) argument
48 return fputwc(wc, fp);
H A Dungetwc.c41 ungetwc(wint_t wc, FILE *fp) argument
47 if (wc == WEOF)
70 wcio->wcio_ungetwc_buf[wcio->wcio_ungetwc_inbuf++] = (wchar_t)wc;
74 return wc;
H A Dfgetws.c58 wint_t wc; local
77 wc = __fgetwc_unlock(fp);
87 *wsp++ = (wchar_t)wc;
88 if (wc == L'\n') {
H A Dfgetwc.c54 wchar_t wc; local
72 wc = wcio->wcio_ungetwc_buf[--wcio->wcio_ungetwc_inbuf];
74 return wc;
88 size = mbrtowc(&wc, &c, 1, st);
98 return wc;
H A Dfputwc.c52 __fputwc_unlock(wchar_t wc, FILE *fp) argument
82 size = wcrtomb(buf, wc, st);
95 return (wint_t)wc;
99 fputwc(wchar_t wc, FILE *fp) argument
110 r = __fputwc_unlock(wc, fp);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A D__wctoint.h33 __wctoint(wchar_t wc) argument
38 switch (wc) {
H A D_wcstol.h64 wint_t wc; local
88 wc = (wchar_t) *s++;
89 } while (iswspace(wc));
90 if (wc == L'-') {
92 wc = *s++;
95 if (wc == L'+')
96 wc = *s++;
99 wc == L'0' && (*s == L'x' || *s == L'X')) {
100 wc = s[1];
105 base = ((wc
[all...]
H A D_wcstoul.h66 wint_t wc; local
85 wc = (wchar_t) *s++;
86 } while (iswspace(wc));
87 if (wc == L'-') {
89 wc = *s++;
92 if (wc == L'+')
93 wc = *s++;
96 wc == L'0' && (*s == L'x' || *s == L'X')) {
97 wc = s[1];
102 base = wc
[all...]
/vbox/src/VBox/Runtime/common/string/
H A Dutf-16-case.cpp113 RTUTF16 wc = *pwc; local
114 if (!wc)
116 if (wc < 0xd800 || wc >= 0xdc00)
118 RTUNICP ucFolded = RTUniCpToLower(wc);
120 *pwc++ = RTUniCpToLower(wc);
128 RTUNICP uc = 0x10000 + (((wc & 0x3ff) << 10) | (wc2 & 0x3ff));
151 RTUTF16 wc = *pwc; local
152 if (!wc)
154 if (wc <
[all...]
H A Dutf-16-latin-1.cpp55 RTUTF16 wc = *pwsz++; cwc--; local
56 if (!wc)
58 else if (RT_LIKELY(wc < 0x100))
62 if (wc < 0xd800 || wc > 0xdfff)
64 if (wc >= 0xfffe)
66 RTStrAssertMsgFailed(("endian indicator! wc=%#x\n", wc));
73 if (wc >= 0xdc00)
75 RTStrAssertMsgFailed(("Wrong 1st char in surrogate! wc
121 RTUTF16 wc = *pwsz++; cwc--; local
[all...]
H A Dutf-16.cpp59 RTUTF16 wc = *pwsz; local
60 if (!wc)
62 if (wc < 0xd800 || wc > 0xdfff)
69 else if (wc >= 0xdc00)
71 RTStrAssertMsgFailed(("Lone UTF-16 trail surrogate: %#x (%.*Rhxs)\n", wc, RT_MIN(cwc * 2, 10), pwsz));
76 RTStrAssertMsgFailed(("Lone UTF-16 lead surrogate: %#x\n", wc));
84 RTStrAssertMsgFailed(("Invalid UTF-16 trail surrogate: %#x (lead %#x)\n", wcTrail, wc));
282 RTUTF16 wc = *pwsz++; cwc--; local
283 if (!wc)
349 RTUTF16 wc = *pwsz++; cwc--; local
562 const RTUTF16 wc = *pwsz; local
593 const RTUTF16 wc = **ppwsz; local
[all...]
/vbox/src/VBox/Main/src-server/win/
H A DHostPowerWin.cpp76 WNDCLASS wc; local
78 wc.style = CS_NOCLOSE;
79 wc.lpfnWndProc = HostPowerServiceWin::WndProc;
80 wc.cbClsExtra = 0;
81 wc.cbWndExtra = sizeof(void *);
82 wc.hInstance = hInstance;
83 wc.hIcon = NULL;
84 wc.hCursor = NULL;
85 wc.hbrBackground = (HBRUSH)(COLOR_BACKGROUND + 1);
86 wc
[all...]
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-shared.cpp92 WNDCLASSEX wc; local
95 wc.cbSize = sizeof(wc);
96 wc.style = CS_OWNDC;
97 wc.lpfnWndProc = (WNDPROC) vmsvga3dWndProc;
98 wc.cbClsExtra = 0;
99 wc.cbWndExtra = 0;
100 wc.hInstance = GetModuleHandle("VBoxDD.dll"); /* @todo hardcoded name.. */
101 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
102 wc
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/dbg/
H A DtstMvWnd.cpp52 WNDCLASS wc; local
53 if (!GetClassInfo(hInstance, VBOXDISPWND_NAME, &wc))
55 wc.style = CS_OWNDC;
56 wc.lpfnWndProc = WindowProc;
57 wc.cbClsExtra = 0;
58 wc.cbWndExtra = 0;
59 wc.hInstance = hInstance;
60 wc.hIcon = NULL;
61 wc.hCursor = NULL;
62 wc
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A DipcConnectionWin.cpp149 WNDCLASS wc; local
150 memset(&wc, 0, sizeof(wc));
151 wc.lpfnWndProc = ipcThreadWindowProc;
152 wc.lpszClassName = IPC_CLIENT_WINDOW_CLASS;
153 RegisterClass(&wc);
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcdWin.cpp361 WNDCLASS wc; local
362 memset(&wc, 0, sizeof(wc));
363 wc.lpfnWndProc = WindowProc;
364 wc.lpszClassName = IPC_WINDOW_CLASS;
366 RegisterClass(&wc);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Console/
H A DdaConsole.c59 wint_t wc; local
62 wc = btowc(*buf++);
63 if( wc == 0) {
66 if(wc < 0) {
67 wc = BLOCKELEMENT_LIGHT_SHADE;
69 if(wc == L'\n') {
72 *dest++ = (CHAR16)wc;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dwined3d_main.c170 WNDCLASSA wc; local
190 wc.style = CS_HREDRAW | CS_VREDRAW;
191 wc.lpfnWndProc = DefWindowProcA;
192 wc.cbClsExtra = 0;
193 wc.cbWndExtra = 0;
194 wc.hInstance = hInstDLL;
195 wc.hIcon = LoadIconA(NULL, (LPCSTR)IDI_WINLOGO);
196 wc.hCursor = LoadCursorA(NULL, (LPCSTR)IDC_ARROW);
197 wc.hbrBackground = NULL;
198 wc
[all...]
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxClipboard.cpp547 WNDCLASS wc; local
549 wc.style = CS_NOCLOSE;
550 wc.lpfnWndProc = vboxClipboardWndProc;
551 wc.cbClsExtra = 0;
552 wc.cbWndExtra = 0;
553 wc.hInstance = pCtx->pEnv->hInstance;
554 wc.hIcon = NULL;
555 wc.hCursor = NULL;
556 wc.hbrBackground = (HBRUSH)(COLOR_BACKGROUND + 1);
557 wc
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Dsymlink-win.cpp161 RTUTF16 wc; local
163 while ((wc = *pwsz) != '\0')
165 if (wc == '/')
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/public/
H A Dxptcall.h118 PRUnichar wc; member in union:nsXPTCMiniVariant::__anon17322
195 case nsXPTType::T_WCHAR: val.wc = mv.val.wc; break;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dmisc.c281 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;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dstdio.h265 static inline wint_t fputwchar(wint_t wc) { return _fputwchar(wc); } argument
/vbox/src/VBox/HostServices/SharedClipboard/
H A DVBoxClipboard-win.cpp505 WNDCLASS wc; local
507 wc.style = CS_NOCLOSE;
508 wc.lpfnWndProc = vboxClipboardWndProc;
509 wc.cbClsExtra = 0;
510 wc.cbWndExtra = 0;
511 wc.hInstance = hInstance;
512 wc.hIcon = NULL;
513 wc.hCursor = NULL;
514 wc.hbrBackground = (HBRUSH)(COLOR_BACKGROUND + 1);
515 wc
[all...]

Completed in 180 milliseconds

12