Home
last modified time | relevance | path

Searched refs:ymm_reg (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/x86/
Dconstants.h28 extern const ymm_reg ff_pw_1;
29 extern const ymm_reg ff_pw_2;
31 extern const ymm_reg ff_pw_4;
45 extern const ymm_reg ff_pw_255;
46 extern const ymm_reg ff_pw_256;
47 extern const ymm_reg ff_pw_512;
48 extern const ymm_reg ff_pw_1023;
49 extern const ymm_reg ff_pw_1024;
50 extern const ymm_reg ff_pw_2048;
51 extern const ymm_reg ff_pw_4095;
[all …]
Dconstants.c25 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_1) = { 0x0001000100010001ULL, 0x0001000100010001ULL,
27 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_2) = { 0x0002000200020002ULL, 0x0002000200020002ULL,
30 DECLARE_ASM_ALIGNED(32, const ymm_reg, ff_pw_4) = { 0x0004000400040004ULL, 0x0004000400040004UL…
45 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_255) = { 0x00ff00ff00ff00ffULL, 0x00ff00ff00ff00ffULL,
47 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_256) = { 0x0100010001000100ULL, 0x0100010001000100ULL,
49 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_512) = { 0x0200020002000200ULL, 0x0200020002000200ULL,
52 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_1023) = { 0x03ff03ff03ff03ffULL, 0x03ff03ff03ff03ffULL,
54 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_1024) = { 0x0400040004000400ULL, 0x0400040004000400ULL,
56 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_2048) = { 0x0800080008000800ULL, 0x0800080008000800ULL,
58 DECLARE_ALIGNED(32, const ymm_reg, ff_pw_4095) = { 0x0fff0fff0fff0fffULL, 0x0fff0fff0fff0fffULL,
[all …]
/third_party/ffmpeg/libavutil/x86/
Dasm.h28 typedef struct ymm_reg { uint64_t a, b, c, d; } ymm_reg; struct