Lines Matching refs:SizeT
82 extern SizeT VG_(strlen) ( const HChar* str );
84 extern HChar* VG_(strncat) ( HChar* dest, const HChar* src, SizeT n );
87 extern HChar* VG_(strncpy) ( HChar* dest, const HChar* src, SizeT ndest );
90 extern Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
91 extern Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
96 extern SizeT VG_(strspn) ( const HChar* s, const HChar* accpt );
97 extern SizeT VG_(strcspn) ( const HChar* s, const HChar* reject );
133 extern void* VG_(memcpy) ( void *d, const void *s, SizeT sz );
134 extern void* VG_(memmove)( void *d, const void *s, SizeT sz );
135 extern void* VG_(memset) ( void *s, Int c, SizeT sz );
136 extern Int VG_(memcmp) ( const void* s1, const void* s2, SizeT n );
143 static void VG_(bzero_inline) ( void* s, SizeT sz ) in VG_()
148 switch (sz / (SizeT)sizeof(UWord)) { in VG_()
206 extern void VG_(ssort)( void* base, SizeT nmemb, SizeT size,