Searched defs:cb (Results 1 - 25 of 453) sorted by relevance

1234567891011>>

/vbox/src/VBox/Runtime/include/internal/
H A Dmem.h43 * @param cb The number of bytes to allocate.
45 DECLHIDDEN(void *) rtMemBaseAlloc(size_t cb); variable
/vbox/src/VBox/Runtime/common/string/
H A Dmemchr_alias.c40 extern void *(memchr)(const void *pv, int ch, size_t cb) argument
42 return RT_NOCRT(memchr)(pv, ch, cb);
H A Dmemcmp_alias.c40 extern int (memcmp)(const void *pv1, const void *pv2, size_t cb) argument
42 return RT_NOCRT(memcmp)(pv1, pv2, cb);
H A Dmemcpy_alias.c40 extern void *(memcpy)(void *pvDst, const void *pvSrc, size_t cb) argument
42 return RT_NOCRT(memcpy)(pvDst, pvSrc, cb);
H A Dmemmove_alias.c40 extern void *(memmove)(void *pvDst, const void *pvSrc, size_t cb) argument
42 return RT_NOCRT(memmove)(pvDst, pvSrc, cb);
H A Dmemset_alias.c40 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 DRTLogWriteDebugger-generic.cpp35 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument
38 NOREF(cb);
H A DRTLogWriteStdErr-generic.cpp35 RTDECL(void) RTLogWriteStdErr(const char *pch, size_t cb) argument
37 size_t cbWritten = fwrite(pch, 1, cb, stderr);
H A DRTLogWriteStdErr-stub-generic.cpp35 RTDECL(void) RTLogWriteStdErr(const char *pch, size_t cb) argument
38 NOREF(cb);
H A DRTLogWriteStdOut-generic.cpp36 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument
38 size_t cbWritten = fwrite(pch, 1, cb, stdout);
H A DRTLogWriteStdOut-stub-generic.cpp35 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument
38 NOREF(cb);
H A DRTLogWriteUser-generic.cpp35 RTDECL(void) RTLogWriteUser(const char *pch, size_t cb) argument
38 NOREF(cb);
/vbox/src/VBox/Runtime/r0drv/darwin/
H A DRTLogWriteDebugger-r0drv-darwin.cpp36 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument
38 kprintf("%.*s", (int)cb, pch);
H A DRTLogWriteStdOut-r0drv-darwin.cpp36 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument
38 printf("%.*s", (int)cb, pch);
/vbox/src/VBox/Runtime/r0drv/haiku/
H A DRTLogWriteDebugger-r0drv-haiku.c36 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument
39 /*kprintf("%.*s", (int)cb, pch);*/
H A DRTLogWriteStdOut-r0drv-haiku.c36 RTDECL(void) RTLogWriteStdOut(const char *pch, size_t cb) argument
38 dprintf("%.*s", (int)cb, pch);
/vbox/src/VBox/Runtime/r0drv/linux/
H A DRTLogWriteDebugger-r0drv-linux.c36 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument
38 printk("%.*s", (int)cb, pch);
/vbox/src/VBox/Runtime/r0drv/nt/
H A DRTLogWriteDebugger-r0drv-nt.cpp32 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument
34 if (pch[cb] != '\0')
/vbox/src/VBox/Runtime/r0drv/solaris/
H A DRTLogWriteDebugger-r0drv-solaris.c44 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument
46 if (pch[cb] != '\0')
/vbox/src/VBox/Runtime/r3/win/
H A DRTLogWriteDebugger-win.cpp37 RTDECL(void) RTLogWriteDebugger(const char *pch, size_t cb) argument
39 if (pch[cb] != '\0')
/vbox/src/VBox/Storage/testcase/
H A DBuiltinTests.h30 unsigned cb; member in struct:TSTVDIOTESTENTRY
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibGR.cpp38 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 Dallocex.h43 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 DVBoxPrintHexDump.c55 * @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 DDisasmFormatBytes.cpp41 uint32_t cb = pDis->cbInstr; local
42 AssertStmt(cb <= 16, cb = 16);
68 for (uint32_t i = 0; i < cb; i++)

Completed in 220 milliseconds

1234567891011>>