/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | string.h | 9 Where an argument declared as size_t n specifies the length of the array for 21 bcopy(a,b,c) ( memcpy((void *)b, (const void *)a, (size_t)c)) 22 bcmp(a,b,c) ( memcmp((void *)a, (void *)b, (size_t)c)) 27 size_t Unsigned integer type of the result of the sizeof operator. 33 void *memcpy (void * __restrict s1, const void * __restrict s2, size_t n); 34 void *memmove (void *s1, const void *s2, size_t n); 36 char *strncpy (char * __restrict s1, const char * __restrict s2, size_t n); 37 int strncpyX (char * __restrict s1, const char * __restrict s2, size_t n); 41 char *strncat (char * __restrict s1, const char * __restrict s2, size_t n); 42 int strncatX (char * __restrict s1, const char * __restrict s2, size_t 91 typedef _EFI_SIZE_T_ size_t; typedef [all...] |
H A D | stddef.h | 32 /** size_t is the unsigned integer type of the result of the sizeof operator. **/ 33 typedef _EFI_SIZE_T_ size_t; typedef 59 The macro expands to an integer constant expression that has type size_t,
|
H A D | stdlib.h | 21 size_t Unsigned integer type of the result of the sizeof operator. 53 void *calloc (size_t Num, size_t Size); 55 void *malloc (size_t); 56 void *realloc (void *Ptr, size_t NewSize); 60 size_t nmemb, size_t size, 62 void qsort (void *base, size_t nmemb, size_t size, 66 int mblen (const char *, size_t); 119 typedef _EFI_SIZE_T_ size_t; typedef [all...] |
H A D | wchar.h | 22 size_t Unsigned integer type of the result of the sizeof operator. 36 int swprintf (wchar_t * __restrict s, size_t n, 44 int vswprintf (wchar_t * __restrict s, size_t n, 87 const wchar_t * __restrict s2, size_t n); 89 const wchar_t * __restrict s2, size_t n); 90 wchar_t *wmemmove (wchar_t *s1, const wchar_t *s2, size_t n); 96 const wchar_t * __restrict s2, size_t n); 101 int wcsncmp (const wchar_t *s1, const wchar_t *s2, size_t n); 102 size_t wcsxfrm (wchar_t * __restrict s1, 103 const wchar_t * __restrict s2, size_t 175 typedef _EFI_SIZE_T_ size_t; /**< Unsigned integer type of the result of the sizeof operator. */ typedef [all...] |
H A D | netdb.h | 107 typedef _EFI_SIZE_T_ size_t; typedef 163 * Note: ai_addrlen used to be a size_t, per RFC 2553.
|
H A D | time.h | 14 The types declared are size_t along with clock_t and time_t which are 44 size_t Unsigned integer type of the result of the sizeof operator. 64 size_t strftime (char * __restrict s, size_t maxsize, 86 typedef _EFI_SIZE_T_ size_t; typedef 423 size_t strftime( char * __restrict s, size_t maxsize,
|
H A D | stdio.h | 21 int, size_t); 52 size_t fread (void * __restrict, size_t, size_t, 54 size_t fwrite (const void * __restrict, size_t, size_t, 82 int snprintf (char * __restrict, size_t, 84 int vsnprintf (char * __restrict, size_t, 91 char *fgetln (FILE * __restrict, size_t * __restric 160 typedef _EFI_SIZE_T_ size_t; typedef [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/ |
H A D | UefiLzma.h | 29 typedef unsigned int size_t; typedef
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/bits/ |
H A D | stdint.h | 6 typedef __SIZE_TYPE__ size_t; typedef
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86_64/include/bits/ |
H A D | stdint.h | 4 typedef __SIZE_TYPE__ size_t; typedef
|
/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBoxGuestR3LibRuntimeXF86.cpp | 40 # undef size_t macro 77 RTDECL(void *) RTMemTmpAllocTag(size_t cb, const char *pszTag)
|
/vbox/include/iprt/nocrt/compiler/ |
H A D | gcc.h | 47 typedef __SIZE_TYPE__ size_t; typedef 49 typedef uint32_t size_t; typedef 51 typedef uint64_t size_t; typedef 87 (__offsetof__ (reinterpret_cast<size_t>(&reinterpret_cast<const volatile char &>(static_cast<type *>(0)->memb))) ) 89 # define offsetof(type, memb) ((size_t)&((type *)0)->memb)
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/ |
H A D | sigtypes.h | 53 typedef _EFI_SIZE_T_ size_t; typedef 115 size_t ss_size; /* signal stack length */
|
H A D | uio.h | 47 typedef _EFI_SIZE_T_ size_t; typedef 59 size_t iov_len; /* Length. */ 84 size_t uio_resid; /* residual i/o count */
|
H A D | types.h | 247 typedef _EFI_SIZE_T_ size_t; typedef
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/ |
H A D | crtdefs.h | 138 typedef unsigned __int64 size_t; typedef 140 typedef unsigned int size_t; typedef
|
/vbox/src/VBox/Runtime/common/string/ |
H A D | base64.cpp | 122 RTDECL(ssize_t) RTBase64DecodedSizeEx(const char *pszString, size_t cchStringMax, char **ppszEnd) 189 size_t cb; 221 RTDECL(int) RTBase64DecodeEx(const char *pszString, size_t cchStringMax, void *pvData, size_t cbData, 222 size_t *pcbActual, char **ppszEnd) 393 RTDECL(int) RTBase64Decode(const char *pszString, void *pvData, size_t cbData, size_t *pcbActual, char **ppszEnd) 411 RTDECL(size_t) RTBase64EncodedLength(size_t cbData) 415 AssertReturn(sizeof(size_t) [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | crtdefs.h | 147 typedef unsigned __int64 size_t; typedef 149 typedef unsigned int size_t; typedef
|
/vbox/src/VBox/Runtime/common/ldr/ |
H A D | ldrEx.cpp | 192 RTDECL(size_t) RTLdrSize(RTLDRMOD hLdrMod) 199 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), ~(size_t)0); 201 AssertMsgReturn(pMod->eState == LDR_STATE_OPENED, ("eState=%d\n", pMod->eState), ~(size_t)0); 206 size_t cb = pMod->pOps->pfnGetImageSize(pMod); 328 PRTLDRIMPORTINFO pInfo, size_t cbInfo) 590 RTDECL(int) RTLdrQueryProp(RTLDRMOD hLdrMod, RTLDRPROP enmProp, void *pvBuf, size_t cbBuf) 597 RTDECL(int) RTLdrQueryPropEx(RTLDRMOD hLdrMod, RTLDRPROP enmProp, void *pvBits, void *pvBuf, size_t cbBuf, size_t *pcbRet) 603 size_t cbRet; 671 RTDECL(int) RTLdrHashImage(RTLDRMOD hLdrMod, RTDIGESTTYPE enmDigest, char *pszDigest, size_t cbDiges [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/ |
H A D | OpenSslSupport.h | 80 typedef UINTN size_t; typedef 151 void *malloc (size_t); 152 void *realloc (void *, size_t); 160 void *memcpy (void *, const void *, size_t); 161 void *memset (void *, int, size_t); 162 void *memchr (const void *, int, size_t); 163 int memcmp (const void *, const void *, size_t); 164 void *memmove (void *, const void *, size_t); 166 int strncmp (const char *, const char *, size_t); 168 char *strncpy (char *, const char *, size_t); [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/ |
H A D | port.h | 87 typedef unsigned int size_t; typedef 261 size_t getpagesize(void); 281 void *memmove(void *dest, const void *src, size_t len); 301 ssize_t pread( int fd, void *buf, size_t count, off_t offset ); 305 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset ); 309 int readlink( const char *path, char *buf, size_t size ); 318 int strncasecmp(const char *str1, const char *str2, size_t n); 345 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) 350 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/ |
H A D | port.h | 86 typedef unsigned int size_t; typedef 285 void *memmove(void *dest, const void *src, size_t len); 305 ssize_t pread( int fd, void *buf, size_t count, off_t offset ); 309 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset ); 313 int readlink( const char *path, char *buf, size_t size ); 322 int strncasecmp(const char *str1, const char *str2, size_t n); 349 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) 354 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/ |
H A D | port.h | 87 typedef unsigned int size_t; typedef 261 size_t getpagesize(void); 281 void *memmove(void *dest, const void *src, size_t len); 301 ssize_t pread( int fd, void *buf, size_t count, off_t offset ); 305 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset ); 309 int readlink( const char *path, char *buf, size_t size ); 318 int strncasecmp(const char *str1, const char *str2, size_t n); 345 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) 350 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/ |
H A D | port.h | 84 typedef unsigned int size_t; typedef 290 void *memmove(void *dest, const void *src, size_t len); 310 ssize_t pread( int fd, void *buf, size_t count, off_t offset ); 314 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset ); 318 int readlink( const char *path, char *buf, size_t size ); 327 int strncasecmp(const char *str1, const char *str2, size_t n); 354 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) 359 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/ |
H A D | port.h | 87 typedef unsigned int size_t; typedef 261 size_t getpagesize(void); 281 void *memmove(void *dest, const void *src, size_t len); 301 ssize_t pread( int fd, void *buf, size_t count, off_t offset ); 305 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset ); 309 int readlink( const char *path, char *buf, size_t size ); 318 int strncasecmp(const char *str1, const char *str2, size_t n); 345 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) 350 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
|