Searched defs:memset (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dmemset_alias.c3 * IPRT - No-CRT memset() alias for gcc.
32 #undef memset macro
36 # pragma weak memset macro
40 extern void *(memset)(void *pvDst, int ch, size_t cb) function
42 return RT_NOCRT(memset)(pvDst, ch, cb);
47 __asm__(".weak memset\t\n"
48 " .set memset," RT_NOCRT_STR(memset) "\t\n");
51 extern __typeof(RT_NOCRT(memset)) memset __attribute_
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/IntrinsicLib/
H A DMemoryIntrinsics.c24 void * memset (void *dest, char ch, unsigned int count) function
29 // the intrinsic memset()
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A DMisc.c29 /** The memset function copies the value of c (converted to an unsigned char)
32 @return The memset function returns the value of s.
35 memset(void *s, int c, size_t n) function
/vbox/include/iprt/nocrt/
H A Dstring.h38 void * RT_NOCRT(memset)(void *pvDst, int ch, size_t cb);
61 # define memset RT_NOCRT(memset) macro
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/include/bits/
H A Dstring.h5 * All except memcpy, memmove, memset and memcmp removed.
185 static inline void * memset(void *s, int c,size_t count) function
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dstring.c203 * memset - Fill a region of memory with the given value
208 * Do not use memset() to access IO space, use memset_io() instead.
210 void * memset(void * s,int c,size_t count) function
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibVideo.cpp50 # undef memset macro
51 # define memset xf86memset macro
H A DVBoxGuestR3LibGuestProp.cpp55 # undef memset macro
56 # define memset xf86memset macro
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h161 void *memset (void *, int, size_t);
228 #define memset(dest,ch,count) SetMem(dest,(UINTN)(count),(UINT8)(ch)) macro
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86_libc.h309 #undef memset macro
310 #define memset(vp,int,I) xf86memset(vp,int,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_libc.h347 #undef memset macro
348 #define memset(vp,int,I) xf86memset(vp,int,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_libc.h347 #undef memset macro
348 #define memset(vp,int,I) xf86memset(vp,int,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86_libc.h353 #undef memset macro
354 #define memset(vp,int,I) xf86memset(vp,int,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86_libc.h353 #undef memset macro
354 #define memset(vp,int,I) xf86memset(vp,int,I) macro

Completed in 76 milliseconds