/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/ |
H A D | VBoxPrintChar.c | 37 * @param ch The char to print. 39 size_t VBoxPrintChar(int ch) argument 41 ASMOutU8(EFI_DEBUG_PORT, (uint8_t)ch);
|
H A D | VBoxPrintHex.c | 38 * @param ch The char to print. 40 DECLINLINE(void) vboxPrintHexChar(int ch) argument 42 ASMOutU8(EFI_DEBUG_PORT, (uint8_t)ch);
|
H A D | VBoxPrintHexDump.c | 40 * @param ch The char to print. 42 DECLINLINE(int) vboxPrintHexDumpChar(int ch) argument 44 ASMOutU8(EFI_DEBUG_PORT, (uint8_t)ch);
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/sysevent/ |
H A D | tst.post_chan.c | 32 evchan_t *ch; local 34 if (sysevent_evc_bind("channel_dtest", &ch, 41 if (sysevent_evc_publish(ch, "class_dtest", "subclass_dtest", 43 (void) sysevent_evc_unbind(ch);
|
/vbox/src/VBox/Runtime/common/string/ |
H A D | memchr.cpp | 37 * @returns Pointer to the first instance of ch in pv. 38 * @returns NULL if ch wasn't found. 40 * @param ch The character to search for. 45 _CRTIMP __checkReturn _CONST_RETURN void * __cdecl memchr( __in_bcount_opt(_MaxCount) const void * pv, __in int ch, __in size_t cb) variable 47 void *memchr(const void *pv, int ch, size_t cb) 50 void *memchr(const void *pv, int ch, size_t cb) 57 if (*pu8 == ch)
|
H A D | memchr_alias.c | 40 extern void *(memchr)(const void *pv, int ch, size_t cb) argument 42 return RT_NOCRT(memchr)(pv, ch, cb);
|
H A D | memset_alias.c | 40 extern void *(memset)(void *pvDst, int ch, size_t cb) argument 42 return RT_NOCRT(memset)(pvDst, ch, cb);
|
H A D | strchr_alias.c | 40 extern char *(strchr)(const char *psz, int ch) argument 42 return RT_NOCRT(strchr)(psz, ch);
|
H A D | memset.cpp | 39 * @param ch The filler char. 44 void * __cdecl memset(__out_bcount_full_opt(_Size) void *pvDst, __in int ch, __in size_t cb) variable 46 void *memset(void *pvDst, int ch, size_t cb) 49 void *memset(void *pvDst, int ch, size_t cb) 61 register uint32_t u32 = ch | (ch << 8);
|
H A D | strpbrk.cpp | 55 int ch; local 57 while ((ch = *psz++) != '\0') 58 if (ch == chCur)
|
H A D | RTUtf16CopyAscii.cpp | 56 unsigned char ch = pszSrc[cchCopy]; local 57 if (RT_LIKELY(ch < 0x80)) 58 pwszDst[cchCopy] = ch; 61 AssertMsgFailed(("ch=%#x\n", ch));
|
H A D | simplepattern.cpp | 167 unsigned char ch = '\0'; local 169 while (cchPatterns && (ch = *pszEnd) != '\0' && ch != '|') 183 if (!ch || !cchPatterns)
|
/vbox/src/VBox/Runtime/common/path/ |
H A D | RTPathChangeToDosSlashes.cpp | 51 char ch; local 53 while ((ch = *psz) != '\0') 55 if (ch == '/')
|
H A D | RTPathChangeToUnixSlashes.cpp | 51 char ch; local 53 while ((ch = *psz) != '\0') 55 if (ch == '\\')
|
H A D | RTPathParse.cpp.h | 152 char ch; local 153 while ((ch = pszPath[offCur]) != '\0' && !RTPATH_IS_SLASH(ch)) 177 /* Skip unnecessary slashes. Leave ch unchanged! */ 178 char ch2 = ch; 196 if (ch)
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/IntrinsicLib/ |
H A D | MemoryIntrinsics.c | 24 void * memset (void *dest, char ch, unsigned int count) argument 35 *(Pointer++) = ch;
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | fgetwc.c | 81 int ch = __sgetc(fp); local 83 if (ch == EOF) { 87 c = (char)ch;
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | inet_net_pton.c | 140 int ch; local 146 ch = *src++; 147 if (ch == '0' && (src[0] == 'x' || src[0] == 'X') 154 while ((ch = *src++) != '\0' && 155 isascii(ch) && isxdigit(ch)) { 156 if (isupper(ch)) 157 ch = tolower(ch); 158 n = (int)(strchr(xdigits, ch) [all...] |
H A D | base64.c | 240 int tarindex, state, ch; local 246 while ((ch = *src++) != '\0') { 247 if (isspace(ch)) /* Skip whitespace anywhere. */ 250 if (ch == Pad64) 253 pos = strchr(Base64, ch); 307 if (ch == Pad64) { /* We got a pad char. */ 308 ch = *src++; /* Skip it, get next. */ 316 for ((void)NULL; ch != '\0'; ch = *src++) 317 if (!isspace(ch)) [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/ |
H A D | aliasname.c | 43 __inline int __is_ws(char ch) argument 46 return (ch == ' ' || ch == '\t');
|
/vbox/src/VBox/HostDrivers/Support/testcase/ |
H A D | tstSupLoadModule.cpp | 62 int ch; local 66 while ((ch = RTGetOpt(&GetState, &ValueUnion))) 68 switch (ch) 112 return RTGetOptPrintError(ch, &ValueUnion);
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/ |
H A D | edging.c | 76 * @v ch rendition and character 80 int whline ( WINDOW *win, chtype ch, int n ) { argument 85 _wputch ( win, ch, NOWRAP ); 96 * @v ch rendition and character 100 int wvline ( WINDOW *win, chtype ch, int n ) { argument 105 _wputch ( win, ch, NOWRAP );
|
H A D | mucurses.c | 13 void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull; 47 * @v ch character rendition to write 50 void _wputch ( WINDOW *win, chtype ch, int wrap ) { argument 54 win->scr->putc(win->scr, ch);
|
/vbox/src/VBox/Runtime/common/log/ |
H A D | logformat.cpp | 92 char ch = *(*ppszFormat)++; local 94 AssertMsgFailed(("Invalid logger format type '%%%c%.10s'!\n", ch, *ppszFormat)); NOREF(ch);
|
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxInterceptorDxe/ |
H A D | VBoxInterceptor.c | 38 char ch = enter ? '>' : '<'; local 41 buf[i] = ch;
|