/vbox/src/VBox/Runtime/common/string/ |
H A D | strlen_alias.c | 3 * IPRT - No-CRT strlen() alias for gcc. 32 #undef strlen macro 36 # pragma weak strlen macro 40 extern size_t (strlen)(const char *psz) function 42 return RT_NOCRT(strlen)(psz); 47 __asm__(".weak strlen\t\n" 48 " .set strlen," RT_NOCRT_STR(strlen) "\t\n"); 51 extern __typeof(RT_NOCRT(strlen)) strlen __attribute_ [all...] |
H A D | strlen.cpp | 3 * IPRT - CRT Strings, strlen(). 42 __checkReturn size_t __cdecl strlen(__in_z const char *pszString) function 44 size_t strlen(const char *pszString) 47 size_t strlen(const char *pszString)
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/ |
H A D | Misc.c | 90 /** The strlen function computes the length of the string pointed to by s. 92 @return The strlen function returns the number of characters that 96 strlen(const char *s) function
|
/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBGLR3Internal.h | 42 # undef strlen macro 43 # define strlen xf86strlen macro 105 pParm->u.Pointer.size = (uint32_t)strlen(psz) + 1; 112 # undef strlen macro
|
/vbox/include/iprt/nocrt/ |
H A D | string.h | 51 size_t RT_NOCRT(strlen)(const char *psz); 73 # define strlen RT_NOCRT(strlen) macro
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/include/bits/ |
H A D | string.h | 239 static inline size_t strlen(const char * s) function
|
/vbox/src/libs/xpcom18a4/xpcom/ds/ |
H A D | nsCRT.h | 127 *** nsCRT::strlen() 135 static PRUint32 strlen(const char* s) { function in class:nsCRT 136 return PRUint32(::strlen(s)); 204 /// Like strlen except for ucs2 strings 205 static PRUint32 strlen(const PRUnichar* s);
|
H A D | nsCRT.cpp | 176 PRUint32 nsCRT::strlen(const PRUnichar* s) function in class:nsCRT 245 PRUint32 len = nsCRT::strlen(str);
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | string.c | 161 const char *p = s + strlen(s); 172 * strlen - Find the length of a string 175 size_t strlen(const char * s) function 301 l2 = strlen(s2); 304 l1 = strlen(s1); 340 size_t len = strlen(s);
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/ |
H A D | OpenSslSupport.h | 169 size_t strlen (const char *); 236 #define strlen(str) (size_t)(AsciiStrLen(str)) macro
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/ |
H A D | mdmac.c | 499 stringLength = strlen(source) + 1; 573 size_t strlen(const char *source) function
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/ |
H A D | longobject.c | 1339 Py_ssize_t size, strlen, size_a, i, j; local 1402 strlen = (addL != 0) + negative + 1408 strlen++; 1410 str = PyString_FromStringAndSize(NULL, strlen); 1417 p = PyString_AS_STRING(str) + strlen; 1979 slen = strlen(orig_str) < 200 ? strlen(orig_str) : 200; 4014 if (strlen(string) != (size_t)PyString_Size(x)) {
|
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/ |
H A D | xf86_libc.h | 351 #undef strlen macro 352 #define strlen(ccp) xf86strlen(ccp) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | xf86_libc.h | 395 #undef strlen macro 396 #define strlen(ccp) xf86strlen(ccp) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | xf86_libc.h | 395 #undef strlen macro 396 #define strlen(ccp) xf86strlen(ccp) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | xf86_libc.h | 401 #undef strlen macro 402 #define strlen(ccp) xf86strlen(ccp) macro
|
/vbox/src/VBox/Devices/Network/lwip/src/core/snmp/ |
H A D | mib2.c | 915 * @param strlen points to string length, excluding zero terminator 917 void snmp_set_sysdesr(u8_t *str, u8_t *strlen) argument 922 sysdescr_len_ptr = strlen; 960 * @param strlen points to string length, excluding zero terminator 976 * @param strlen points to string length, excluding zero terminator 992 * @param strlen points to string length, excluding zero terminator
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | xf86_libc.h | 399 #undef strlen macro 400 #define strlen(ccp) xf86strlen(ccp) macro
|