2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_INTRIN_PSRAW_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_INTRIN_PSRAW_H_
|
|
|
|
#include "libc/intrin/macros.h"
|
2020-08-25 11:23:25 +00:00
|
|
|
COSMOPOLITAN_C_START_
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2024-01-09 09:26:03 +00:00
|
|
|
void psraw(int16_t[8], const int16_t[8], unsigned char) libcesque;
|
|
|
|
void psrawv(int16_t[8], const int16_t[8], const uint64_t[2]) libcesque;
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2020-08-25 11:23:25 +00:00
|
|
|
#define psraw(A, B, I) INTRIN_SSEVEX_X_I_(psraw, SSE2, "psraw", A, B, I)
|
|
|
|
#define psrawv(A, B, C) \
|
|
|
|
INTRIN_SSEVEX_X_X_X_(psrawv, SSE2, "psraw", INTRIN_NONCOMMUTATIVE, A, B, C)
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2020-08-25 11:23:25 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
2020-06-15 14:18:57 +00:00
|
|
|
#endif /* COSMOPOLITAN_LIBC_INTRIN_PSRAW_H_ */
|