/vbox/src/VBox/Runtime/include/internal/ |
H A D | mem.h | 43 * @param cb The number of bytes to allocate. 45 DECLHIDDEN(void *) rtMemBaseAlloc(size_t cb); variable
|
/vbox/src/VBox/Runtime/common/string/ |
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 | memcmp_alias.c | 40 extern int (memcmp)(const void *pv1, const void *pv2, size_t cb) argument 42 return RT_NOCRT(memcmp)(pv1, pv2, cb);
|
H A D | memcpy_alias.c | 40 extern void *(memcpy)(void *pvDst, const void *pvSrc, size_t cb) argument 42 return RT_NOCRT(memcpy)(pvDst, pvSrc, cb);
|
H A D | memmove_alias.c | 40 extern void *(memmove)(void *pvDst, const void *pvSrc, size_t cb) argument 42 return RT_NOCRT(memmove)(pvDst, pvSrc, 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);
|
/vbox/src/VBox/Runtime/generic/ |
H A D | RTLogWriteDebugger-generic.cpp | 35 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument 38 NOREF(cb);
|
H A D | RTLogWriteStdErr-generic.cpp | 35 RTDECL(void) RTLogWriteStdErr(const char *pch, size_t cb) argument 37 size_t cbWritten = fwrite(pch, 1, cb, stderr);
|
H A D | RTLogWriteStdErr-stub-generic.cpp | 35 RTDECL(void) RTLogWriteStdErr(const char *pch, size_t cb) argument 38 NOREF(cb);
|
H A D | RTLogWriteStdOut-generic.cpp | 36 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument 38 size_t cbWritten = fwrite(pch, 1, cb, stdout);
|
H A D | RTLogWriteStdOut-stub-generic.cpp | 35 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument 38 NOREF(cb);
|
H A D | RTLogWriteUser-generic.cpp | 35 RTDECL(void) RTLogWriteUser(const char *pch, size_t cb) argument 38 NOREF(cb);
|
/vbox/src/VBox/Runtime/r0drv/darwin/ |
H A D | RTLogWriteDebugger-r0drv-darwin.cpp | 36 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument 38 kprintf("%.*s", (int)cb, pch);
|
H A D | RTLogWriteStdOut-r0drv-darwin.cpp | 36 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument 38 printf("%.*s", (int)cb, pch);
|
/vbox/src/VBox/Runtime/r0drv/haiku/ |
H A D | RTLogWriteDebugger-r0drv-haiku.c | 36 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument 39 /*kprintf("%.*s", (int)cb, pch);*/
|
H A D | RTLogWriteStdOut-r0drv-haiku.c | 36 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument 38 dprintf("%.*s", (int)cb, pch);
|
/vbox/src/VBox/Runtime/r0drv/linux/ |
H A D | RTLogWriteDebugger-r0drv-linux.c | 36 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument 38 printk("%.*s", (int)cb, pch);
|
/vbox/src/VBox/Runtime/r0drv/nt/ |
H A D | RTLogWriteDebugger-r0drv-nt.cpp | 32 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument 34 if (pch[cb] != '\0')
|
/vbox/src/VBox/Runtime/r0drv/solaris/ |
H A D | RTLogWriteDebugger-r0drv-solaris.c | 44 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument 46 if (pch[cb] != '\0')
|
/vbox/src/VBox/Runtime/r3/win/ |
H A D | RTLogWriteDebugger-win.cpp | 37 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument 39 if (pch[cb] != '\0')
|
/vbox/src/VBox/Storage/testcase/ |
H A D | BuiltinTests.h | 30 unsigned cb; member in struct:TSTVDIOTESTENTRY
|
/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBoxGuestR3LibGR.cpp | 38 int vbglR3GRAlloc(VMMDevRequestHeader **ppReq, uint32_t cb, VMMDevRequestType enmReqType) argument 43 AssertMsgReturn(cb >= sizeof(VMMDevRequestHeader), ("%#x vs %#zx\n", cb, sizeof(VMMDevRequestHeader)), 46 pReq = (VMMDevRequestHeader *)RTMemTmpAlloc(cb); 50 pReq->size = cb;
|
/vbox/src/VBox/Runtime/r3/ |
H A D | allocex.h | 43 uint32_t cb; member in struct:RTMEMHDRR3 78 * @param cb Allocation size. 81 DECLHIDDEN(void) rtMemFreeExYyBitReach(void *pv, size_t cb, uint32_t fFlags);
|
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/ |
H A D | VBoxPrintHexDump.c | 55 * @param cb Number of bytes to dump. 57 size_t VBoxPrintHexDump(const void *pv, size_t cb) argument 61 while (cb > 0) 73 if (i < cb) 81 for (i = 0; i < 16 && i < cb; i++) 94 if (cb <= 16) 96 cb -= 16;
|
/vbox/src/VBox/Disassembler/ |
H A D | DisasmFormatBytes.cpp | 41 uint32_t cb = pDis->cbInstr; local 42 AssertStmt(cb <= 16, cb = 16); 68 for (uint32_t i = 0; i < cb; i++)
|