License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
-#include <nmmintrin.h>
-#include <string.h>
-#include "varshift.h"
+#if IS_IN (libc)
+
+# include <nmmintrin.h>
+# include <string.h>
+# include "varshift.h"
/* We use 0x2:
_SIDD_SBYTE_OPS
when either CFlag or ZFlag is 1. If CFlag == 1, ECX has the offset
X for case 1. */
-#ifndef STRCSPN_GENERIC
-# define STRCSPN_GENERIC __strcspn_generic
-# define STRCSPN_SSE42 __strcspn_sse42
-#endif
+# ifndef STRCSPN_GENERIC
+# define STRCSPN_GENERIC __strcspn_generic
+# define STRCSPN_SSE42 __strcspn_sse42
+# endif
-#ifdef USE_AS_STRPBRK
-# define RETURN(val1, val2) return val1
-#else
-# define RETURN(val1, val2) return val2
-#endif
+# ifdef USE_AS_STRPBRK
+# define RETURN(val1, val2) return val1
+# else
+# define RETURN(val1, val2) return val2
+# endif
extern
-#ifdef USE_AS_STRPBRK
+# ifdef USE_AS_STRPBRK
char *
-#else
+# else
size_t
-#endif
+# endif
STRCSPN_GENERIC (const char *, const char *) attribute_hidden;
-#ifdef USE_AS_STRPBRK
+# ifdef USE_AS_STRPBRK
char *
-#else
+# else
size_t
-#endif
+# endif
__attribute__ ((section (".text.sse4.2")))
STRCSPN_SSE42 (const char *s, const char *a)
{
aligned += 16;
}
}
+#endif
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
-#include <stdint.h>
+#if IS_IN (libc)
+# include <stdint.h>
const int8_t ___m128i_shift_right[31] attribute_hidden
__attribute__((aligned(32))) =
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
};
+
+#endif