xevd-0.5.0-5.fc44

List of Findings

Error: COMPILER_WARNING (CWE-1164): [#def1]
xevd-0.5.0/app/xevd_app.c: scope_hint: At top level
xevd-0.5.0/app/xevd_app.c:192:12: warning[-Wunused-function]: ‘get_extra_config’ defined but not used
#  192 | static int get_extra_config(XEVD id)
#      |            ^~~~~~~~~~~~~~~~
#  190|   }
#  191|   
#  192|-> static int get_extra_config(XEVD id)
#  193|   {
#  194|       int width, height, coded_width, coded_height, color_space, max_coding_delay;

Error: COMPILER_WARNING (CWE-563): [#def2]
xevd-0.5.0/app/xevd_app.c: scope_hint: In function ‘main’
xevd-0.5.0/app/xevd_app.c:376:24: warning[-Wunused-variable]: unused variable ‘decod_frames’
#  376 |     int                decod_frames = 0;
#      |                        ^~~~~~~~~~~~
#  374|       int                act_w = 0, act_h = 0;
#  375|       FILE             * fp_bs = NULL;
#  376|->     int                decod_frames = 0;
#  377|       int                is_y4m = 0;
#  378|       int                dim_changed = 0;

Error: COMPILER_WARNING (CWE-563): [#def3]
xevd-0.5.0/app/xevd_app.c:34: included_from: Included from here.
xevd-0.5.0/app/xevd_app_args.h:324:13: warning[-Wunused-variable]: ‘op_out_chroma_format’ defined but not used
#  324 | static int  op_out_chroma_format = 1;
#      |             ^~~~~~~~~~~~~~~~~~~~
#  322|   static int  op_use_pic_signature = 0;
#  323|   static int  op_out_bit_depth = 8; /* default value */
#  324|-> static int  op_out_chroma_format = 1;
#  325|   
#  326|   typedef enum _STATES

Error: COMPILER_WARNING (CWE-1164): [#def4]
xevd-0.5.0/app/xevd_app_util.h:159:12: warning[-Wunused-function]: ‘imgb_read’ defined but not used
#  159 | static int imgb_read(FILE * fp, XEVD_IMGB * img)
#      |            ^~~~~~~~~
#  157|   #define XEVDA_CRSHIFT(v, s) (((v) + (1<<(s)) - 1) >> (s))
#  158|   
#  159|-> static int imgb_read(FILE * fp, XEVD_IMGB * img)
#  160|   {
#  161|       int f_w, f_h;

Error: COMPILER_WARNING (CWE-1164): [#def5]
xevd-0.5.0/app/xevd_app_util.h:312:12: warning[-Wunused-function]: ‘write_data’ defined but not used
#  312 | static int write_data(char * fname, unsigned char * data, int size)
#      |            ^~~~~~~~~~
#  310|   }
#  311|   
#  312|-> static int write_data(char * fname, unsigned char * data, int size)
#  313|   {
#  314|       FILE * fp;

Error: COMPILER_WARNING (CWE-681): [#def6]
xevd-0.5.0/app/xevd_app.c:33: included_from: Included from here.
xevd-0.5.0/app/xevd_app_util.h: scope_hint: In function ‘imgb_conv_shift_left’
xevd-0.5.0/app/xevd_app_util.h:513:15: warning[-Wpointer-sign]: pointer targets in assignment from ‘short int *’ to ‘short unsigned int *’ differ in signedness
#  513 |             s = (short*)(((unsigned char *)s) + imgb_src->s[i]);
#      |               ^
#  511|                   d[k] = (unsigned short)(s[k] << shift);
#  512|               }
#  513|->             s = (short*)(((unsigned char *)s) + imgb_src->s[i]);
#  514|               d = (short*)(((unsigned char *)d) + imgb_dst->s[i]);
#  515|           }

Error: COMPILER_WARNING (CWE-681): [#def7]
xevd-0.5.0/app/xevd_app_util.h:514:15: warning[-Wpointer-sign]: pointer targets in assignment from ‘short int *’ to ‘short unsigned int *’ differ in signedness
#  514 |             d = (short*)(((unsigned char *)d) + imgb_dst->s[i]);
#      |               ^
#  512|               }
#  513|               s = (short*)(((unsigned char *)s) + imgb_src->s[i]);
#  514|->             d = (short*)(((unsigned char *)d) + imgb_dst->s[i]);
#  515|           }
#  516|       }

Error: COMPILER_WARNING (CWE-681): [#def8]
xevd-0.5.0/app/xevd_app_util.h: scope_hint: In function ‘imgb_conv_shift_right’
xevd-0.5.0/app/xevd_app_util.h:549:15: warning[-Wpointer-sign]: pointer targets in assignment from ‘short int *’ to ‘short unsigned int *’ differ in signedness
#  549 |             s = (short*)(((unsigned char *)s) + imgb_src->s[i]);
#      |               ^
#  547|   
#  548|               }
#  549|->             s = (short*)(((unsigned char *)s) + imgb_src->s[i]);
#  550|               d = (short*)(((unsigned char *)d) + imgb_dst->s[i]);
#  551|           }

Error: COMPILER_WARNING (CWE-681): [#def9]
xevd-0.5.0/app/xevd_app_util.h:550:15: warning[-Wpointer-sign]: pointer targets in assignment from ‘short int *’ to ‘short unsigned int *’ differ in signedness
#  550 |             d = (short*)(((unsigned char *)d) + imgb_dst->s[i]);
#      |               ^
#  548|               }
#  549|               s = (short*)(((unsigned char *)s) + imgb_src->s[i]);
#  550|->             d = (short*)(((unsigned char *)d) + imgb_dst->s[i]);
#  551|           }
#  552|       }

Error: COMPILER_WARNING (CWE-1164): [#def10]
xevd-0.5.0/app/xevd_app_util.h:555:13: warning[-Wunused-function]: ‘imgb_cpy_bd’ defined but not used
#  555 | static void imgb_cpy_bd(XEVD_IMGB * dst, XEVD_IMGB * src)
#      |             ^~~~~~~~~~~
#  553|   }
#  554|   
#  555|-> static void imgb_cpy_bd(XEVD_IMGB * dst, XEVD_IMGB * src)
#  556|   {
#  557|       int i, bd;

Error: COMPILER_WARNING (CWE-563): [#def11]
xevd-0.5.0/app/xevd_app_util.h: scope_hint: In function ‘imgb_cpy_bd’
xevd-0.5.0/app/xevd_app_util.h:559:9: warning[-Wunused-variable]: unused variable ‘idc’
#  559 |     int idc = XEVD_CS_GET_FORMAT(src->cs);
#      |         ^~~
#  557|       int i, bd;
#  558|       int bit_depth = XEVD_CS_GET_BIT_DEPTH(src->cs);
#  559|->     int idc = XEVD_CS_GET_FORMAT(src->cs);
#  560|       if(src->cs == dst->cs)
#  561|       {

Error: COMPILER_WARNING (CWE-1164): [#def12]
xevd-0.5.0/app/xevd_app_util.h:620:13: warning[-Wunused-function]: ‘imgb_cpy_inp_to_codec’ defined but not used
#  620 | static void imgb_cpy_inp_to_codec(XEVD_IMGB * dst, XEVD_IMGB * src)
#      |             ^~~~~~~~~~~~~~~~~~~~~
#  618|       dst->imgb_active_aps_id = src->imgb_active_aps_id;
#  619|   }
#  620|-> static void imgb_cpy_inp_to_codec(XEVD_IMGB * dst, XEVD_IMGB * src)
#  621|   {
#  622|       int i, bd;

Error: COMPILER_WARNING (CWE-1164): [#def13]
xevd-0.5.0/app/xevd_app_util.h:665:13: warning[-Wunused-function]: ‘imgb_cpy_codec_to_out’ defined but not used
#  665 | static void imgb_cpy_codec_to_out(XEVD_IMGB * dst, XEVD_IMGB * src)
#      |             ^~~~~~~~~~~~~~~~~~~~~
#  663|   }
#  664|   
#  665|-> static void imgb_cpy_codec_to_out(XEVD_IMGB * dst, XEVD_IMGB * src)
#  666|   {
#  667|       int i, bd;

Error: COMPILER_WARNING (CWE-477): [#def14]
xevd-0.5.0/redhat-linux-build/CMakeFiles/CMakeScratch/TryCompile-25IoSn/src.c:2:5: warning[-Wdeprecated-declarations]: ‘somefunc’ is deprecated

Error: COMPILER_WARNING: [#def15]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1647:21: warning[-Wpsabi]: AVX vector return without AVX enabled changes the ABI
# 1645|               __m256i o[32], e[32], eo[16], ee[16], eeo[8], eee[8], eeeo[4], eeee[4], eeeeo[2], eeeee[2];
# 1646|               __m256i v[64], t[16], d[64];
# 1647|->             __m256i max_val = _mm256_set1_epi32(MAX_TX_VAL_32);
# 1648|               __m256i min_val = _mm256_set1_epi32(MIN_TX_VAL_32);
# 1649|               __m256i coef[32][32];

Error: COMPILER_WARNING: [#def16]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1647:31: note[note]: called from here
# 1645|               __m256i o[32], e[32], eo[16], ee[16], eeo[8], eee[8], eeeo[4], eeee[4], eeeeo[2], eeeee[2];
# 1646|               __m256i v[64], t[16], d[64];
# 1647|->             __m256i max_val = _mm256_set1_epi32(MAX_TX_VAL_32);
# 1648|               __m256i min_val = _mm256_set1_epi32(MIN_TX_VAL_32);
# 1649|               __m256i coef[32][32];

Error: COMPILER_WARNING: [#def17]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1648:31: note[note]: called from here
# 1646|               __m256i v[64], t[16], d[64];
# 1647|               __m256i max_val = _mm256_set1_epi32(MAX_TX_VAL_32);
# 1648|->             __m256i min_val = _mm256_set1_epi32(MIN_TX_VAL_32);
# 1649|               __m256i coef[32][32];
# 1650|   

Error: COMPILER_WARNING: [#def18]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1655:34: note[note]: called from here
# 1653|                   for (int j = 0; j < 32; j++)
# 1654|                   {
# 1655|->                     coef[i][j] = _mm256_set1_epi32(((s32)(xevd_tbl_tm64[j + 32][i]) << 16) | (xevd_tbl_tm64[j][i] & 0xFFFF));
# 1656|                   }
# 1657|               }

Error: COMPILER_WARNING: [#def19]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1678:28: note[note]: called from here
# 1676|                       a[i] = _mm_unpacklo_epi16(r[i], r[i + 32]);
# 1677|                       b[i] = _mm_unpackhi_epi16(r[i], r[i + 32]);
# 1678|->                     v[i] = _mm256_set_m128i(b[i], a[i]);
# 1679|                   }
# 1680|   

Error: COMPILER_WARNING: [#def20]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1717:21: note[note]: called from here
# 1715|                   for (int i = 0; i < 32; i++)
# 1716|                   {
# 1717|->                     XEVD_ITX64_O(o[i], i);
# 1718|                   }
# 1719|   #undef XEVD_ITX64_O

Error: COMPILER_WARNING: [#def21]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1741:21: note[note]: called from here
# 1739|                   for (int i = 0; i < 16; i++)
# 1740|                   {
# 1741|->                     XEVD_ITX64_EO(eo[i], i);
# 1742|                   }
# 1743|   #undef XEVD_ITX64_EO

Error: COMPILER_WARNING: [#def22]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1757:21: note[note]: called from here
# 1755|                   for (int i = 0; i < 8; i++)
# 1756|                   {
# 1757|->                     XEVD_ITX64_EEO(eeo[i], i);
# 1758|                   }
# 1759|   #undef XEVD_ITX64_EEO

Error: COMPILER_WARNING: [#def23]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1769:21: note[note]: called from here
# 1767|                   for (int i = 0; i < 4; i++)
# 1768|                   {
# 1769|->                     XEVD_ITX64_EEEO(eeeo[i], i);
# 1770|                   }
# 1771|   #undef XEVD_ITX64_EEEO

Error: COMPILER_WARNING: [#def24]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1774:28: note[note]: called from here
# 1772|   
# 1773|   
# 1774|->                 eeeeo[0] = _mm256_madd_epi16(v[16], coef[0][16]);
# 1775|                   eeeeo[1] = _mm256_madd_epi16(v[16], coef[1][16]);
# 1776|                   eeeee[0] = _mm256_madd_epi16(v[0], coef[0][0]);

Error: COMPILER_WARNING: [#def25]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1775:28: note[note]: called from here
# 1773|   
# 1774|                   eeeeo[0] = _mm256_madd_epi16(v[16], coef[0][16]);
# 1775|->                 eeeeo[1] = _mm256_madd_epi16(v[16], coef[1][16]);
# 1776|                   eeeee[0] = _mm256_madd_epi16(v[0], coef[0][0]);
# 1777|                   eeeee[1] = _mm256_madd_epi16(v[0], coef[1][0]);

Error: COMPILER_WARNING: [#def26]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1776:28: note[note]: called from here
# 1774|                   eeeeo[0] = _mm256_madd_epi16(v[16], coef[0][16]);
# 1775|                   eeeeo[1] = _mm256_madd_epi16(v[16], coef[1][16]);
# 1776|->                 eeeee[0] = _mm256_madd_epi16(v[0], coef[0][0]);
# 1777|                   eeeee[1] = _mm256_madd_epi16(v[0], coef[1][0]);
# 1778|   

Error: COMPILER_WARNING: [#def27]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1777:28: note[note]: called from here
# 1775|                   eeeeo[1] = _mm256_madd_epi16(v[16], coef[1][16]);
# 1776|                   eeeee[0] = _mm256_madd_epi16(v[0], coef[0][0]);
# 1777|->                 eeeee[1] = _mm256_madd_epi16(v[0], coef[1][0]);
# 1778|   
# 1779|                   eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);

Error: COMPILER_WARNING: [#def28]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1779:27: note[note]: called from here
# 1777|                   eeeee[1] = _mm256_madd_epi16(v[0], coef[1][0]);
# 1778|   
# 1779|->                 eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);
# 1780|                   eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 1781|                   eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);

Error: COMPILER_WARNING: [#def29]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1780:27: note[note]: called from here
# 1778|   
# 1779|                   eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);
# 1780|->                 eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 1781|                   eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);
# 1782|                   eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);

Error: COMPILER_WARNING: [#def30]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1781:27: note[note]: called from here
# 1779|                   eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);
# 1780|                   eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 1781|->                 eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);
# 1782|                   eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);
# 1783|   

Error: COMPILER_WARNING: [#def31]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1782:27: note[note]: called from here
# 1780|                   eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 1781|                   eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);
# 1782|->                 eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);
# 1783|   
# 1784|                   eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);

Error: COMPILER_WARNING: [#def32]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1784:26: note[note]: called from here
# 1782|                   eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);
# 1783|   
# 1784|->                 eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);
# 1785|                   eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 1786|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);

Error: COMPILER_WARNING: [#def33]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1785:26: note[note]: called from here
# 1783|   
# 1784|                   eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);
# 1785|->                 eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 1786|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 1787|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);

Error: COMPILER_WARNING: [#def34]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1786:26: note[note]: called from here
# 1784|                   eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);
# 1785|                   eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 1786|->                 eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 1787|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 1788|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);

Error: COMPILER_WARNING: [#def35]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1787:26: note[note]: called from here
# 1785|                   eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 1786|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 1787|->                 eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 1788|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 1789|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);

Error: COMPILER_WARNING: [#def36]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1788:26: note[note]: called from here
# 1786|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 1787|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 1788|->                 eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 1789|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 1790|                   eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);

Error: COMPILER_WARNING: [#def37]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1789:26: note[note]: called from here
# 1787|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 1788|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 1789|->                 eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 1790|                   eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);
# 1791|                   eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);

Error: COMPILER_WARNING: [#def38]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1790:26: note[note]: called from here
# 1788|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 1789|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 1790|->                 eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);
# 1791|                   eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);
# 1792|   

Error: COMPILER_WARNING: [#def39]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1791:26: note[note]: called from here
# 1789|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 1790|                   eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);
# 1791|->                 eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);
# 1792|   
# 1793|                   ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);

Error: COMPILER_WARNING: [#def40]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1793:26: note[note]: called from here
# 1791|                   eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);
# 1792|   
# 1793|->                 ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);
# 1794|                   ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 1795|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);

Error: COMPILER_WARNING: [#def41]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1794:26: note[note]: called from here
# 1792|   
# 1793|                   ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);
# 1794|->                 ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 1795|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 1796|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);

Error: COMPILER_WARNING: [#def42]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1795:26: note[note]: called from here
# 1793|                   ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);
# 1794|                   ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 1795|->                 ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 1796|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 1797|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);

Error: COMPILER_WARNING: [#def43]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1796:26: note[note]: called from here
# 1794|                   ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 1795|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 1796|->                 ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 1797|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 1798|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);

Error: COMPILER_WARNING: [#def44]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1797:26: note[note]: called from here
# 1795|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 1796|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 1797|->                 ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 1798|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 1799|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);

Error: COMPILER_WARNING: [#def45]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1798:26: note[note]: called from here
# 1796|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 1797|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 1798|->                 ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 1799|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 1800|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);

Error: COMPILER_WARNING: [#def46]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1799:26: note[note]: called from here
# 1797|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 1798|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 1799|->                 ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 1800|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 1801|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);

Error: COMPILER_WARNING: [#def47]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1800:26: note[note]: called from here
# 1798|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 1799|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 1800|->                 ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 1801|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 1802|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);

Error: COMPILER_WARNING: [#def48]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1801:26: note[note]: called from here
# 1799|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 1800|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 1801|->                 ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 1802|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 1803|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);

Error: COMPILER_WARNING: [#def49]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1802:26: note[note]: called from here
# 1800|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 1801|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 1802|->                 ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 1803|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 1804|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);

Error: COMPILER_WARNING: [#def50]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1803:26: note[note]: called from here
# 1801|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 1802|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 1803|->                 ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 1804|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 1805|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);

Error: COMPILER_WARNING: [#def51]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1804:26: note[note]: called from here
# 1802|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 1803|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 1804|->                 ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 1805|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 1806|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);

Error: COMPILER_WARNING: [#def52]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1805:26: note[note]: called from here
# 1803|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 1804|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 1805|->                 ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 1806|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 1807|                   ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);

Error: COMPILER_WARNING: [#def53]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1806:26: note[note]: called from here
# 1804|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 1805|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 1806|->                 ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 1807|                   ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);
# 1808|                   ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);

Error: COMPILER_WARNING: [#def54]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1807:26: note[note]: called from here
# 1805|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 1806|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 1807|->                 ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);
# 1808|                   ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);
# 1809|   

Error: COMPILER_WARNING: [#def55]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1808:26: note[note]: called from here
# 1806|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 1807|                   ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);
# 1808|->                 ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);
# 1809|   
# 1810|                   e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);

Error: COMPILER_WARNING: [#def56]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1810:25: note[note]: called from here
# 1808|                   ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);
# 1809|   
# 1810|->                 e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);
# 1811|                   e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 1812|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);

Error: COMPILER_WARNING: [#def57]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1811:25: note[note]: called from here
# 1809|   
# 1810|                   e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);
# 1811|->                 e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 1812|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 1813|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);

Error: COMPILER_WARNING: [#def58]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1812:25: note[note]: called from here
# 1810|                   e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);
# 1811|                   e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 1812|->                 e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 1813|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 1814|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);

Error: COMPILER_WARNING: [#def59]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1813:25: note[note]: called from here
# 1811|                   e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 1812|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 1813|->                 e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 1814|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 1815|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);

Error: COMPILER_WARNING: [#def60]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1814:25: note[note]: called from here
# 1812|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 1813|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 1814|->                 e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 1815|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 1816|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);

Error: COMPILER_WARNING: [#def61]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1815:25: note[note]: called from here
# 1813|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 1814|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 1815|->                 e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 1816|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 1817|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);

Error: COMPILER_WARNING: [#def62]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1816:25: note[note]: called from here
# 1814|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 1815|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 1816|->                 e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 1817|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 1818|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);

Error: COMPILER_WARNING: [#def63]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1817:25: note[note]: called from here
# 1815|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 1816|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 1817|->                 e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 1818|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 1819|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);

Error: COMPILER_WARNING: [#def64]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1818:25: note[note]: called from here
# 1816|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 1817|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 1818|->                 e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 1819|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 1820|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);

Error: COMPILER_WARNING: [#def65]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1819:25: note[note]: called from here
# 1817|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 1818|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 1819|->                 e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 1820|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 1821|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);

Error: COMPILER_WARNING: [#def66]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1820:25: note[note]: called from here
# 1818|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 1819|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 1820|->                 e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 1821|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 1822|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);

Error: COMPILER_WARNING: [#def67]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1821:25: note[note]: called from here
# 1819|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 1820|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 1821|->                 e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 1822|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 1823|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);

Error: COMPILER_WARNING: [#def68]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1822:25: note[note]: called from here
# 1820|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 1821|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 1822|->                 e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 1823|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 1824|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);

Error: COMPILER_WARNING: [#def69]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1823:25: note[note]: called from here
# 1821|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 1822|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 1823|->                 e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 1824|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 1825|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);

Error: COMPILER_WARNING: [#def70]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1824:25: note[note]: called from here
# 1822|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 1823|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 1824|->                 e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 1825|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 1826|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);

Error: COMPILER_WARNING: [#def71]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1825:25: note[note]: called from here
# 1823|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 1824|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 1825|->                 e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 1826|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 1827|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);

Error: COMPILER_WARNING: [#def72]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1826:25: note[note]: called from here
# 1824|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 1825|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 1826|->                 e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 1827|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 1828|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);

Error: COMPILER_WARNING: [#def73]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1827:25: note[note]: called from here
# 1825|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 1826|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 1827|->                 e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 1828|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 1829|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);

Error: COMPILER_WARNING: [#def74]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1828:25: note[note]: called from here
# 1826|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 1827|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 1828|->                 e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 1829|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 1830|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);

Error: COMPILER_WARNING: [#def75]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1829:25: note[note]: called from here
# 1827|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 1828|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 1829|->                 e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 1830|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 1831|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);

Error: COMPILER_WARNING: [#def76]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1830:25: note[note]: called from here
# 1828|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 1829|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 1830|->                 e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 1831|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 1832|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);

Error: COMPILER_WARNING: [#def77]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1831:25: note[note]: called from here
# 1829|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 1830|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 1831|->                 e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 1832|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 1833|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);

Error: COMPILER_WARNING: [#def78]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1832:25: note[note]: called from here
# 1830|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 1831|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 1832|->                 e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 1833|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 1834|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);

Error: COMPILER_WARNING: [#def79]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1833:25: note[note]: called from here
# 1831|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 1832|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 1833|->                 e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 1834|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 1835|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);

Error: COMPILER_WARNING: [#def80]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1834:25: note[note]: called from here
# 1832|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 1833|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 1834|->                 e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 1835|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 1836|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);

Error: COMPILER_WARNING: [#def81]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1835:25: note[note]: called from here
# 1833|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 1834|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 1835|->                 e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 1836|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 1837|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);

Error: COMPILER_WARNING: [#def82]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1836:25: note[note]: called from here
# 1834|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 1835|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 1836|->                 e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 1837|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 1838|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);

Error: COMPILER_WARNING: [#def83]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1837:25: note[note]: called from here
# 1835|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 1836|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 1837|->                 e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 1838|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 1839|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);

Error: COMPILER_WARNING: [#def84]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1838:25: note[note]: called from here
# 1836|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 1837|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 1838|->                 e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 1839|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 1840|                   e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);

Error: COMPILER_WARNING: [#def85]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1839:25: note[note]: called from here
# 1837|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 1838|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 1839|->                 e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 1840|                   e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);
# 1841|                   e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);

Error: COMPILER_WARNING: [#def86]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1840:25: note[note]: called from here
# 1838|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 1839|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 1840|->                 e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);
# 1841|                   e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);
# 1842|   

Error: COMPILER_WARNING: [#def87]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1841:25: note[note]: called from here
# 1839|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 1840|                   e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);
# 1841|->                 e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);
# 1842|   
# 1843|                   v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);

Error: COMPILER_WARNING: [#def88]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1843:25: note[note]: called from here
# 1841|                   e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);
# 1842|   
# 1843|->                 v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);
# 1844|                   v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 1845|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);

Error: COMPILER_WARNING: [#def89]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1844:25: note[note]: called from here
# 1842|   
# 1843|                   v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);
# 1844|->                 v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 1845|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 1846|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);

Error: COMPILER_WARNING: [#def90]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1845:25: note[note]: called from here
# 1843|                   v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);
# 1844|                   v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 1845|->                 v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 1846|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 1847|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);

Error: COMPILER_WARNING: [#def91]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1846:25: note[note]: called from here
# 1844|                   v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 1845|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 1846|->                 v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 1847|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 1848|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);

Error: COMPILER_WARNING: [#def92]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1847:25: note[note]: called from here
# 1845|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 1846|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 1847|->                 v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 1848|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 1849|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);

Error: COMPILER_WARNING: [#def93]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1848:25: note[note]: called from here
# 1846|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 1847|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 1848|->                 v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 1849|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 1850|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);

Error: COMPILER_WARNING: [#def94]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1849:25: note[note]: called from here
# 1847|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 1848|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 1849|->                 v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 1850|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 1851|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);

Error: COMPILER_WARNING: [#def95]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1850:25: note[note]: called from here
# 1848|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 1849|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 1850|->                 v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 1851|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 1852|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);

Error: COMPILER_WARNING: [#def96]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1851:25: note[note]: called from here
# 1849|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 1850|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 1851|->                 v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 1852|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 1853|                   v[10] = _mm256_add_epi32(e[10], o[10]);

Error: COMPILER_WARNING: [#def97]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1852:25: note[note]: called from here
# 1850|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 1851|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 1852|->                 v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 1853|                   v[10] = _mm256_add_epi32(e[10], o[10]);
# 1854|                   v[11] = _mm256_add_epi32(e[11], o[11]);

Error: COMPILER_WARNING: [#def98]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1853:25: note[note]: called from here
# 1851|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 1852|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 1853|->                 v[10] = _mm256_add_epi32(e[10], o[10]);
# 1854|                   v[11] = _mm256_add_epi32(e[11], o[11]);
# 1855|                   v[12] = _mm256_add_epi32(e[12], o[12]);

Error: COMPILER_WARNING: [#def99]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1854:25: note[note]: called from here
# 1852|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 1853|                   v[10] = _mm256_add_epi32(e[10], o[10]);
# 1854|->                 v[11] = _mm256_add_epi32(e[11], o[11]);
# 1855|                   v[12] = _mm256_add_epi32(e[12], o[12]);
# 1856|                   v[13] = _mm256_add_epi32(e[13], o[13]);

Error: COMPILER_WARNING: [#def100]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1855:25: note[note]: called from here
# 1853|                   v[10] = _mm256_add_epi32(e[10], o[10]);
# 1854|                   v[11] = _mm256_add_epi32(e[11], o[11]);
# 1855|->                 v[12] = _mm256_add_epi32(e[12], o[12]);
# 1856|                   v[13] = _mm256_add_epi32(e[13], o[13]);
# 1857|                   v[14] = _mm256_add_epi32(e[14], o[14]);

Error: COMPILER_WARNING: [#def101]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1856:25: note[note]: called from here
# 1854|                   v[11] = _mm256_add_epi32(e[11], o[11]);
# 1855|                   v[12] = _mm256_add_epi32(e[12], o[12]);
# 1856|->                 v[13] = _mm256_add_epi32(e[13], o[13]);
# 1857|                   v[14] = _mm256_add_epi32(e[14], o[14]);
# 1858|                   v[15] = _mm256_add_epi32(e[15], o[15]);

Error: COMPILER_WARNING: [#def102]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1857:25: note[note]: called from here
# 1855|                   v[12] = _mm256_add_epi32(e[12], o[12]);
# 1856|                   v[13] = _mm256_add_epi32(e[13], o[13]);
# 1857|->                 v[14] = _mm256_add_epi32(e[14], o[14]);
# 1858|                   v[15] = _mm256_add_epi32(e[15], o[15]);
# 1859|                   v[16] = _mm256_add_epi32(e[16], o[16]);

Error: COMPILER_WARNING: [#def103]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1858:25: note[note]: called from here
# 1856|                   v[13] = _mm256_add_epi32(e[13], o[13]);
# 1857|                   v[14] = _mm256_add_epi32(e[14], o[14]);
# 1858|->                 v[15] = _mm256_add_epi32(e[15], o[15]);
# 1859|                   v[16] = _mm256_add_epi32(e[16], o[16]);
# 1860|                   v[17] = _mm256_add_epi32(e[17], o[17]);

Error: COMPILER_WARNING: [#def104]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1859:25: note[note]: called from here
# 1857|                   v[14] = _mm256_add_epi32(e[14], o[14]);
# 1858|                   v[15] = _mm256_add_epi32(e[15], o[15]);
# 1859|->                 v[16] = _mm256_add_epi32(e[16], o[16]);
# 1860|                   v[17] = _mm256_add_epi32(e[17], o[17]);
# 1861|                   v[18] = _mm256_add_epi32(e[18], o[18]);

Error: COMPILER_WARNING: [#def105]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1860:25: note[note]: called from here
# 1858|                   v[15] = _mm256_add_epi32(e[15], o[15]);
# 1859|                   v[16] = _mm256_add_epi32(e[16], o[16]);
# 1860|->                 v[17] = _mm256_add_epi32(e[17], o[17]);
# 1861|                   v[18] = _mm256_add_epi32(e[18], o[18]);
# 1862|                   v[19] = _mm256_add_epi32(e[19], o[19]);

Error: COMPILER_WARNING: [#def106]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1861:25: note[note]: called from here
# 1859|                   v[16] = _mm256_add_epi32(e[16], o[16]);
# 1860|                   v[17] = _mm256_add_epi32(e[17], o[17]);
# 1861|->                 v[18] = _mm256_add_epi32(e[18], o[18]);
# 1862|                   v[19] = _mm256_add_epi32(e[19], o[19]);
# 1863|                   v[20] = _mm256_add_epi32(e[20], o[20]);

Error: COMPILER_WARNING: [#def107]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1862:25: note[note]: called from here
# 1860|                   v[17] = _mm256_add_epi32(e[17], o[17]);
# 1861|                   v[18] = _mm256_add_epi32(e[18], o[18]);
# 1862|->                 v[19] = _mm256_add_epi32(e[19], o[19]);
# 1863|                   v[20] = _mm256_add_epi32(e[20], o[20]);
# 1864|                   v[21] = _mm256_add_epi32(e[21], o[21]);

Error: COMPILER_WARNING: [#def108]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1863:25: note[note]: called from here
# 1861|                   v[18] = _mm256_add_epi32(e[18], o[18]);
# 1862|                   v[19] = _mm256_add_epi32(e[19], o[19]);
# 1863|->                 v[20] = _mm256_add_epi32(e[20], o[20]);
# 1864|                   v[21] = _mm256_add_epi32(e[21], o[21]);
# 1865|                   v[22] = _mm256_add_epi32(e[22], o[22]);

Error: COMPILER_WARNING: [#def109]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1864:25: note[note]: called from here
# 1862|                   v[19] = _mm256_add_epi32(e[19], o[19]);
# 1863|                   v[20] = _mm256_add_epi32(e[20], o[20]);
# 1864|->                 v[21] = _mm256_add_epi32(e[21], o[21]);
# 1865|                   v[22] = _mm256_add_epi32(e[22], o[22]);
# 1866|                   v[23] = _mm256_add_epi32(e[23], o[23]);

Error: COMPILER_WARNING: [#def110]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1865:25: note[note]: called from here
# 1863|                   v[20] = _mm256_add_epi32(e[20], o[20]);
# 1864|                   v[21] = _mm256_add_epi32(e[21], o[21]);
# 1865|->                 v[22] = _mm256_add_epi32(e[22], o[22]);
# 1866|                   v[23] = _mm256_add_epi32(e[23], o[23]);
# 1867|                   v[24] = _mm256_add_epi32(e[24], o[24]);

Error: COMPILER_WARNING: [#def111]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1866:25: note[note]: called from here
# 1864|                   v[21] = _mm256_add_epi32(e[21], o[21]);
# 1865|                   v[22] = _mm256_add_epi32(e[22], o[22]);
# 1866|->                 v[23] = _mm256_add_epi32(e[23], o[23]);
# 1867|                   v[24] = _mm256_add_epi32(e[24], o[24]);
# 1868|                   v[25] = _mm256_add_epi32(e[25], o[25]);

Error: COMPILER_WARNING: [#def112]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1867:25: note[note]: called from here
# 1865|                   v[22] = _mm256_add_epi32(e[22], o[22]);
# 1866|                   v[23] = _mm256_add_epi32(e[23], o[23]);
# 1867|->                 v[24] = _mm256_add_epi32(e[24], o[24]);
# 1868|                   v[25] = _mm256_add_epi32(e[25], o[25]);
# 1869|                   v[26] = _mm256_add_epi32(e[26], o[26]);

Error: COMPILER_WARNING: [#def113]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1868:25: note[note]: called from here
# 1866|                   v[23] = _mm256_add_epi32(e[23], o[23]);
# 1867|                   v[24] = _mm256_add_epi32(e[24], o[24]);
# 1868|->                 v[25] = _mm256_add_epi32(e[25], o[25]);
# 1869|                   v[26] = _mm256_add_epi32(e[26], o[26]);
# 1870|                   v[27] = _mm256_add_epi32(e[27], o[27]);

Error: COMPILER_WARNING: [#def114]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1869:25: note[note]: called from here
# 1867|                   v[24] = _mm256_add_epi32(e[24], o[24]);
# 1868|                   v[25] = _mm256_add_epi32(e[25], o[25]);
# 1869|->                 v[26] = _mm256_add_epi32(e[26], o[26]);
# 1870|                   v[27] = _mm256_add_epi32(e[27], o[27]);
# 1871|                   v[28] = _mm256_add_epi32(e[28], o[28]);

Error: COMPILER_WARNING: [#def115]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1870:25: note[note]: called from here
# 1868|                   v[25] = _mm256_add_epi32(e[25], o[25]);
# 1869|                   v[26] = _mm256_add_epi32(e[26], o[26]);
# 1870|->                 v[27] = _mm256_add_epi32(e[27], o[27]);
# 1871|                   v[28] = _mm256_add_epi32(e[28], o[28]);
# 1872|                   v[29] = _mm256_add_epi32(e[29], o[29]);

Error: COMPILER_WARNING: [#def116]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1871:25: note[note]: called from here
# 1869|                   v[26] = _mm256_add_epi32(e[26], o[26]);
# 1870|                   v[27] = _mm256_add_epi32(e[27], o[27]);
# 1871|->                 v[28] = _mm256_add_epi32(e[28], o[28]);
# 1872|                   v[29] = _mm256_add_epi32(e[29], o[29]);
# 1873|                   v[30] = _mm256_add_epi32(e[30], o[30]);

Error: COMPILER_WARNING: [#def117]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1872:25: note[note]: called from here
# 1870|                   v[27] = _mm256_add_epi32(e[27], o[27]);
# 1871|                   v[28] = _mm256_add_epi32(e[28], o[28]);
# 1872|->                 v[29] = _mm256_add_epi32(e[29], o[29]);
# 1873|                   v[30] = _mm256_add_epi32(e[30], o[30]);
# 1874|                   v[31] = _mm256_add_epi32(e[31], o[31]);

Error: COMPILER_WARNING: [#def118]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1873:25: note[note]: called from here
# 1871|                   v[28] = _mm256_add_epi32(e[28], o[28]);
# 1872|                   v[29] = _mm256_add_epi32(e[29], o[29]);
# 1873|->                 v[30] = _mm256_add_epi32(e[30], o[30]);
# 1874|                   v[31] = _mm256_add_epi32(e[31], o[31]);
# 1875|                   v[32] = _mm256_sub_epi32(e[31], o[31]);

Error: COMPILER_WARNING: [#def119]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1874:25: note[note]: called from here
# 1872|                   v[29] = _mm256_add_epi32(e[29], o[29]);
# 1873|                   v[30] = _mm256_add_epi32(e[30], o[30]);
# 1874|->                 v[31] = _mm256_add_epi32(e[31], o[31]);
# 1875|                   v[32] = _mm256_sub_epi32(e[31], o[31]);
# 1876|                   v[33] = _mm256_sub_epi32(e[30], o[30]);

Error: COMPILER_WARNING: [#def120]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1875:25: note[note]: called from here
# 1873|                   v[30] = _mm256_add_epi32(e[30], o[30]);
# 1874|                   v[31] = _mm256_add_epi32(e[31], o[31]);
# 1875|->                 v[32] = _mm256_sub_epi32(e[31], o[31]);
# 1876|                   v[33] = _mm256_sub_epi32(e[30], o[30]);
# 1877|                   v[34] = _mm256_sub_epi32(e[29], o[29]);

Error: COMPILER_WARNING: [#def121]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1876:25: note[note]: called from here
# 1874|                   v[31] = _mm256_add_epi32(e[31], o[31]);
# 1875|                   v[32] = _mm256_sub_epi32(e[31], o[31]);
# 1876|->                 v[33] = _mm256_sub_epi32(e[30], o[30]);
# 1877|                   v[34] = _mm256_sub_epi32(e[29], o[29]);
# 1878|                   v[35] = _mm256_sub_epi32(e[28], o[28]);

Error: COMPILER_WARNING: [#def122]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1877:25: note[note]: called from here
# 1875|                   v[32] = _mm256_sub_epi32(e[31], o[31]);
# 1876|                   v[33] = _mm256_sub_epi32(e[30], o[30]);
# 1877|->                 v[34] = _mm256_sub_epi32(e[29], o[29]);
# 1878|                   v[35] = _mm256_sub_epi32(e[28], o[28]);
# 1879|                   v[36] = _mm256_sub_epi32(e[27], o[27]);

Error: COMPILER_WARNING: [#def123]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1878:25: note[note]: called from here
# 1876|                   v[33] = _mm256_sub_epi32(e[30], o[30]);
# 1877|                   v[34] = _mm256_sub_epi32(e[29], o[29]);
# 1878|->                 v[35] = _mm256_sub_epi32(e[28], o[28]);
# 1879|                   v[36] = _mm256_sub_epi32(e[27], o[27]);
# 1880|                   v[37] = _mm256_sub_epi32(e[26], o[26]);

Error: COMPILER_WARNING: [#def124]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1879:25: note[note]: called from here
# 1877|                   v[34] = _mm256_sub_epi32(e[29], o[29]);
# 1878|                   v[35] = _mm256_sub_epi32(e[28], o[28]);
# 1879|->                 v[36] = _mm256_sub_epi32(e[27], o[27]);
# 1880|                   v[37] = _mm256_sub_epi32(e[26], o[26]);
# 1881|                   v[38] = _mm256_sub_epi32(e[25], o[25]);

Error: COMPILER_WARNING: [#def125]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1880:25: note[note]: called from here
# 1878|                   v[35] = _mm256_sub_epi32(e[28], o[28]);
# 1879|                   v[36] = _mm256_sub_epi32(e[27], o[27]);
# 1880|->                 v[37] = _mm256_sub_epi32(e[26], o[26]);
# 1881|                   v[38] = _mm256_sub_epi32(e[25], o[25]);
# 1882|                   v[39] = _mm256_sub_epi32(e[24], o[24]);

Error: COMPILER_WARNING: [#def126]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1881:25: note[note]: called from here
# 1879|                   v[36] = _mm256_sub_epi32(e[27], o[27]);
# 1880|                   v[37] = _mm256_sub_epi32(e[26], o[26]);
# 1881|->                 v[38] = _mm256_sub_epi32(e[25], o[25]);
# 1882|                   v[39] = _mm256_sub_epi32(e[24], o[24]);
# 1883|                   v[40] = _mm256_sub_epi32(e[23], o[23]);

Error: COMPILER_WARNING: [#def127]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1882:25: note[note]: called from here
# 1880|                   v[37] = _mm256_sub_epi32(e[26], o[26]);
# 1881|                   v[38] = _mm256_sub_epi32(e[25], o[25]);
# 1882|->                 v[39] = _mm256_sub_epi32(e[24], o[24]);
# 1883|                   v[40] = _mm256_sub_epi32(e[23], o[23]);
# 1884|                   v[41] = _mm256_sub_epi32(e[22], o[22]);

Error: COMPILER_WARNING: [#def128]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1883:25: note[note]: called from here
# 1881|                   v[38] = _mm256_sub_epi32(e[25], o[25]);
# 1882|                   v[39] = _mm256_sub_epi32(e[24], o[24]);
# 1883|->                 v[40] = _mm256_sub_epi32(e[23], o[23]);
# 1884|                   v[41] = _mm256_sub_epi32(e[22], o[22]);
# 1885|                   v[42] = _mm256_sub_epi32(e[21], o[21]);

Error: COMPILER_WARNING: [#def129]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1884:25: note[note]: called from here
# 1882|                   v[39] = _mm256_sub_epi32(e[24], o[24]);
# 1883|                   v[40] = _mm256_sub_epi32(e[23], o[23]);
# 1884|->                 v[41] = _mm256_sub_epi32(e[22], o[22]);
# 1885|                   v[42] = _mm256_sub_epi32(e[21], o[21]);
# 1886|                   v[43] = _mm256_sub_epi32(e[20], o[20]);

Error: COMPILER_WARNING: [#def130]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1885:25: note[note]: called from here
# 1883|                   v[40] = _mm256_sub_epi32(e[23], o[23]);
# 1884|                   v[41] = _mm256_sub_epi32(e[22], o[22]);
# 1885|->                 v[42] = _mm256_sub_epi32(e[21], o[21]);
# 1886|                   v[43] = _mm256_sub_epi32(e[20], o[20]);
# 1887|                   v[44] = _mm256_sub_epi32(e[19], o[19]);

Error: COMPILER_WARNING: [#def131]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1886:25: note[note]: called from here
# 1884|                   v[41] = _mm256_sub_epi32(e[22], o[22]);
# 1885|                   v[42] = _mm256_sub_epi32(e[21], o[21]);
# 1886|->                 v[43] = _mm256_sub_epi32(e[20], o[20]);
# 1887|                   v[44] = _mm256_sub_epi32(e[19], o[19]);
# 1888|                   v[45] = _mm256_sub_epi32(e[18], o[18]);

Error: COMPILER_WARNING: [#def132]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1887:25: note[note]: called from here
# 1885|                   v[42] = _mm256_sub_epi32(e[21], o[21]);
# 1886|                   v[43] = _mm256_sub_epi32(e[20], o[20]);
# 1887|->                 v[44] = _mm256_sub_epi32(e[19], o[19]);
# 1888|                   v[45] = _mm256_sub_epi32(e[18], o[18]);
# 1889|                   v[46] = _mm256_sub_epi32(e[17], o[17]);

Error: COMPILER_WARNING: [#def133]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1888:25: note[note]: called from here
# 1886|                   v[43] = _mm256_sub_epi32(e[20], o[20]);
# 1887|                   v[44] = _mm256_sub_epi32(e[19], o[19]);
# 1888|->                 v[45] = _mm256_sub_epi32(e[18], o[18]);
# 1889|                   v[46] = _mm256_sub_epi32(e[17], o[17]);
# 1890|                   v[47] = _mm256_sub_epi32(e[16], o[16]);

Error: COMPILER_WARNING: [#def134]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1889:25: note[note]: called from here
# 1887|                   v[44] = _mm256_sub_epi32(e[19], o[19]);
# 1888|                   v[45] = _mm256_sub_epi32(e[18], o[18]);
# 1889|->                 v[46] = _mm256_sub_epi32(e[17], o[17]);
# 1890|                   v[47] = _mm256_sub_epi32(e[16], o[16]);
# 1891|                   v[48] = _mm256_sub_epi32(e[15], o[15]);

Error: COMPILER_WARNING: [#def135]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1890:25: note[note]: called from here
# 1888|                   v[45] = _mm256_sub_epi32(e[18], o[18]);
# 1889|                   v[46] = _mm256_sub_epi32(e[17], o[17]);
# 1890|->                 v[47] = _mm256_sub_epi32(e[16], o[16]);
# 1891|                   v[48] = _mm256_sub_epi32(e[15], o[15]);
# 1892|                   v[49] = _mm256_sub_epi32(e[14], o[14]);

Error: COMPILER_WARNING: [#def136]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1891:25: note[note]: called from here
# 1889|                   v[46] = _mm256_sub_epi32(e[17], o[17]);
# 1890|                   v[47] = _mm256_sub_epi32(e[16], o[16]);
# 1891|->                 v[48] = _mm256_sub_epi32(e[15], o[15]);
# 1892|                   v[49] = _mm256_sub_epi32(e[14], o[14]);
# 1893|                   v[50] = _mm256_sub_epi32(e[13], o[13]);

Error: COMPILER_WARNING: [#def137]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1892:25: note[note]: called from here
# 1890|                   v[47] = _mm256_sub_epi32(e[16], o[16]);
# 1891|                   v[48] = _mm256_sub_epi32(e[15], o[15]);
# 1892|->                 v[49] = _mm256_sub_epi32(e[14], o[14]);
# 1893|                   v[50] = _mm256_sub_epi32(e[13], o[13]);
# 1894|                   v[51] = _mm256_sub_epi32(e[12], o[12]);

Error: COMPILER_WARNING: [#def138]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1893:25: note[note]: called from here
# 1891|                   v[48] = _mm256_sub_epi32(e[15], o[15]);
# 1892|                   v[49] = _mm256_sub_epi32(e[14], o[14]);
# 1893|->                 v[50] = _mm256_sub_epi32(e[13], o[13]);
# 1894|                   v[51] = _mm256_sub_epi32(e[12], o[12]);
# 1895|                   v[52] = _mm256_sub_epi32(e[11], o[11]);

Error: COMPILER_WARNING: [#def139]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1894:25: note[note]: called from here
# 1892|                   v[49] = _mm256_sub_epi32(e[14], o[14]);
# 1893|                   v[50] = _mm256_sub_epi32(e[13], o[13]);
# 1894|->                 v[51] = _mm256_sub_epi32(e[12], o[12]);
# 1895|                   v[52] = _mm256_sub_epi32(e[11], o[11]);
# 1896|                   v[53] = _mm256_sub_epi32(e[10], o[10]);

Error: COMPILER_WARNING: [#def140]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1895:25: note[note]: called from here
# 1893|                   v[50] = _mm256_sub_epi32(e[13], o[13]);
# 1894|                   v[51] = _mm256_sub_epi32(e[12], o[12]);
# 1895|->                 v[52] = _mm256_sub_epi32(e[11], o[11]);
# 1896|                   v[53] = _mm256_sub_epi32(e[10], o[10]);
# 1897|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);

Error: COMPILER_WARNING: [#def141]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1896:25: note[note]: called from here
# 1894|                   v[51] = _mm256_sub_epi32(e[12], o[12]);
# 1895|                   v[52] = _mm256_sub_epi32(e[11], o[11]);
# 1896|->                 v[53] = _mm256_sub_epi32(e[10], o[10]);
# 1897|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 1898|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);

Error: COMPILER_WARNING: [#def142]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1897:25: note[note]: called from here
# 1895|                   v[52] = _mm256_sub_epi32(e[11], o[11]);
# 1896|                   v[53] = _mm256_sub_epi32(e[10], o[10]);
# 1897|->                 v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 1898|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 1899|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);

Error: COMPILER_WARNING: [#def143]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1898:25: note[note]: called from here
# 1896|                   v[53] = _mm256_sub_epi32(e[10], o[10]);
# 1897|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 1898|->                 v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 1899|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 1900|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);

Error: COMPILER_WARNING: [#def144]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1899:25: note[note]: called from here
# 1897|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 1898|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 1899|->                 v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 1900|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 1901|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);

Error: COMPILER_WARNING: [#def145]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1900:25: note[note]: called from here
# 1898|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 1899|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 1900|->                 v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 1901|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 1902|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);

Error: COMPILER_WARNING: [#def146]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1901:25: note[note]: called from here
# 1899|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 1900|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 1901|->                 v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 1902|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 1903|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);

Error: COMPILER_WARNING: [#def147]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1902:25: note[note]: called from here
# 1900|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 1901|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 1902|->                 v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 1903|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 1904|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);

Error: COMPILER_WARNING: [#def148]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1903:25: note[note]: called from here
# 1901|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 1902|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 1903|->                 v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 1904|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 1905|                   v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);

Error: COMPILER_WARNING: [#def149]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1904:25: note[note]: called from here
# 1902|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 1903|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 1904|->                 v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 1905|                   v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);
# 1906|                   v[63] = _mm256_sub_epi32(e[ 0], o[ 0]);

Error: COMPILER_WARNING: [#def150]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1905:25: note[note]: called from here
# 1903|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 1904|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 1905|->                 v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);
# 1906|                   v[63] = _mm256_sub_epi32(e[ 0], o[ 0]);
# 1907|    

Error: COMPILER_WARNING: [#def151]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1906:25: note[note]: called from here
# 1904|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 1905|                   v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);
# 1906|->                 v[63] = _mm256_sub_epi32(e[ 0], o[ 0]);
# 1907|    
# 1908|                   for (int i = 0; i < 64; i++)

Error: COMPILER_WARNING: [#def152]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1910:21: note[note]: called from here
# 1908|                   for (int i = 0; i < 64; i++)
# 1909|                   {
# 1910|->                     XEVD_ITX_CLIP(v[i], min_val, max_val);
# 1911|                   }
# 1912|   

Error: COMPILER_WARNING: [#def153]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1941:17: note[note]: called from here
# 1939|   d[d7] = _mm256_permute2f128_si256(v[6], v[7], 0x31);
# 1940|   
# 1941|->                 XEVD_ITX_32B_TRANSPOS_8x8( 0,  1,  2,  3,  4,  5,  6,  7, 0,  8, 16, 24, 32, 40, 48, 56);
# 1942|                   XEVD_ITX_32B_TRANSPOS_8x8( 8,  9, 10, 11, 12, 13, 14, 15, 1,  9, 17, 25, 33, 41, 49, 57);
# 1943|                   XEVD_ITX_32B_TRANSPOS_8x8(16, 17, 18, 19, 20, 21, 22, 23, 2, 10, 18, 26, 34, 42, 50, 58);

Error: COMPILER_WARNING: [#def154]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1942:17: note[note]: called from here
# 1940|   
# 1941|                   XEVD_ITX_32B_TRANSPOS_8x8( 0,  1,  2,  3,  4,  5,  6,  7, 0,  8, 16, 24, 32, 40, 48, 56);
# 1942|->                 XEVD_ITX_32B_TRANSPOS_8x8( 8,  9, 10, 11, 12, 13, 14, 15, 1,  9, 17, 25, 33, 41, 49, 57);
# 1943|                   XEVD_ITX_32B_TRANSPOS_8x8(16, 17, 18, 19, 20, 21, 22, 23, 2, 10, 18, 26, 34, 42, 50, 58);
# 1944|                   XEVD_ITX_32B_TRANSPOS_8x8(24, 25, 26, 27, 28, 29, 30, 31, 3, 11, 19, 27, 35, 43, 51, 59);

Error: COMPILER_WARNING: [#def155]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1943:17: note[note]: called from here
# 1941|                   XEVD_ITX_32B_TRANSPOS_8x8( 0,  1,  2,  3,  4,  5,  6,  7, 0,  8, 16, 24, 32, 40, 48, 56);
# 1942|                   XEVD_ITX_32B_TRANSPOS_8x8( 8,  9, 10, 11, 12, 13, 14, 15, 1,  9, 17, 25, 33, 41, 49, 57);
# 1943|->                 XEVD_ITX_32B_TRANSPOS_8x8(16, 17, 18, 19, 20, 21, 22, 23, 2, 10, 18, 26, 34, 42, 50, 58);
# 1944|                   XEVD_ITX_32B_TRANSPOS_8x8(24, 25, 26, 27, 28, 29, 30, 31, 3, 11, 19, 27, 35, 43, 51, 59);
# 1945|                   XEVD_ITX_32B_TRANSPOS_8x8(32, 33, 34, 35, 36, 37, 38, 39, 4, 12, 20, 28, 36, 44, 52, 60)

Error: COMPILER_WARNING: [#def156]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1944:17: note[note]: called from here
# 1942|                   XEVD_ITX_32B_TRANSPOS_8x8( 8,  9, 10, 11, 12, 13, 14, 15, 1,  9, 17, 25, 33, 41, 49, 57);
# 1943|                   XEVD_ITX_32B_TRANSPOS_8x8(16, 17, 18, 19, 20, 21, 22, 23, 2, 10, 18, 26, 34, 42, 50, 58);
# 1944|->                 XEVD_ITX_32B_TRANSPOS_8x8(24, 25, 26, 27, 28, 29, 30, 31, 3, 11, 19, 27, 35, 43, 51, 59);
# 1945|                   XEVD_ITX_32B_TRANSPOS_8x8(32, 33, 34, 35, 36, 37, 38, 39, 4, 12, 20, 28, 36, 44, 52, 60)
# 1946|                   XEVD_ITX_32B_TRANSPOS_8x8(40, 41, 42, 43, 44, 45, 46, 47, 5, 13, 21, 29, 37, 45, 53, 61);

Error: COMPILER_WARNING: [#def157]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1945:17: note[note]: called from here
# 1943|                   XEVD_ITX_32B_TRANSPOS_8x8(16, 17, 18, 19, 20, 21, 22, 23, 2, 10, 18, 26, 34, 42, 50, 58);
# 1944|                   XEVD_ITX_32B_TRANSPOS_8x8(24, 25, 26, 27, 28, 29, 30, 31, 3, 11, 19, 27, 35, 43, 51, 59);
# 1945|->                 XEVD_ITX_32B_TRANSPOS_8x8(32, 33, 34, 35, 36, 37, 38, 39, 4, 12, 20, 28, 36, 44, 52, 60)
# 1946|                   XEVD_ITX_32B_TRANSPOS_8x8(40, 41, 42, 43, 44, 45, 46, 47, 5, 13, 21, 29, 37, 45, 53, 61);
# 1947|                   XEVD_ITX_32B_TRANSPOS_8x8(48, 49, 50, 51, 52, 53, 54, 55, 6, 14, 22, 30, 38, 46, 54, 62);

Error: COMPILER_WARNING: [#def158]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1946:17: note[note]: called from here
# 1944|                   XEVD_ITX_32B_TRANSPOS_8x8(24, 25, 26, 27, 28, 29, 30, 31, 3, 11, 19, 27, 35, 43, 51, 59);
# 1945|                   XEVD_ITX_32B_TRANSPOS_8x8(32, 33, 34, 35, 36, 37, 38, 39, 4, 12, 20, 28, 36, 44, 52, 60)
# 1946|->                 XEVD_ITX_32B_TRANSPOS_8x8(40, 41, 42, 43, 44, 45, 46, 47, 5, 13, 21, 29, 37, 45, 53, 61);
# 1947|                   XEVD_ITX_32B_TRANSPOS_8x8(48, 49, 50, 51, 52, 53, 54, 55, 6, 14, 22, 30, 38, 46, 54, 62);
# 1948|                   XEVD_ITX_32B_TRANSPOS_8x8(56, 57, 58, 59, 60, 61, 62, 63, 7, 15, 23, 31, 39, 47, 55, 63);

Error: COMPILER_WARNING: [#def159]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1947:17: note[note]: called from here
# 1945|                   XEVD_ITX_32B_TRANSPOS_8x8(32, 33, 34, 35, 36, 37, 38, 39, 4, 12, 20, 28, 36, 44, 52, 60)
# 1946|                   XEVD_ITX_32B_TRANSPOS_8x8(40, 41, 42, 43, 44, 45, 46, 47, 5, 13, 21, 29, 37, 45, 53, 61);
# 1947|->                 XEVD_ITX_32B_TRANSPOS_8x8(48, 49, 50, 51, 52, 53, 54, 55, 6, 14, 22, 30, 38, 46, 54, 62);
# 1948|                   XEVD_ITX_32B_TRANSPOS_8x8(56, 57, 58, 59, 60, 61, 62, 63, 7, 15, 23, 31, 39, 47, 55, 63);
# 1949|   

Error: COMPILER_WARNING: [#def160]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1948:17: note[note]: called from here
# 1946|                   XEVD_ITX_32B_TRANSPOS_8x8(40, 41, 42, 43, 44, 45, 46, 47, 5, 13, 21, 29, 37, 45, 53, 61);
# 1947|                   XEVD_ITX_32B_TRANSPOS_8x8(48, 49, 50, 51, 52, 53, 54, 55, 6, 14, 22, 30, 38, 46, 54, 62);
# 1948|->                 XEVD_ITX_32B_TRANSPOS_8x8(56, 57, 58, 59, 60, 61, 62, 63, 7, 15, 23, 31, 39, 47, 55, 63);
# 1949|   
# 1950|   

Error: COMPILER_WARNING: [#def161]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1953:21: note[note]: called from here
# 1951|                   for (i = 0; i < 64; i++)
# 1952|                   {
# 1953|->                     _mm256_storeu_si256((__m256i*)(pel_dst), d[i]);
# 1954|                       pel_dst += 8;
# 1955|                   }

Error: COMPILER_WARNING: [#def162]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1975:37: note[note]: called from here
# 1973|               __m256i v[64];
# 1974|               __m256i t[32];
# 1975|->             const __m256i max_val = _mm256_set1_epi32(MAX_TX_VAL_32);
# 1976|               const __m256i min_val = _mm256_set1_epi32(MIN_TX_VAL_32);
# 1977|               const __m256i add_s2 = _mm256_set1_epi32(add);

Error: COMPILER_WARNING: [#def163]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1976:37: note[note]: called from here
# 1974|               __m256i t[32];
# 1975|               const __m256i max_val = _mm256_set1_epi32(MAX_TX_VAL_32);
# 1976|->             const __m256i min_val = _mm256_set1_epi32(MIN_TX_VAL_32);
# 1977|               const __m256i add_s2 = _mm256_set1_epi32(add);
# 1978|               __m256i coef[32][32];

Error: COMPILER_WARNING: [#def164]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1977:36: note[note]: called from here
# 1975|               const __m256i max_val = _mm256_set1_epi32(MAX_TX_VAL_32);
# 1976|               const __m256i min_val = _mm256_set1_epi32(MIN_TX_VAL_32);
# 1977|->             const __m256i add_s2 = _mm256_set1_epi32(add);
# 1978|               __m256i coef[32][32];
# 1979|               int i, j, i_src[64];

Error: COMPILER_WARNING: [#def165]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:1985:34: note[note]: called from here
# 1983|                   for (j = 0; j < 32; j++)
# 1984|                   {
# 1985|->                     coef[i][j] = _mm256_set1_epi64x(((s64)(xevd_tbl_tm64[j + 32][i]) << 32) | (xevd_tbl_tm64[j][i] & 0xFFFFFFFF));
# 1986|                   }
# 1987|               }

Error: COMPILER_WARNING: [#def166]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2000:28: note[note]: called from here
# 1998|                   for (i = 0; i < 64; i++)
# 1999|                   {
# 2000|->                     r[i] = _mm256_loadu_si256((__m256i*)(pel_src + i_src[i] + j));
# 2001|                   }
# 2002|   

Error: COMPILER_WARNING: [#def167]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2005:28: note[note]: called from here
# 2003|                   for (i = 0; i < 32; i++)
# 2004|                   {
# 2005|->                     a[i] = _mm256_unpacklo_epi32(r[i], r[i + 32]);
# 2006|                       b[i] = _mm256_unpackhi_epi32(r[i], r[i + 32]);
# 2007|                   }

Error: COMPILER_WARNING: [#def168]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2006:28: note[note]: called from here
# 2004|                   {
# 2005|                       a[i] = _mm256_unpacklo_epi32(r[i], r[i + 32]);
# 2006|->                     b[i] = _mm256_unpackhi_epi32(r[i], r[i + 32]);
# 2007|                   }
# 2008|   

Error: COMPILER_WARNING: [#def169]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2053:21: note[note]: called from here
# 2051|                   for (i = 0; i < 32; i++)
# 2052|                   {
# 2053|->                     XEVD_ITX64_0_32B(o[i], i);
# 2054|                   }
# 2055|   #undef XEVD_ITX64_0_32B

Error: COMPILER_WARNING: [#def170]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2078:21: note[note]: called from here
# 2076|                   for (i = 0; i < 16; i++)
# 2077|                   {
# 2078|->                     XEVD_ITX64_E0_32B(eo[i], i);
# 2079|                   }
# 2080|   #undef XEVD_ITX64_E0_32B

Error: COMPILER_WARNING: [#def171]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2093:21: note[note]: called from here
# 2091|                   for (i = 0; i < 8; i++)
# 2092|                   {
# 2093|->                     XEVD_ITX64_EE0_32B(eeo[i], i);
# 2094|                   }
# 2095|   #undef XEVD_ITX64_EE0_32B

Error: COMPILER_WARNING: [#def172]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2104:21: note[note]: called from here
# 2102|                   for (i = 0; i < 4; i++)
# 2103|                   {
# 2104|->                     XEVD_ITX64_EEEO_32B(eeeo[i], i);
# 2105|                   }
# 2106|   #undef XEVD_ITX64_EEEO_32B

Error: COMPILER_WARNING: [#def173]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2108:17: note[note]: called from here
# 2106|   #undef XEVD_ITX64_EEEO_32B
# 2107|   
# 2108|->                 XEVD_ITX_MADD(eeeeo[0], 16, 0);
# 2109|                   XEVD_ITX_MADD(eeeeo[1], 16, 1);
# 2110|                   XEVD_ITX_MADD(eeeee[0],  0, 0);

Error: COMPILER_WARNING: [#def174]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2109:17: note[note]: called from here
# 2107|   
# 2108|                   XEVD_ITX_MADD(eeeeo[0], 16, 0);
# 2109|->                 XEVD_ITX_MADD(eeeeo[1], 16, 1);
# 2110|                   XEVD_ITX_MADD(eeeee[0],  0, 0);
# 2111|                   XEVD_ITX_MADD(eeeee[1],  0, 1);

Error: COMPILER_WARNING: [#def175]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2110:17: note[note]: called from here
# 2108|                   XEVD_ITX_MADD(eeeeo[0], 16, 0);
# 2109|                   XEVD_ITX_MADD(eeeeo[1], 16, 1);
# 2110|->                 XEVD_ITX_MADD(eeeee[0],  0, 0);
# 2111|                   XEVD_ITX_MADD(eeeee[1],  0, 1);
# 2112|   

Error: COMPILER_WARNING: [#def176]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2111:17: note[note]: called from here
# 2109|                   XEVD_ITX_MADD(eeeeo[1], 16, 1);
# 2110|                   XEVD_ITX_MADD(eeeee[0],  0, 0);
# 2111|->                 XEVD_ITX_MADD(eeeee[1],  0, 1);
# 2112|   
# 2113|                   eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);

Error: COMPILER_WARNING: [#def177]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2113:27: note[note]: called from here
# 2111|                   XEVD_ITX_MADD(eeeee[1],  0, 1);
# 2112|   
# 2113|->                 eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);
# 2114|                   eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 2115|                   eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);

Error: COMPILER_WARNING: [#def178]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2114:27: note[note]: called from here
# 2112|   
# 2113|                   eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);
# 2114|->                 eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 2115|                   eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);
# 2116|                   eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);

Error: COMPILER_WARNING: [#def179]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2115:27: note[note]: called from here
# 2113|                   eeee[0] = _mm256_add_epi32(eeeee[0], eeeeo[0]);
# 2114|                   eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 2115|->                 eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);
# 2116|                   eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);
# 2117|   

Error: COMPILER_WARNING: [#def180]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2116:27: note[note]: called from here
# 2114|                   eeee[1] = _mm256_add_epi32(eeeee[1], eeeeo[1]);
# 2115|                   eeee[2] = _mm256_sub_epi32(eeeee[1], eeeeo[1]);
# 2116|->                 eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);
# 2117|   
# 2118|                   eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);

Error: COMPILER_WARNING: [#def181]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2118:26: note[note]: called from here
# 2116|                   eeee[3] = _mm256_sub_epi32(eeeee[0], eeeeo[0]);
# 2117|   
# 2118|->                 eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);
# 2119|                   eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 2120|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);

Error: COMPILER_WARNING: [#def182]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2119:26: note[note]: called from here
# 2117|   
# 2118|                   eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);
# 2119|->                 eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 2120|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 2121|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);

Error: COMPILER_WARNING: [#def183]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2120:26: note[note]: called from here
# 2118|                   eee[0] = _mm256_add_epi32(eeee[0], eeeo[0]);
# 2119|                   eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 2120|->                 eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 2121|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 2122|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);

Error: COMPILER_WARNING: [#def184]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2121:26: note[note]: called from here
# 2119|                   eee[1] = _mm256_add_epi32(eeee[1], eeeo[1]);
# 2120|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 2121|->                 eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 2122|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 2123|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);

Error: COMPILER_WARNING: [#def185]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2122:26: note[note]: called from here
# 2120|                   eee[2] = _mm256_add_epi32(eeee[2], eeeo[2]);
# 2121|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 2122|->                 eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 2123|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 2124|                   eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);

Error: COMPILER_WARNING: [#def186]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2123:26: note[note]: called from here
# 2121|                   eee[3] = _mm256_add_epi32(eeee[3], eeeo[3]);
# 2122|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 2123|->                 eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 2124|                   eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);
# 2125|                   eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);

Error: COMPILER_WARNING: [#def187]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2124:26: note[note]: called from here
# 2122|                   eee[4] = _mm256_sub_epi32(eeee[3], eeeo[3]);
# 2123|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 2124|->                 eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);
# 2125|                   eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);
# 2126|   

Error: COMPILER_WARNING: [#def188]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2125:26: note[note]: called from here
# 2123|                   eee[5] = _mm256_sub_epi32(eeee[2], eeeo[2]);
# 2124|                   eee[6] = _mm256_sub_epi32(eeee[1], eeeo[1]);
# 2125|->                 eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);
# 2126|   
# 2127|                   ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);

Error: COMPILER_WARNING: [#def189]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2127:26: note[note]: called from here
# 2125|                   eee[7] = _mm256_sub_epi32(eeee[0], eeeo[0]);
# 2126|   
# 2127|->                 ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);
# 2128|                   ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 2129|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);

Error: COMPILER_WARNING: [#def190]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2128:26: note[note]: called from here
# 2126|   
# 2127|                   ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);
# 2128|->                 ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 2129|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 2130|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);

Error: COMPILER_WARNING: [#def191]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2129:26: note[note]: called from here
# 2127|                   ee[ 0] = _mm256_add_epi32(eee[0], eeo[0]);
# 2128|                   ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 2129|->                 ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 2130|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 2131|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);

Error: COMPILER_WARNING: [#def192]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2130:26: note[note]: called from here
# 2128|                   ee[ 1] = _mm256_add_epi32(eee[1], eeo[1]);
# 2129|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 2130|->                 ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 2131|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 2132|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);

Error: COMPILER_WARNING: [#def193]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2131:26: note[note]: called from here
# 2129|                   ee[ 2] = _mm256_add_epi32(eee[2], eeo[2]);
# 2130|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 2131|->                 ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 2132|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 2133|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);

Error: COMPILER_WARNING: [#def194]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2132:26: note[note]: called from here
# 2130|                   ee[ 3] = _mm256_add_epi32(eee[3], eeo[3]);
# 2131|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 2132|->                 ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 2133|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 2134|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);

Error: COMPILER_WARNING: [#def195]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2133:26: note[note]: called from here
# 2131|                   ee[ 4] = _mm256_add_epi32(eee[4], eeo[4]);
# 2132|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 2133|->                 ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 2134|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 2135|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);

Error: COMPILER_WARNING: [#def196]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2134:26: note[note]: called from here
# 2132|                   ee[ 5] = _mm256_add_epi32(eee[5], eeo[5]);
# 2133|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 2134|->                 ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 2135|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 2136|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);

Error: COMPILER_WARNING: [#def197]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2135:26: note[note]: called from here
# 2133|                   ee[ 6] = _mm256_add_epi32(eee[6], eeo[6]);
# 2134|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 2135|->                 ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 2136|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 2137|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);

Error: COMPILER_WARNING: [#def198]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2136:26: note[note]: called from here
# 2134|                   ee[ 7] = _mm256_add_epi32(eee[7], eeo[7]);
# 2135|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 2136|->                 ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 2137|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 2138|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);

Error: COMPILER_WARNING: [#def199]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2137:26: note[note]: called from here
# 2135|                   ee[ 8] = _mm256_sub_epi32(eee[7], eeo[7]);
# 2136|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 2137|->                 ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 2138|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 2139|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);

Error: COMPILER_WARNING: [#def200]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2138:26: note[note]: called from here
# 2136|                   ee[ 9] = _mm256_sub_epi32(eee[6], eeo[6]);
# 2137|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 2138|->                 ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 2139|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 2140|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);

Error: COMPILER_WARNING: [#def201]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2139:26: note[note]: called from here
# 2137|                   ee[10] = _mm256_sub_epi32(eee[5], eeo[5]);
# 2138|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 2139|->                 ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 2140|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 2141|                   ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);

Error: COMPILER_WARNING: [#def202]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2140:26: note[note]: called from here
# 2138|                   ee[11] = _mm256_sub_epi32(eee[4], eeo[4]);
# 2139|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 2140|->                 ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 2141|                   ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);
# 2142|                   ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);

Error: COMPILER_WARNING: [#def203]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2141:26: note[note]: called from here
# 2139|                   ee[12] = _mm256_sub_epi32(eee[3], eeo[3]);
# 2140|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 2141|->                 ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);
# 2142|                   ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);
# 2143|   

Error: COMPILER_WARNING: [#def204]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2142:26: note[note]: called from here
# 2140|                   ee[13] = _mm256_sub_epi32(eee[2], eeo[2]);
# 2141|                   ee[14] = _mm256_sub_epi32(eee[1], eeo[1]);
# 2142|->                 ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);
# 2143|   
# 2144|                   e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);

Error: COMPILER_WARNING: [#def205]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2144:25: note[note]: called from here
# 2142|                   ee[15] = _mm256_sub_epi32(eee[0], eeo[0]);
# 2143|   
# 2144|->                 e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);
# 2145|                   e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 2146|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);

Error: COMPILER_WARNING: [#def206]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2145:25: note[note]: called from here
# 2143|   
# 2144|                   e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);
# 2145|->                 e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 2146|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 2147|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);

Error: COMPILER_WARNING: [#def207]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2146:25: note[note]: called from here
# 2144|                   e[ 0] = _mm256_add_epi32(ee[ 0], eo[ 0]);
# 2145|                   e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 2146|->                 e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 2147|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 2148|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);

Error: COMPILER_WARNING: [#def208]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2147:25: note[note]: called from here
# 2145|                   e[ 1] = _mm256_add_epi32(ee[ 1], eo[ 1]);
# 2146|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 2147|->                 e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 2148|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 2149|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);

Error: COMPILER_WARNING: [#def209]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2148:25: note[note]: called from here
# 2146|                   e[ 2] = _mm256_add_epi32(ee[ 2], eo[ 2]);
# 2147|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 2148|->                 e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 2149|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 2150|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);

Error: COMPILER_WARNING: [#def210]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2149:25: note[note]: called from here
# 2147|                   e[ 3] = _mm256_add_epi32(ee[ 3], eo[ 3]);
# 2148|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 2149|->                 e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 2150|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 2151|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);

Error: COMPILER_WARNING: [#def211]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2150:25: note[note]: called from here
# 2148|                   e[ 4] = _mm256_add_epi32(ee[ 4], eo[ 4]);
# 2149|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 2150|->                 e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 2151|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 2152|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);

Error: COMPILER_WARNING: [#def212]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2151:25: note[note]: called from here
# 2149|                   e[ 5] = _mm256_add_epi32(ee[ 5], eo[ 5]);
# 2150|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 2151|->                 e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 2152|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 2153|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);

Error: COMPILER_WARNING: [#def213]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2152:25: note[note]: called from here
# 2150|                   e[ 6] = _mm256_add_epi32(ee[ 6], eo[ 6]);
# 2151|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 2152|->                 e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 2153|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 2154|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);

Error: COMPILER_WARNING: [#def214]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2153:25: note[note]: called from here
# 2151|                   e[ 7] = _mm256_add_epi32(ee[ 7], eo[ 7]);
# 2152|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 2153|->                 e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 2154|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 2155|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);

Error: COMPILER_WARNING: [#def215]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2154:25: note[note]: called from here
# 2152|                   e[ 8] = _mm256_add_epi32(ee[ 8], eo[ 8]);
# 2153|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 2154|->                 e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 2155|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 2156|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);

Error: COMPILER_WARNING: [#def216]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2155:25: note[note]: called from here
# 2153|                   e[ 9] = _mm256_add_epi32(ee[ 9], eo[ 9]);
# 2154|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 2155|->                 e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 2156|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 2157|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);

Error: COMPILER_WARNING: [#def217]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2156:25: note[note]: called from here
# 2154|                   e[10] = _mm256_add_epi32(ee[10], eo[10]);
# 2155|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 2156|->                 e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 2157|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 2158|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);

Error: COMPILER_WARNING: [#def218]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2157:25: note[note]: called from here
# 2155|                   e[11] = _mm256_add_epi32(ee[11], eo[11]);
# 2156|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 2157|->                 e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 2158|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 2159|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);

Error: COMPILER_WARNING: [#def219]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2158:25: note[note]: called from here
# 2156|                   e[12] = _mm256_add_epi32(ee[12], eo[12]);
# 2157|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 2158|->                 e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 2159|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 2160|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);

Error: COMPILER_WARNING: [#def220]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2159:25: note[note]: called from here
# 2157|                   e[13] = _mm256_add_epi32(ee[13], eo[13]);
# 2158|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 2159|->                 e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 2160|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 2161|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);

Error: COMPILER_WARNING: [#def221]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2160:25: note[note]: called from here
# 2158|                   e[14] = _mm256_add_epi32(ee[14], eo[14]);
# 2159|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 2160|->                 e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 2161|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 2162|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);

Error: COMPILER_WARNING: [#def222]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2161:25: note[note]: called from here
# 2159|                   e[15] = _mm256_add_epi32(ee[15], eo[15]);
# 2160|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 2161|->                 e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 2162|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 2163|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);

Error: COMPILER_WARNING: [#def223]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2162:25: note[note]: called from here
# 2160|                   e[16] = _mm256_sub_epi32(ee[15], eo[15]);
# 2161|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 2162|->                 e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 2163|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 2164|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);

Error: COMPILER_WARNING: [#def224]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2163:25: note[note]: called from here
# 2161|                   e[17] = _mm256_sub_epi32(ee[14], eo[14]);
# 2162|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 2163|->                 e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 2164|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 2165|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);

Error: COMPILER_WARNING: [#def225]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2164:25: note[note]: called from here
# 2162|                   e[18] = _mm256_sub_epi32(ee[13], eo[13]);
# 2163|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 2164|->                 e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 2165|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 2166|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);

Error: COMPILER_WARNING: [#def226]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2165:25: note[note]: called from here
# 2163|                   e[19] = _mm256_sub_epi32(ee[12], eo[12]);
# 2164|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 2165|->                 e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 2166|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 2167|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);

Error: COMPILER_WARNING: [#def227]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2166:25: note[note]: called from here
# 2164|                   e[20] = _mm256_sub_epi32(ee[11], eo[11]);
# 2165|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 2166|->                 e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 2167|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 2168|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);

Error: COMPILER_WARNING: [#def228]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2167:25: note[note]: called from here
# 2165|                   e[21] = _mm256_sub_epi32(ee[10], eo[10]);
# 2166|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 2167|->                 e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 2168|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 2169|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);

Error: COMPILER_WARNING: [#def229]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2168:25: note[note]: called from here
# 2166|                   e[22] = _mm256_sub_epi32(ee[ 9], eo[ 9]);
# 2167|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 2168|->                 e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 2169|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 2170|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);

Error: COMPILER_WARNING: [#def230]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2169:25: note[note]: called from here
# 2167|                   e[23] = _mm256_sub_epi32(ee[ 8], eo[ 8]);
# 2168|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 2169|->                 e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 2170|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 2171|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);

Error: COMPILER_WARNING: [#def231]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2170:25: note[note]: called from here
# 2168|                   e[24] = _mm256_sub_epi32(ee[ 7], eo[ 7]);
# 2169|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 2170|->                 e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 2171|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 2172|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);

Error: COMPILER_WARNING: [#def232]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2171:25: note[note]: called from here
# 2169|                   e[25] = _mm256_sub_epi32(ee[ 6], eo[ 6]);
# 2170|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 2171|->                 e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 2172|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 2173|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);

Error: COMPILER_WARNING: [#def233]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2172:25: note[note]: called from here
# 2170|                   e[26] = _mm256_sub_epi32(ee[ 5], eo[ 5]);
# 2171|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 2172|->                 e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 2173|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 2174|                   e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);

Error: COMPILER_WARNING: [#def234]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2173:25: note[note]: called from here
# 2171|                   e[27] = _mm256_sub_epi32(ee[ 4], eo[ 4]);
# 2172|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 2173|->                 e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 2174|                   e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);
# 2175|                   e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);

Error: COMPILER_WARNING: [#def235]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2174:25: note[note]: called from here
# 2172|                   e[28] = _mm256_sub_epi32(ee[ 3], eo[ 3]);
# 2173|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 2174|->                 e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);
# 2175|                   e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);
# 2176|   

Error: COMPILER_WARNING: [#def236]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2175:25: note[note]: called from here
# 2173|                   e[29] = _mm256_sub_epi32(ee[ 2], eo[ 2]);
# 2174|                   e[30] = _mm256_sub_epi32(ee[ 1], eo[ 1]);
# 2175|->                 e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);
# 2176|   
# 2177|                   v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);

Error: COMPILER_WARNING: [#def237]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2177:25: note[note]: called from here
# 2175|                   e[31] = _mm256_sub_epi32(ee[ 0], eo[ 0]);
# 2176|   
# 2177|->                 v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);
# 2178|                   v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 2179|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);

Error: COMPILER_WARNING: [#def238]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2178:25: note[note]: called from here
# 2176|   
# 2177|                   v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);
# 2178|->                 v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 2179|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 2180|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);

Error: COMPILER_WARNING: [#def239]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2179:25: note[note]: called from here
# 2177|                   v[ 0] = _mm256_add_epi32(e[ 0], o[ 0]);
# 2178|                   v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 2179|->                 v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 2180|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 2181|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);

Error: COMPILER_WARNING: [#def240]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2180:25: note[note]: called from here
# 2178|                   v[ 1] = _mm256_add_epi32(e[ 1], o[ 1]);
# 2179|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 2180|->                 v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 2181|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 2182|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);

Error: COMPILER_WARNING: [#def241]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2181:25: note[note]: called from here
# 2179|                   v[ 2] = _mm256_add_epi32(e[ 2], o[ 2]);
# 2180|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 2181|->                 v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 2182|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 2183|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);

Error: COMPILER_WARNING: [#def242]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2182:25: note[note]: called from here
# 2180|                   v[ 3] = _mm256_add_epi32(e[ 3], o[ 3]);
# 2181|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 2182|->                 v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 2183|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 2184|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);

Error: COMPILER_WARNING: [#def243]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2183:25: note[note]: called from here
# 2181|                   v[ 4] = _mm256_add_epi32(e[ 4], o[ 4]);
# 2182|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 2183|->                 v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 2184|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 2185|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);

Error: COMPILER_WARNING: [#def244]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2184:25: note[note]: called from here
# 2182|                   v[ 5] = _mm256_add_epi32(e[ 5], o[ 5]);
# 2183|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 2184|->                 v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 2185|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 2186|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);

Error: COMPILER_WARNING: [#def245]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2185:25: note[note]: called from here
# 2183|                   v[ 6] = _mm256_add_epi32(e[ 6], o[ 6]);
# 2184|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 2185|->                 v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 2186|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 2187|                   v[10] = _mm256_add_epi32(e[10], o[10]);

Error: COMPILER_WARNING: [#def246]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2186:25: note[note]: called from here
# 2184|                   v[ 7] = _mm256_add_epi32(e[ 7], o[ 7]);
# 2185|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 2186|->                 v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 2187|                   v[10] = _mm256_add_epi32(e[10], o[10]);
# 2188|                   v[11] = _mm256_add_epi32(e[11], o[11]);

Error: COMPILER_WARNING: [#def247]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2187:25: note[note]: called from here
# 2185|                   v[ 8] = _mm256_add_epi32(e[ 8], o[ 8]);
# 2186|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 2187|->                 v[10] = _mm256_add_epi32(e[10], o[10]);
# 2188|                   v[11] = _mm256_add_epi32(e[11], o[11]);
# 2189|                   v[12] = _mm256_add_epi32(e[12], o[12]);

Error: COMPILER_WARNING: [#def248]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2188:25: note[note]: called from here
# 2186|                   v[ 9] = _mm256_add_epi32(e[ 9], o[ 9]);
# 2187|                   v[10] = _mm256_add_epi32(e[10], o[10]);
# 2188|->                 v[11] = _mm256_add_epi32(e[11], o[11]);
# 2189|                   v[12] = _mm256_add_epi32(e[12], o[12]);
# 2190|                   v[13] = _mm256_add_epi32(e[13], o[13]);

Error: COMPILER_WARNING: [#def249]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2189:25: note[note]: called from here
# 2187|                   v[10] = _mm256_add_epi32(e[10], o[10]);
# 2188|                   v[11] = _mm256_add_epi32(e[11], o[11]);
# 2189|->                 v[12] = _mm256_add_epi32(e[12], o[12]);
# 2190|                   v[13] = _mm256_add_epi32(e[13], o[13]);
# 2191|                   v[14] = _mm256_add_epi32(e[14], o[14]);

Error: COMPILER_WARNING: [#def250]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2190:25: note[note]: called from here
# 2188|                   v[11] = _mm256_add_epi32(e[11], o[11]);
# 2189|                   v[12] = _mm256_add_epi32(e[12], o[12]);
# 2190|->                 v[13] = _mm256_add_epi32(e[13], o[13]);
# 2191|                   v[14] = _mm256_add_epi32(e[14], o[14]);
# 2192|                   v[15] = _mm256_add_epi32(e[15], o[15]);

Error: COMPILER_WARNING: [#def251]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2191:25: note[note]: called from here
# 2189|                   v[12] = _mm256_add_epi32(e[12], o[12]);
# 2190|                   v[13] = _mm256_add_epi32(e[13], o[13]);
# 2191|->                 v[14] = _mm256_add_epi32(e[14], o[14]);
# 2192|                   v[15] = _mm256_add_epi32(e[15], o[15]);
# 2193|                   v[16] = _mm256_add_epi32(e[16], o[16]);

Error: COMPILER_WARNING: [#def252]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2192:25: note[note]: called from here
# 2190|                   v[13] = _mm256_add_epi32(e[13], o[13]);
# 2191|                   v[14] = _mm256_add_epi32(e[14], o[14]);
# 2192|->                 v[15] = _mm256_add_epi32(e[15], o[15]);
# 2193|                   v[16] = _mm256_add_epi32(e[16], o[16]);
# 2194|                   v[17] = _mm256_add_epi32(e[17], o[17]);

Error: COMPILER_WARNING: [#def253]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2193:25: note[note]: called from here
# 2191|                   v[14] = _mm256_add_epi32(e[14], o[14]);
# 2192|                   v[15] = _mm256_add_epi32(e[15], o[15]);
# 2193|->                 v[16] = _mm256_add_epi32(e[16], o[16]);
# 2194|                   v[17] = _mm256_add_epi32(e[17], o[17]);
# 2195|                   v[18] = _mm256_add_epi32(e[18], o[18]);

Error: COMPILER_WARNING: [#def254]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2194:25: note[note]: called from here
# 2192|                   v[15] = _mm256_add_epi32(e[15], o[15]);
# 2193|                   v[16] = _mm256_add_epi32(e[16], o[16]);
# 2194|->                 v[17] = _mm256_add_epi32(e[17], o[17]);
# 2195|                   v[18] = _mm256_add_epi32(e[18], o[18]);
# 2196|                   v[19] = _mm256_add_epi32(e[19], o[19]);

Error: COMPILER_WARNING: [#def255]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2195:25: note[note]: called from here
# 2193|                   v[16] = _mm256_add_epi32(e[16], o[16]);
# 2194|                   v[17] = _mm256_add_epi32(e[17], o[17]);
# 2195|->                 v[18] = _mm256_add_epi32(e[18], o[18]);
# 2196|                   v[19] = _mm256_add_epi32(e[19], o[19]);
# 2197|                   v[20] = _mm256_add_epi32(e[20], o[20]);

Error: COMPILER_WARNING: [#def256]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2196:25: note[note]: called from here
# 2194|                   v[17] = _mm256_add_epi32(e[17], o[17]);
# 2195|                   v[18] = _mm256_add_epi32(e[18], o[18]);
# 2196|->                 v[19] = _mm256_add_epi32(e[19], o[19]);
# 2197|                   v[20] = _mm256_add_epi32(e[20], o[20]);
# 2198|                   v[21] = _mm256_add_epi32(e[21], o[21]);

Error: COMPILER_WARNING: [#def257]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2197:25: note[note]: called from here
# 2195|                   v[18] = _mm256_add_epi32(e[18], o[18]);
# 2196|                   v[19] = _mm256_add_epi32(e[19], o[19]);
# 2197|->                 v[20] = _mm256_add_epi32(e[20], o[20]);
# 2198|                   v[21] = _mm256_add_epi32(e[21], o[21]);
# 2199|                   v[22] = _mm256_add_epi32(e[22], o[22]);

Error: COMPILER_WARNING: [#def258]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2198:25: note[note]: called from here
# 2196|                   v[19] = _mm256_add_epi32(e[19], o[19]);
# 2197|                   v[20] = _mm256_add_epi32(e[20], o[20]);
# 2198|->                 v[21] = _mm256_add_epi32(e[21], o[21]);
# 2199|                   v[22] = _mm256_add_epi32(e[22], o[22]);
# 2200|                   v[23] = _mm256_add_epi32(e[23], o[23]);

Error: COMPILER_WARNING: [#def259]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2199:25: note[note]: called from here
# 2197|                   v[20] = _mm256_add_epi32(e[20], o[20]);
# 2198|                   v[21] = _mm256_add_epi32(e[21], o[21]);
# 2199|->                 v[22] = _mm256_add_epi32(e[22], o[22]);
# 2200|                   v[23] = _mm256_add_epi32(e[23], o[23]);
# 2201|                   v[24] = _mm256_add_epi32(e[24], o[24]);

Error: COMPILER_WARNING: [#def260]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2200:25: note[note]: called from here
# 2198|                   v[21] = _mm256_add_epi32(e[21], o[21]);
# 2199|                   v[22] = _mm256_add_epi32(e[22], o[22]);
# 2200|->                 v[23] = _mm256_add_epi32(e[23], o[23]);
# 2201|                   v[24] = _mm256_add_epi32(e[24], o[24]);
# 2202|                   v[25] = _mm256_add_epi32(e[25], o[25]);

Error: COMPILER_WARNING: [#def261]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2201:25: note[note]: called from here
# 2199|                   v[22] = _mm256_add_epi32(e[22], o[22]);
# 2200|                   v[23] = _mm256_add_epi32(e[23], o[23]);
# 2201|->                 v[24] = _mm256_add_epi32(e[24], o[24]);
# 2202|                   v[25] = _mm256_add_epi32(e[25], o[25]);
# 2203|                   v[26] = _mm256_add_epi32(e[26], o[26]);

Error: COMPILER_WARNING: [#def262]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2202:25: note[note]: called from here
# 2200|                   v[23] = _mm256_add_epi32(e[23], o[23]);
# 2201|                   v[24] = _mm256_add_epi32(e[24], o[24]);
# 2202|->                 v[25] = _mm256_add_epi32(e[25], o[25]);
# 2203|                   v[26] = _mm256_add_epi32(e[26], o[26]);
# 2204|                   v[27] = _mm256_add_epi32(e[27], o[27]);

Error: COMPILER_WARNING: [#def263]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2203:25: note[note]: called from here
# 2201|                   v[24] = _mm256_add_epi32(e[24], o[24]);
# 2202|                   v[25] = _mm256_add_epi32(e[25], o[25]);
# 2203|->                 v[26] = _mm256_add_epi32(e[26], o[26]);
# 2204|                   v[27] = _mm256_add_epi32(e[27], o[27]);
# 2205|                   v[28] = _mm256_add_epi32(e[28], o[28]);

Error: COMPILER_WARNING: [#def264]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2204:25: note[note]: called from here
# 2202|                   v[25] = _mm256_add_epi32(e[25], o[25]);
# 2203|                   v[26] = _mm256_add_epi32(e[26], o[26]);
# 2204|->                 v[27] = _mm256_add_epi32(e[27], o[27]);
# 2205|                   v[28] = _mm256_add_epi32(e[28], o[28]);
# 2206|                   v[29] = _mm256_add_epi32(e[29], o[29]);

Error: COMPILER_WARNING: [#def265]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2205:25: note[note]: called from here
# 2203|                   v[26] = _mm256_add_epi32(e[26], o[26]);
# 2204|                   v[27] = _mm256_add_epi32(e[27], o[27]);
# 2205|->                 v[28] = _mm256_add_epi32(e[28], o[28]);
# 2206|                   v[29] = _mm256_add_epi32(e[29], o[29]);
# 2207|                   v[30] = _mm256_add_epi32(e[30], o[30]);

Error: COMPILER_WARNING: [#def266]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2206:25: note[note]: called from here
# 2204|                   v[27] = _mm256_add_epi32(e[27], o[27]);
# 2205|                   v[28] = _mm256_add_epi32(e[28], o[28]);
# 2206|->                 v[29] = _mm256_add_epi32(e[29], o[29]);
# 2207|                   v[30] = _mm256_add_epi32(e[30], o[30]);
# 2208|                   v[31] = _mm256_add_epi32(e[31], o[31]);

Error: COMPILER_WARNING: [#def267]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2207:25: note[note]: called from here
# 2205|                   v[28] = _mm256_add_epi32(e[28], o[28]);
# 2206|                   v[29] = _mm256_add_epi32(e[29], o[29]);
# 2207|->                 v[30] = _mm256_add_epi32(e[30], o[30]);
# 2208|                   v[31] = _mm256_add_epi32(e[31], o[31]);
# 2209|                   v[32] = _mm256_sub_epi32(e[31], o[31]);

Error: COMPILER_WARNING: [#def268]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2208:25: note[note]: called from here
# 2206|                   v[29] = _mm256_add_epi32(e[29], o[29]);
# 2207|                   v[30] = _mm256_add_epi32(e[30], o[30]);
# 2208|->                 v[31] = _mm256_add_epi32(e[31], o[31]);
# 2209|                   v[32] = _mm256_sub_epi32(e[31], o[31]);
# 2210|                   v[33] = _mm256_sub_epi32(e[30], o[30]);

Error: COMPILER_WARNING: [#def269]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2209:25: note[note]: called from here
# 2207|                   v[30] = _mm256_add_epi32(e[30], o[30]);
# 2208|                   v[31] = _mm256_add_epi32(e[31], o[31]);
# 2209|->                 v[32] = _mm256_sub_epi32(e[31], o[31]);
# 2210|                   v[33] = _mm256_sub_epi32(e[30], o[30]);
# 2211|                   v[34] = _mm256_sub_epi32(e[29], o[29]);

Error: COMPILER_WARNING: [#def270]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2210:25: note[note]: called from here
# 2208|                   v[31] = _mm256_add_epi32(e[31], o[31]);
# 2209|                   v[32] = _mm256_sub_epi32(e[31], o[31]);
# 2210|->                 v[33] = _mm256_sub_epi32(e[30], o[30]);
# 2211|                   v[34] = _mm256_sub_epi32(e[29], o[29]);
# 2212|                   v[35] = _mm256_sub_epi32(e[28], o[28]);

Error: COMPILER_WARNING: [#def271]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2211:25: note[note]: called from here
# 2209|                   v[32] = _mm256_sub_epi32(e[31], o[31]);
# 2210|                   v[33] = _mm256_sub_epi32(e[30], o[30]);
# 2211|->                 v[34] = _mm256_sub_epi32(e[29], o[29]);
# 2212|                   v[35] = _mm256_sub_epi32(e[28], o[28]);
# 2213|                   v[36] = _mm256_sub_epi32(e[27], o[27]);

Error: COMPILER_WARNING: [#def272]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2212:25: note[note]: called from here
# 2210|                   v[33] = _mm256_sub_epi32(e[30], o[30]);
# 2211|                   v[34] = _mm256_sub_epi32(e[29], o[29]);
# 2212|->                 v[35] = _mm256_sub_epi32(e[28], o[28]);
# 2213|                   v[36] = _mm256_sub_epi32(e[27], o[27]);
# 2214|                   v[37] = _mm256_sub_epi32(e[26], o[26]);

Error: COMPILER_WARNING: [#def273]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2213:25: note[note]: called from here
# 2211|                   v[34] = _mm256_sub_epi32(e[29], o[29]);
# 2212|                   v[35] = _mm256_sub_epi32(e[28], o[28]);
# 2213|->                 v[36] = _mm256_sub_epi32(e[27], o[27]);
# 2214|                   v[37] = _mm256_sub_epi32(e[26], o[26]);
# 2215|                   v[38] = _mm256_sub_epi32(e[25], o[25]);

Error: COMPILER_WARNING: [#def274]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2214:25: note[note]: called from here
# 2212|                   v[35] = _mm256_sub_epi32(e[28], o[28]);
# 2213|                   v[36] = _mm256_sub_epi32(e[27], o[27]);
# 2214|->                 v[37] = _mm256_sub_epi32(e[26], o[26]);
# 2215|                   v[38] = _mm256_sub_epi32(e[25], o[25]);
# 2216|                   v[39] = _mm256_sub_epi32(e[24], o[24]);

Error: COMPILER_WARNING: [#def275]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2215:25: note[note]: called from here
# 2213|                   v[36] = _mm256_sub_epi32(e[27], o[27]);
# 2214|                   v[37] = _mm256_sub_epi32(e[26], o[26]);
# 2215|->                 v[38] = _mm256_sub_epi32(e[25], o[25]);
# 2216|                   v[39] = _mm256_sub_epi32(e[24], o[24]);
# 2217|                   v[40] = _mm256_sub_epi32(e[23], o[23]);

Error: COMPILER_WARNING: [#def276]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2216:25: note[note]: called from here
# 2214|                   v[37] = _mm256_sub_epi32(e[26], o[26]);
# 2215|                   v[38] = _mm256_sub_epi32(e[25], o[25]);
# 2216|->                 v[39] = _mm256_sub_epi32(e[24], o[24]);
# 2217|                   v[40] = _mm256_sub_epi32(e[23], o[23]);
# 2218|                   v[41] = _mm256_sub_epi32(e[22], o[22]);

Error: COMPILER_WARNING: [#def277]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2217:25: note[note]: called from here
# 2215|                   v[38] = _mm256_sub_epi32(e[25], o[25]);
# 2216|                   v[39] = _mm256_sub_epi32(e[24], o[24]);
# 2217|->                 v[40] = _mm256_sub_epi32(e[23], o[23]);
# 2218|                   v[41] = _mm256_sub_epi32(e[22], o[22]);
# 2219|                   v[42] = _mm256_sub_epi32(e[21], o[21]);

Error: COMPILER_WARNING: [#def278]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2218:25: note[note]: called from here
# 2216|                   v[39] = _mm256_sub_epi32(e[24], o[24]);
# 2217|                   v[40] = _mm256_sub_epi32(e[23], o[23]);
# 2218|->                 v[41] = _mm256_sub_epi32(e[22], o[22]);
# 2219|                   v[42] = _mm256_sub_epi32(e[21], o[21]);
# 2220|                   v[43] = _mm256_sub_epi32(e[20], o[20]);

Error: COMPILER_WARNING: [#def279]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2219:25: note[note]: called from here
# 2217|                   v[40] = _mm256_sub_epi32(e[23], o[23]);
# 2218|                   v[41] = _mm256_sub_epi32(e[22], o[22]);
# 2219|->                 v[42] = _mm256_sub_epi32(e[21], o[21]);
# 2220|                   v[43] = _mm256_sub_epi32(e[20], o[20]);
# 2221|                   v[44] = _mm256_sub_epi32(e[19], o[19]);

Error: COMPILER_WARNING: [#def280]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2220:25: note[note]: called from here
# 2218|                   v[41] = _mm256_sub_epi32(e[22], o[22]);
# 2219|                   v[42] = _mm256_sub_epi32(e[21], o[21]);
# 2220|->                 v[43] = _mm256_sub_epi32(e[20], o[20]);
# 2221|                   v[44] = _mm256_sub_epi32(e[19], o[19]);
# 2222|                   v[45] = _mm256_sub_epi32(e[18], o[18]);

Error: COMPILER_WARNING: [#def281]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2221:25: note[note]: called from here
# 2219|                   v[42] = _mm256_sub_epi32(e[21], o[21]);
# 2220|                   v[43] = _mm256_sub_epi32(e[20], o[20]);
# 2221|->                 v[44] = _mm256_sub_epi32(e[19], o[19]);
# 2222|                   v[45] = _mm256_sub_epi32(e[18], o[18]);
# 2223|                   v[46] = _mm256_sub_epi32(e[17], o[17]);

Error: COMPILER_WARNING: [#def282]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2222:25: note[note]: called from here
# 2220|                   v[43] = _mm256_sub_epi32(e[20], o[20]);
# 2221|                   v[44] = _mm256_sub_epi32(e[19], o[19]);
# 2222|->                 v[45] = _mm256_sub_epi32(e[18], o[18]);
# 2223|                   v[46] = _mm256_sub_epi32(e[17], o[17]);
# 2224|                   v[47] = _mm256_sub_epi32(e[16], o[16]);

Error: COMPILER_WARNING: [#def283]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2223:25: note[note]: called from here
# 2221|                   v[44] = _mm256_sub_epi32(e[19], o[19]);
# 2222|                   v[45] = _mm256_sub_epi32(e[18], o[18]);
# 2223|->                 v[46] = _mm256_sub_epi32(e[17], o[17]);
# 2224|                   v[47] = _mm256_sub_epi32(e[16], o[16]);
# 2225|                   v[48] = _mm256_sub_epi32(e[15], o[15]);

Error: COMPILER_WARNING: [#def284]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2224:25: note[note]: called from here
# 2222|                   v[45] = _mm256_sub_epi32(e[18], o[18]);
# 2223|                   v[46] = _mm256_sub_epi32(e[17], o[17]);
# 2224|->                 v[47] = _mm256_sub_epi32(e[16], o[16]);
# 2225|                   v[48] = _mm256_sub_epi32(e[15], o[15]);
# 2226|                   v[49] = _mm256_sub_epi32(e[14], o[14]);

Error: COMPILER_WARNING: [#def285]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2225:25: note[note]: called from here
# 2223|                   v[46] = _mm256_sub_epi32(e[17], o[17]);
# 2224|                   v[47] = _mm256_sub_epi32(e[16], o[16]);
# 2225|->                 v[48] = _mm256_sub_epi32(e[15], o[15]);
# 2226|                   v[49] = _mm256_sub_epi32(e[14], o[14]);
# 2227|                   v[50] = _mm256_sub_epi32(e[13], o[13]);

Error: COMPILER_WARNING: [#def286]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2226:25: note[note]: called from here
# 2224|                   v[47] = _mm256_sub_epi32(e[16], o[16]);
# 2225|                   v[48] = _mm256_sub_epi32(e[15], o[15]);
# 2226|->                 v[49] = _mm256_sub_epi32(e[14], o[14]);
# 2227|                   v[50] = _mm256_sub_epi32(e[13], o[13]);
# 2228|                   v[51] = _mm256_sub_epi32(e[12], o[12]);

Error: COMPILER_WARNING: [#def287]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2227:25: note[note]: called from here
# 2225|                   v[48] = _mm256_sub_epi32(e[15], o[15]);
# 2226|                   v[49] = _mm256_sub_epi32(e[14], o[14]);
# 2227|->                 v[50] = _mm256_sub_epi32(e[13], o[13]);
# 2228|                   v[51] = _mm256_sub_epi32(e[12], o[12]);
# 2229|                   v[52] = _mm256_sub_epi32(e[11], o[11]);

Error: COMPILER_WARNING: [#def288]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2228:25: note[note]: called from here
# 2226|                   v[49] = _mm256_sub_epi32(e[14], o[14]);
# 2227|                   v[50] = _mm256_sub_epi32(e[13], o[13]);
# 2228|->                 v[51] = _mm256_sub_epi32(e[12], o[12]);
# 2229|                   v[52] = _mm256_sub_epi32(e[11], o[11]);
# 2230|                   v[53] = _mm256_sub_epi32(e[10], o[10]);

Error: COMPILER_WARNING: [#def289]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2229:25: note[note]: called from here
# 2227|                   v[50] = _mm256_sub_epi32(e[13], o[13]);
# 2228|                   v[51] = _mm256_sub_epi32(e[12], o[12]);
# 2229|->                 v[52] = _mm256_sub_epi32(e[11], o[11]);
# 2230|                   v[53] = _mm256_sub_epi32(e[10], o[10]);
# 2231|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);

Error: COMPILER_WARNING: [#def290]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2230:25: note[note]: called from here
# 2228|                   v[51] = _mm256_sub_epi32(e[12], o[12]);
# 2229|                   v[52] = _mm256_sub_epi32(e[11], o[11]);
# 2230|->                 v[53] = _mm256_sub_epi32(e[10], o[10]);
# 2231|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 2232|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);

Error: COMPILER_WARNING: [#def291]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2231:25: note[note]: called from here
# 2229|                   v[52] = _mm256_sub_epi32(e[11], o[11]);
# 2230|                   v[53] = _mm256_sub_epi32(e[10], o[10]);
# 2231|->                 v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 2232|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 2233|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);

Error: COMPILER_WARNING: [#def292]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2232:25: note[note]: called from here
# 2230|                   v[53] = _mm256_sub_epi32(e[10], o[10]);
# 2231|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 2232|->                 v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 2233|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 2234|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);

Error: COMPILER_WARNING: [#def293]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2233:25: note[note]: called from here
# 2231|                   v[54] = _mm256_sub_epi32(e[ 9], o[ 9]);
# 2232|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 2233|->                 v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 2234|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 2235|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);

Error: COMPILER_WARNING: [#def294]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2234:25: note[note]: called from here
# 2232|                   v[55] = _mm256_sub_epi32(e[ 8], o[ 8]);
# 2233|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 2234|->                 v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 2235|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 2236|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);

Error: COMPILER_WARNING: [#def295]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2235:25: note[note]: called from here
# 2233|                   v[56] = _mm256_sub_epi32(e[ 7], o[ 7]);
# 2234|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 2235|->                 v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 2236|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 2237|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);

Error: COMPILER_WARNING: [#def296]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2236:25: note[note]: called from here
# 2234|                   v[57] = _mm256_sub_epi32(e[ 6], o[ 6]);
# 2235|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 2236|->                 v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 2237|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 2238|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);

Error: COMPILER_WARNING: [#def297]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2237:25: note[note]: called from here
# 2235|                   v[58] = _mm256_sub_epi32(e[ 5], o[ 5]);
# 2236|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 2237|->                 v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 2238|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 2239|                   v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);

Error: COMPILER_WARNING: [#def298]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2238:25: note[note]: called from here
# 2236|                   v[59] = _mm256_sub_epi32(e[ 4], o[ 4]);
# 2237|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 2238|->                 v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 2239|                   v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);
# 2240|                   v[63] = _mm256_sub_epi32(e[ 0], o[ 0]);

Error: COMPILER_WARNING: [#def299]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2239:25: note[note]: called from here
# 2237|                   v[60] = _mm256_sub_epi32(e[ 3], o[ 3]);
# 2238|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 2239|->                 v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);
# 2240|                   v[63] = _mm256_sub_epi32(e[ 0], o[ 0]);
# 2241|   

Error: COMPILER_WARNING: [#def300]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2240:25: note[note]: called from here
# 2238|                   v[61] = _mm256_sub_epi32(e[ 2], o[ 2]);
# 2239|                   v[62] = _mm256_sub_epi32(e[ 1], o[ 1]);
# 2240|->                 v[63] = _mm256_sub_epi32(e[ 0], o[ 0]);
# 2241|   
# 2242|                   XEVD_ITX_SHIFT_CLIP(v[ 0], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def301]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2242:17: note[note]: called from here
# 2240|                   v[63] = _mm256_sub_epi32(e[ 0], o[ 0]);
# 2241|   
# 2242|->                 XEVD_ITX_SHIFT_CLIP(v[ 0], add_s2, shift, min_val, max_val);
# 2243|                   XEVD_ITX_SHIFT_CLIP(v[ 1], add_s2, shift, min_val, max_val);
# 2244|                   XEVD_ITX_SHIFT_CLIP(v[ 2], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def302]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2243:17: note[note]: called from here
# 2241|   
# 2242|                   XEVD_ITX_SHIFT_CLIP(v[ 0], add_s2, shift, min_val, max_val);
# 2243|->                 XEVD_ITX_SHIFT_CLIP(v[ 1], add_s2, shift, min_val, max_val);
# 2244|                   XEVD_ITX_SHIFT_CLIP(v[ 2], add_s2, shift, min_val, max_val);
# 2245|                   XEVD_ITX_SHIFT_CLIP(v[ 3], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def303]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2244:17: note[note]: called from here
# 2242|                   XEVD_ITX_SHIFT_CLIP(v[ 0], add_s2, shift, min_val, max_val);
# 2243|                   XEVD_ITX_SHIFT_CLIP(v[ 1], add_s2, shift, min_val, max_val);
# 2244|->                 XEVD_ITX_SHIFT_CLIP(v[ 2], add_s2, shift, min_val, max_val);
# 2245|                   XEVD_ITX_SHIFT_CLIP(v[ 3], add_s2, shift, min_val, max_val);
# 2246|                   XEVD_ITX_SHIFT_CLIP(v[ 4], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def304]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2245:17: note[note]: called from here
# 2243|                   XEVD_ITX_SHIFT_CLIP(v[ 1], add_s2, shift, min_val, max_val);
# 2244|                   XEVD_ITX_SHIFT_CLIP(v[ 2], add_s2, shift, min_val, max_val);
# 2245|->                 XEVD_ITX_SHIFT_CLIP(v[ 3], add_s2, shift, min_val, max_val);
# 2246|                   XEVD_ITX_SHIFT_CLIP(v[ 4], add_s2, shift, min_val, max_val);
# 2247|                   XEVD_ITX_SHIFT_CLIP(v[ 5], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def305]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2246:17: note[note]: called from here
# 2244|                   XEVD_ITX_SHIFT_CLIP(v[ 2], add_s2, shift, min_val, max_val);
# 2245|                   XEVD_ITX_SHIFT_CLIP(v[ 3], add_s2, shift, min_val, max_val);
# 2246|->                 XEVD_ITX_SHIFT_CLIP(v[ 4], add_s2, shift, min_val, max_val);
# 2247|                   XEVD_ITX_SHIFT_CLIP(v[ 5], add_s2, shift, min_val, max_val);
# 2248|                   XEVD_ITX_SHIFT_CLIP(v[ 6], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def306]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2247:17: note[note]: called from here
# 2245|                   XEVD_ITX_SHIFT_CLIP(v[ 3], add_s2, shift, min_val, max_val);
# 2246|                   XEVD_ITX_SHIFT_CLIP(v[ 4], add_s2, shift, min_val, max_val);
# 2247|->                 XEVD_ITX_SHIFT_CLIP(v[ 5], add_s2, shift, min_val, max_val);
# 2248|                   XEVD_ITX_SHIFT_CLIP(v[ 6], add_s2, shift, min_val, max_val);
# 2249|                   XEVD_ITX_SHIFT_CLIP(v[ 7], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def307]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2248:17: note[note]: called from here
# 2246|                   XEVD_ITX_SHIFT_CLIP(v[ 4], add_s2, shift, min_val, max_val);
# 2247|                   XEVD_ITX_SHIFT_CLIP(v[ 5], add_s2, shift, min_val, max_val);
# 2248|->                 XEVD_ITX_SHIFT_CLIP(v[ 6], add_s2, shift, min_val, max_val);
# 2249|                   XEVD_ITX_SHIFT_CLIP(v[ 7], add_s2, shift, min_val, max_val);
# 2250|                   XEVD_ITX_SHIFT_CLIP(v[ 8], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def308]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2249:17: note[note]: called from here
# 2247|                   XEVD_ITX_SHIFT_CLIP(v[ 5], add_s2, shift, min_val, max_val);
# 2248|                   XEVD_ITX_SHIFT_CLIP(v[ 6], add_s2, shift, min_val, max_val);
# 2249|->                 XEVD_ITX_SHIFT_CLIP(v[ 7], add_s2, shift, min_val, max_val);
# 2250|                   XEVD_ITX_SHIFT_CLIP(v[ 8], add_s2, shift, min_val, max_val);
# 2251|                   XEVD_ITX_SHIFT_CLIP(v[ 9], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def309]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2250:17: note[note]: called from here
# 2248|                   XEVD_ITX_SHIFT_CLIP(v[ 6], add_s2, shift, min_val, max_val);
# 2249|                   XEVD_ITX_SHIFT_CLIP(v[ 7], add_s2, shift, min_val, max_val);
# 2250|->                 XEVD_ITX_SHIFT_CLIP(v[ 8], add_s2, shift, min_val, max_val);
# 2251|                   XEVD_ITX_SHIFT_CLIP(v[ 9], add_s2, shift, min_val, max_val);
# 2252|                   XEVD_ITX_SHIFT_CLIP(v[10], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def310]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2251:17: note[note]: called from here
# 2249|                   XEVD_ITX_SHIFT_CLIP(v[ 7], add_s2, shift, min_val, max_val);
# 2250|                   XEVD_ITX_SHIFT_CLIP(v[ 8], add_s2, shift, min_val, max_val);
# 2251|->                 XEVD_ITX_SHIFT_CLIP(v[ 9], add_s2, shift, min_val, max_val);
# 2252|                   XEVD_ITX_SHIFT_CLIP(v[10], add_s2, shift, min_val, max_val);
# 2253|                   XEVD_ITX_SHIFT_CLIP(v[11], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def311]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2252:17: note[note]: called from here
# 2250|                   XEVD_ITX_SHIFT_CLIP(v[ 8], add_s2, shift, min_val, max_val);
# 2251|                   XEVD_ITX_SHIFT_CLIP(v[ 9], add_s2, shift, min_val, max_val);
# 2252|->                 XEVD_ITX_SHIFT_CLIP(v[10], add_s2, shift, min_val, max_val);
# 2253|                   XEVD_ITX_SHIFT_CLIP(v[11], add_s2, shift, min_val, max_val);
# 2254|                   XEVD_ITX_SHIFT_CLIP(v[12], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def312]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2253:17: note[note]: called from here
# 2251|                   XEVD_ITX_SHIFT_CLIP(v[ 9], add_s2, shift, min_val, max_val);
# 2252|                   XEVD_ITX_SHIFT_CLIP(v[10], add_s2, shift, min_val, max_val);
# 2253|->                 XEVD_ITX_SHIFT_CLIP(v[11], add_s2, shift, min_val, max_val);
# 2254|                   XEVD_ITX_SHIFT_CLIP(v[12], add_s2, shift, min_val, max_val);
# 2255|                   XEVD_ITX_SHIFT_CLIP(v[13], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def313]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2254:17: note[note]: called from here
# 2252|                   XEVD_ITX_SHIFT_CLIP(v[10], add_s2, shift, min_val, max_val);
# 2253|                   XEVD_ITX_SHIFT_CLIP(v[11], add_s2, shift, min_val, max_val);
# 2254|->                 XEVD_ITX_SHIFT_CLIP(v[12], add_s2, shift, min_val, max_val);
# 2255|                   XEVD_ITX_SHIFT_CLIP(v[13], add_s2, shift, min_val, max_val);
# 2256|                   XEVD_ITX_SHIFT_CLIP(v[14], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def314]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2255:17: note[note]: called from here
# 2253|                   XEVD_ITX_SHIFT_CLIP(v[11], add_s2, shift, min_val, max_val);
# 2254|                   XEVD_ITX_SHIFT_CLIP(v[12], add_s2, shift, min_val, max_val);
# 2255|->                 XEVD_ITX_SHIFT_CLIP(v[13], add_s2, shift, min_val, max_val);
# 2256|                   XEVD_ITX_SHIFT_CLIP(v[14], add_s2, shift, min_val, max_val);
# 2257|                   XEVD_ITX_SHIFT_CLIP(v[15], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def315]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2256:17: note[note]: called from here
# 2254|                   XEVD_ITX_SHIFT_CLIP(v[12], add_s2, shift, min_val, max_val);
# 2255|                   XEVD_ITX_SHIFT_CLIP(v[13], add_s2, shift, min_val, max_val);
# 2256|->                 XEVD_ITX_SHIFT_CLIP(v[14], add_s2, shift, min_val, max_val);
# 2257|                   XEVD_ITX_SHIFT_CLIP(v[15], add_s2, shift, min_val, max_val);
# 2258|                   XEVD_ITX_SHIFT_CLIP(v[16], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def316]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2257:17: note[note]: called from here
# 2255|                   XEVD_ITX_SHIFT_CLIP(v[13], add_s2, shift, min_val, max_val);
# 2256|                   XEVD_ITX_SHIFT_CLIP(v[14], add_s2, shift, min_val, max_val);
# 2257|->                 XEVD_ITX_SHIFT_CLIP(v[15], add_s2, shift, min_val, max_val);
# 2258|                   XEVD_ITX_SHIFT_CLIP(v[16], add_s2, shift, min_val, max_val);
# 2259|                   XEVD_ITX_SHIFT_CLIP(v[17], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def317]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2258:17: note[note]: called from here
# 2256|                   XEVD_ITX_SHIFT_CLIP(v[14], add_s2, shift, min_val, max_val);
# 2257|                   XEVD_ITX_SHIFT_CLIP(v[15], add_s2, shift, min_val, max_val);
# 2258|->                 XEVD_ITX_SHIFT_CLIP(v[16], add_s2, shift, min_val, max_val);
# 2259|                   XEVD_ITX_SHIFT_CLIP(v[17], add_s2, shift, min_val, max_val);
# 2260|                   XEVD_ITX_SHIFT_CLIP(v[18], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def318]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2259:17: note[note]: called from here
# 2257|                   XEVD_ITX_SHIFT_CLIP(v[15], add_s2, shift, min_val, max_val);
# 2258|                   XEVD_ITX_SHIFT_CLIP(v[16], add_s2, shift, min_val, max_val);
# 2259|->                 XEVD_ITX_SHIFT_CLIP(v[17], add_s2, shift, min_val, max_val);
# 2260|                   XEVD_ITX_SHIFT_CLIP(v[18], add_s2, shift, min_val, max_val);
# 2261|                   XEVD_ITX_SHIFT_CLIP(v[19], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def319]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2260:17: note[note]: called from here
# 2258|                   XEVD_ITX_SHIFT_CLIP(v[16], add_s2, shift, min_val, max_val);
# 2259|                   XEVD_ITX_SHIFT_CLIP(v[17], add_s2, shift, min_val, max_val);
# 2260|->                 XEVD_ITX_SHIFT_CLIP(v[18], add_s2, shift, min_val, max_val);
# 2261|                   XEVD_ITX_SHIFT_CLIP(v[19], add_s2, shift, min_val, max_val);
# 2262|                   XEVD_ITX_SHIFT_CLIP(v[20], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def320]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2261:17: note[note]: called from here
# 2259|                   XEVD_ITX_SHIFT_CLIP(v[17], add_s2, shift, min_val, max_val);
# 2260|                   XEVD_ITX_SHIFT_CLIP(v[18], add_s2, shift, min_val, max_val);
# 2261|->                 XEVD_ITX_SHIFT_CLIP(v[19], add_s2, shift, min_val, max_val);
# 2262|                   XEVD_ITX_SHIFT_CLIP(v[20], add_s2, shift, min_val, max_val);
# 2263|                   XEVD_ITX_SHIFT_CLIP(v[21], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def321]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2262:17: note[note]: called from here
# 2260|                   XEVD_ITX_SHIFT_CLIP(v[18], add_s2, shift, min_val, max_val);
# 2261|                   XEVD_ITX_SHIFT_CLIP(v[19], add_s2, shift, min_val, max_val);
# 2262|->                 XEVD_ITX_SHIFT_CLIP(v[20], add_s2, shift, min_val, max_val);
# 2263|                   XEVD_ITX_SHIFT_CLIP(v[21], add_s2, shift, min_val, max_val);
# 2264|                   XEVD_ITX_SHIFT_CLIP(v[22], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def322]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2263:17: note[note]: called from here
# 2261|                   XEVD_ITX_SHIFT_CLIP(v[19], add_s2, shift, min_val, max_val);
# 2262|                   XEVD_ITX_SHIFT_CLIP(v[20], add_s2, shift, min_val, max_val);
# 2263|->                 XEVD_ITX_SHIFT_CLIP(v[21], add_s2, shift, min_val, max_val);
# 2264|                   XEVD_ITX_SHIFT_CLIP(v[22], add_s2, shift, min_val, max_val);
# 2265|                   XEVD_ITX_SHIFT_CLIP(v[23], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def323]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2264:17: note[note]: called from here
# 2262|                   XEVD_ITX_SHIFT_CLIP(v[20], add_s2, shift, min_val, max_val);
# 2263|                   XEVD_ITX_SHIFT_CLIP(v[21], add_s2, shift, min_val, max_val);
# 2264|->                 XEVD_ITX_SHIFT_CLIP(v[22], add_s2, shift, min_val, max_val);
# 2265|                   XEVD_ITX_SHIFT_CLIP(v[23], add_s2, shift, min_val, max_val);
# 2266|                   XEVD_ITX_SHIFT_CLIP(v[24], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def324]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2265:17: note[note]: called from here
# 2263|                   XEVD_ITX_SHIFT_CLIP(v[21], add_s2, shift, min_val, max_val);
# 2264|                   XEVD_ITX_SHIFT_CLIP(v[22], add_s2, shift, min_val, max_val);
# 2265|->                 XEVD_ITX_SHIFT_CLIP(v[23], add_s2, shift, min_val, max_val);
# 2266|                   XEVD_ITX_SHIFT_CLIP(v[24], add_s2, shift, min_val, max_val);
# 2267|                   XEVD_ITX_SHIFT_CLIP(v[25], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def325]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2266:17: note[note]: called from here
# 2264|                   XEVD_ITX_SHIFT_CLIP(v[22], add_s2, shift, min_val, max_val);
# 2265|                   XEVD_ITX_SHIFT_CLIP(v[23], add_s2, shift, min_val, max_val);
# 2266|->                 XEVD_ITX_SHIFT_CLIP(v[24], add_s2, shift, min_val, max_val);
# 2267|                   XEVD_ITX_SHIFT_CLIP(v[25], add_s2, shift, min_val, max_val);
# 2268|                   XEVD_ITX_SHIFT_CLIP(v[26], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def326]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2267:17: note[note]: called from here
# 2265|                   XEVD_ITX_SHIFT_CLIP(v[23], add_s2, shift, min_val, max_val);
# 2266|                   XEVD_ITX_SHIFT_CLIP(v[24], add_s2, shift, min_val, max_val);
# 2267|->                 XEVD_ITX_SHIFT_CLIP(v[25], add_s2, shift, min_val, max_val);
# 2268|                   XEVD_ITX_SHIFT_CLIP(v[26], add_s2, shift, min_val, max_val);
# 2269|                   XEVD_ITX_SHIFT_CLIP(v[27], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def327]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2268:17: note[note]: called from here
# 2266|                   XEVD_ITX_SHIFT_CLIP(v[24], add_s2, shift, min_val, max_val);
# 2267|                   XEVD_ITX_SHIFT_CLIP(v[25], add_s2, shift, min_val, max_val);
# 2268|->                 XEVD_ITX_SHIFT_CLIP(v[26], add_s2, shift, min_val, max_val);
# 2269|                   XEVD_ITX_SHIFT_CLIP(v[27], add_s2, shift, min_val, max_val);
# 2270|                   XEVD_ITX_SHIFT_CLIP(v[28], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def328]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2269:17: note[note]: called from here
# 2267|                   XEVD_ITX_SHIFT_CLIP(v[25], add_s2, shift, min_val, max_val);
# 2268|                   XEVD_ITX_SHIFT_CLIP(v[26], add_s2, shift, min_val, max_val);
# 2269|->                 XEVD_ITX_SHIFT_CLIP(v[27], add_s2, shift, min_val, max_val);
# 2270|                   XEVD_ITX_SHIFT_CLIP(v[28], add_s2, shift, min_val, max_val);
# 2271|                   XEVD_ITX_SHIFT_CLIP(v[29], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def329]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2270:17: note[note]: called from here
# 2268|                   XEVD_ITX_SHIFT_CLIP(v[26], add_s2, shift, min_val, max_val);
# 2269|                   XEVD_ITX_SHIFT_CLIP(v[27], add_s2, shift, min_val, max_val);
# 2270|->                 XEVD_ITX_SHIFT_CLIP(v[28], add_s2, shift, min_val, max_val);
# 2271|                   XEVD_ITX_SHIFT_CLIP(v[29], add_s2, shift, min_val, max_val);
# 2272|                   XEVD_ITX_SHIFT_CLIP(v[30], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def330]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2271:17: note[note]: called from here
# 2269|                   XEVD_ITX_SHIFT_CLIP(v[27], add_s2, shift, min_val, max_val);
# 2270|                   XEVD_ITX_SHIFT_CLIP(v[28], add_s2, shift, min_val, max_val);
# 2271|->                 XEVD_ITX_SHIFT_CLIP(v[29], add_s2, shift, min_val, max_val);
# 2272|                   XEVD_ITX_SHIFT_CLIP(v[30], add_s2, shift, min_val, max_val);
# 2273|                   XEVD_ITX_SHIFT_CLIP(v[31], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def331]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2272:17: note[note]: called from here
# 2270|                   XEVD_ITX_SHIFT_CLIP(v[28], add_s2, shift, min_val, max_val);
# 2271|                   XEVD_ITX_SHIFT_CLIP(v[29], add_s2, shift, min_val, max_val);
# 2272|->                 XEVD_ITX_SHIFT_CLIP(v[30], add_s2, shift, min_val, max_val);
# 2273|                   XEVD_ITX_SHIFT_CLIP(v[31], add_s2, shift, min_val, max_val);
# 2274|                   XEVD_ITX_SHIFT_CLIP(v[32], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def332]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2273:17: note[note]: called from here
# 2271|                   XEVD_ITX_SHIFT_CLIP(v[29], add_s2, shift, min_val, max_val);
# 2272|                   XEVD_ITX_SHIFT_CLIP(v[30], add_s2, shift, min_val, max_val);
# 2273|->                 XEVD_ITX_SHIFT_CLIP(v[31], add_s2, shift, min_val, max_val);
# 2274|                   XEVD_ITX_SHIFT_CLIP(v[32], add_s2, shift, min_val, max_val);
# 2275|                   XEVD_ITX_SHIFT_CLIP(v[33], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def333]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2274:17: note[note]: called from here
# 2272|                   XEVD_ITX_SHIFT_CLIP(v[30], add_s2, shift, min_val, max_val);
# 2273|                   XEVD_ITX_SHIFT_CLIP(v[31], add_s2, shift, min_val, max_val);
# 2274|->                 XEVD_ITX_SHIFT_CLIP(v[32], add_s2, shift, min_val, max_val);
# 2275|                   XEVD_ITX_SHIFT_CLIP(v[33], add_s2, shift, min_val, max_val);
# 2276|                   XEVD_ITX_SHIFT_CLIP(v[34], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def334]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2275:17: note[note]: called from here
# 2273|                   XEVD_ITX_SHIFT_CLIP(v[31], add_s2, shift, min_val, max_val);
# 2274|                   XEVD_ITX_SHIFT_CLIP(v[32], add_s2, shift, min_val, max_val);
# 2275|->                 XEVD_ITX_SHIFT_CLIP(v[33], add_s2, shift, min_val, max_val);
# 2276|                   XEVD_ITX_SHIFT_CLIP(v[34], add_s2, shift, min_val, max_val);
# 2277|                   XEVD_ITX_SHIFT_CLIP(v[35], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def335]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2276:17: note[note]: called from here
# 2274|                   XEVD_ITX_SHIFT_CLIP(v[32], add_s2, shift, min_val, max_val);
# 2275|                   XEVD_ITX_SHIFT_CLIP(v[33], add_s2, shift, min_val, max_val);
# 2276|->                 XEVD_ITX_SHIFT_CLIP(v[34], add_s2, shift, min_val, max_val);
# 2277|                   XEVD_ITX_SHIFT_CLIP(v[35], add_s2, shift, min_val, max_val);
# 2278|                   XEVD_ITX_SHIFT_CLIP(v[36], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def336]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2277:17: note[note]: called from here
# 2275|                   XEVD_ITX_SHIFT_CLIP(v[33], add_s2, shift, min_val, max_val);
# 2276|                   XEVD_ITX_SHIFT_CLIP(v[34], add_s2, shift, min_val, max_val);
# 2277|->                 XEVD_ITX_SHIFT_CLIP(v[35], add_s2, shift, min_val, max_val);
# 2278|                   XEVD_ITX_SHIFT_CLIP(v[36], add_s2, shift, min_val, max_val);
# 2279|                   XEVD_ITX_SHIFT_CLIP(v[37], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def337]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2278:17: note[note]: called from here
# 2276|                   XEVD_ITX_SHIFT_CLIP(v[34], add_s2, shift, min_val, max_val);
# 2277|                   XEVD_ITX_SHIFT_CLIP(v[35], add_s2, shift, min_val, max_val);
# 2278|->                 XEVD_ITX_SHIFT_CLIP(v[36], add_s2, shift, min_val, max_val);
# 2279|                   XEVD_ITX_SHIFT_CLIP(v[37], add_s2, shift, min_val, max_val);
# 2280|                   XEVD_ITX_SHIFT_CLIP(v[38], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def338]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2279:17: note[note]: called from here
# 2277|                   XEVD_ITX_SHIFT_CLIP(v[35], add_s2, shift, min_val, max_val);
# 2278|                   XEVD_ITX_SHIFT_CLIP(v[36], add_s2, shift, min_val, max_val);
# 2279|->                 XEVD_ITX_SHIFT_CLIP(v[37], add_s2, shift, min_val, max_val);
# 2280|                   XEVD_ITX_SHIFT_CLIP(v[38], add_s2, shift, min_val, max_val);
# 2281|                   XEVD_ITX_SHIFT_CLIP(v[39], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def339]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2280:17: note[note]: called from here
# 2278|                   XEVD_ITX_SHIFT_CLIP(v[36], add_s2, shift, min_val, max_val);
# 2279|                   XEVD_ITX_SHIFT_CLIP(v[37], add_s2, shift, min_val, max_val);
# 2280|->                 XEVD_ITX_SHIFT_CLIP(v[38], add_s2, shift, min_val, max_val);
# 2281|                   XEVD_ITX_SHIFT_CLIP(v[39], add_s2, shift, min_val, max_val);
# 2282|                   XEVD_ITX_SHIFT_CLIP(v[40], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def340]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2281:17: note[note]: called from here
# 2279|                   XEVD_ITX_SHIFT_CLIP(v[37], add_s2, shift, min_val, max_val);
# 2280|                   XEVD_ITX_SHIFT_CLIP(v[38], add_s2, shift, min_val, max_val);
# 2281|->                 XEVD_ITX_SHIFT_CLIP(v[39], add_s2, shift, min_val, max_val);
# 2282|                   XEVD_ITX_SHIFT_CLIP(v[40], add_s2, shift, min_val, max_val);
# 2283|                   XEVD_ITX_SHIFT_CLIP(v[41], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def341]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2282:17: note[note]: called from here
# 2280|                   XEVD_ITX_SHIFT_CLIP(v[38], add_s2, shift, min_val, max_val);
# 2281|                   XEVD_ITX_SHIFT_CLIP(v[39], add_s2, shift, min_val, max_val);
# 2282|->                 XEVD_ITX_SHIFT_CLIP(v[40], add_s2, shift, min_val, max_val);
# 2283|                   XEVD_ITX_SHIFT_CLIP(v[41], add_s2, shift, min_val, max_val);
# 2284|                   XEVD_ITX_SHIFT_CLIP(v[42], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def342]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2283:17: note[note]: called from here
# 2281|                   XEVD_ITX_SHIFT_CLIP(v[39], add_s2, shift, min_val, max_val);
# 2282|                   XEVD_ITX_SHIFT_CLIP(v[40], add_s2, shift, min_val, max_val);
# 2283|->                 XEVD_ITX_SHIFT_CLIP(v[41], add_s2, shift, min_val, max_val);
# 2284|                   XEVD_ITX_SHIFT_CLIP(v[42], add_s2, shift, min_val, max_val);
# 2285|                   XEVD_ITX_SHIFT_CLIP(v[43], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def343]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2284:17: note[note]: called from here
# 2282|                   XEVD_ITX_SHIFT_CLIP(v[40], add_s2, shift, min_val, max_val);
# 2283|                   XEVD_ITX_SHIFT_CLIP(v[41], add_s2, shift, min_val, max_val);
# 2284|->                 XEVD_ITX_SHIFT_CLIP(v[42], add_s2, shift, min_val, max_val);
# 2285|                   XEVD_ITX_SHIFT_CLIP(v[43], add_s2, shift, min_val, max_val);
# 2286|                   XEVD_ITX_SHIFT_CLIP(v[44], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def344]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2285:17: note[note]: called from here
# 2283|                   XEVD_ITX_SHIFT_CLIP(v[41], add_s2, shift, min_val, max_val);
# 2284|                   XEVD_ITX_SHIFT_CLIP(v[42], add_s2, shift, min_val, max_val);
# 2285|->                 XEVD_ITX_SHIFT_CLIP(v[43], add_s2, shift, min_val, max_val);
# 2286|                   XEVD_ITX_SHIFT_CLIP(v[44], add_s2, shift, min_val, max_val);
# 2287|                   XEVD_ITX_SHIFT_CLIP(v[45], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def345]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2286:17: note[note]: called from here
# 2284|                   XEVD_ITX_SHIFT_CLIP(v[42], add_s2, shift, min_val, max_val);
# 2285|                   XEVD_ITX_SHIFT_CLIP(v[43], add_s2, shift, min_val, max_val);
# 2286|->                 XEVD_ITX_SHIFT_CLIP(v[44], add_s2, shift, min_val, max_val);
# 2287|                   XEVD_ITX_SHIFT_CLIP(v[45], add_s2, shift, min_val, max_val);
# 2288|                   XEVD_ITX_SHIFT_CLIP(v[46], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def346]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2287:17: note[note]: called from here
# 2285|                   XEVD_ITX_SHIFT_CLIP(v[43], add_s2, shift, min_val, max_val);
# 2286|                   XEVD_ITX_SHIFT_CLIP(v[44], add_s2, shift, min_val, max_val);
# 2287|->                 XEVD_ITX_SHIFT_CLIP(v[45], add_s2, shift, min_val, max_val);
# 2288|                   XEVD_ITX_SHIFT_CLIP(v[46], add_s2, shift, min_val, max_val);
# 2289|                   XEVD_ITX_SHIFT_CLIP(v[47], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def347]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2288:17: note[note]: called from here
# 2286|                   XEVD_ITX_SHIFT_CLIP(v[44], add_s2, shift, min_val, max_val);
# 2287|                   XEVD_ITX_SHIFT_CLIP(v[45], add_s2, shift, min_val, max_val);
# 2288|->                 XEVD_ITX_SHIFT_CLIP(v[46], add_s2, shift, min_val, max_val);
# 2289|                   XEVD_ITX_SHIFT_CLIP(v[47], add_s2, shift, min_val, max_val);
# 2290|                   XEVD_ITX_SHIFT_CLIP(v[48], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def348]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2289:17: note[note]: called from here
# 2287|                   XEVD_ITX_SHIFT_CLIP(v[45], add_s2, shift, min_val, max_val);
# 2288|                   XEVD_ITX_SHIFT_CLIP(v[46], add_s2, shift, min_val, max_val);
# 2289|->                 XEVD_ITX_SHIFT_CLIP(v[47], add_s2, shift, min_val, max_val);
# 2290|                   XEVD_ITX_SHIFT_CLIP(v[48], add_s2, shift, min_val, max_val);
# 2291|                   XEVD_ITX_SHIFT_CLIP(v[49], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def349]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2290:17: note[note]: called from here
# 2288|                   XEVD_ITX_SHIFT_CLIP(v[46], add_s2, shift, min_val, max_val);
# 2289|                   XEVD_ITX_SHIFT_CLIP(v[47], add_s2, shift, min_val, max_val);
# 2290|->                 XEVD_ITX_SHIFT_CLIP(v[48], add_s2, shift, min_val, max_val);
# 2291|                   XEVD_ITX_SHIFT_CLIP(v[49], add_s2, shift, min_val, max_val);
# 2292|                   XEVD_ITX_SHIFT_CLIP(v[50], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def350]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2291:17: note[note]: called from here
# 2289|                   XEVD_ITX_SHIFT_CLIP(v[47], add_s2, shift, min_val, max_val);
# 2290|                   XEVD_ITX_SHIFT_CLIP(v[48], add_s2, shift, min_val, max_val);
# 2291|->                 XEVD_ITX_SHIFT_CLIP(v[49], add_s2, shift, min_val, max_val);
# 2292|                   XEVD_ITX_SHIFT_CLIP(v[50], add_s2, shift, min_val, max_val);
# 2293|                   XEVD_ITX_SHIFT_CLIP(v[51], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def351]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2292:17: note[note]: called from here
# 2290|                   XEVD_ITX_SHIFT_CLIP(v[48], add_s2, shift, min_val, max_val);
# 2291|                   XEVD_ITX_SHIFT_CLIP(v[49], add_s2, shift, min_val, max_val);
# 2292|->                 XEVD_ITX_SHIFT_CLIP(v[50], add_s2, shift, min_val, max_val);
# 2293|                   XEVD_ITX_SHIFT_CLIP(v[51], add_s2, shift, min_val, max_val);
# 2294|                   XEVD_ITX_SHIFT_CLIP(v[52], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def352]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2293:17: note[note]: called from here
# 2291|                   XEVD_ITX_SHIFT_CLIP(v[49], add_s2, shift, min_val, max_val);
# 2292|                   XEVD_ITX_SHIFT_CLIP(v[50], add_s2, shift, min_val, max_val);
# 2293|->                 XEVD_ITX_SHIFT_CLIP(v[51], add_s2, shift, min_val, max_val);
# 2294|                   XEVD_ITX_SHIFT_CLIP(v[52], add_s2, shift, min_val, max_val);
# 2295|                   XEVD_ITX_SHIFT_CLIP(v[53], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def353]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2294:17: note[note]: called from here
# 2292|                   XEVD_ITX_SHIFT_CLIP(v[50], add_s2, shift, min_val, max_val);
# 2293|                   XEVD_ITX_SHIFT_CLIP(v[51], add_s2, shift, min_val, max_val);
# 2294|->                 XEVD_ITX_SHIFT_CLIP(v[52], add_s2, shift, min_val, max_val);
# 2295|                   XEVD_ITX_SHIFT_CLIP(v[53], add_s2, shift, min_val, max_val);
# 2296|                   XEVD_ITX_SHIFT_CLIP(v[54], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def354]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2295:17: note[note]: called from here
# 2293|                   XEVD_ITX_SHIFT_CLIP(v[51], add_s2, shift, min_val, max_val);
# 2294|                   XEVD_ITX_SHIFT_CLIP(v[52], add_s2, shift, min_val, max_val);
# 2295|->                 XEVD_ITX_SHIFT_CLIP(v[53], add_s2, shift, min_val, max_val);
# 2296|                   XEVD_ITX_SHIFT_CLIP(v[54], add_s2, shift, min_val, max_val);
# 2297|                   XEVD_ITX_SHIFT_CLIP(v[55], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def355]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2296:17: note[note]: called from here
# 2294|                   XEVD_ITX_SHIFT_CLIP(v[52], add_s2, shift, min_val, max_val);
# 2295|                   XEVD_ITX_SHIFT_CLIP(v[53], add_s2, shift, min_val, max_val);
# 2296|->                 XEVD_ITX_SHIFT_CLIP(v[54], add_s2, shift, min_val, max_val);
# 2297|                   XEVD_ITX_SHIFT_CLIP(v[55], add_s2, shift, min_val, max_val);
# 2298|                   XEVD_ITX_SHIFT_CLIP(v[56], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def356]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2297:17: note[note]: called from here
# 2295|                   XEVD_ITX_SHIFT_CLIP(v[53], add_s2, shift, min_val, max_val);
# 2296|                   XEVD_ITX_SHIFT_CLIP(v[54], add_s2, shift, min_val, max_val);
# 2297|->                 XEVD_ITX_SHIFT_CLIP(v[55], add_s2, shift, min_val, max_val);
# 2298|                   XEVD_ITX_SHIFT_CLIP(v[56], add_s2, shift, min_val, max_val);
# 2299|                   XEVD_ITX_SHIFT_CLIP(v[57], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def357]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2298:17: note[note]: called from here
# 2296|                   XEVD_ITX_SHIFT_CLIP(v[54], add_s2, shift, min_val, max_val);
# 2297|                   XEVD_ITX_SHIFT_CLIP(v[55], add_s2, shift, min_val, max_val);
# 2298|->                 XEVD_ITX_SHIFT_CLIP(v[56], add_s2, shift, min_val, max_val);
# 2299|                   XEVD_ITX_SHIFT_CLIP(v[57], add_s2, shift, min_val, max_val);
# 2300|                   XEVD_ITX_SHIFT_CLIP(v[58], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def358]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2299:17: note[note]: called from here
# 2297|                   XEVD_ITX_SHIFT_CLIP(v[55], add_s2, shift, min_val, max_val);
# 2298|                   XEVD_ITX_SHIFT_CLIP(v[56], add_s2, shift, min_val, max_val);
# 2299|->                 XEVD_ITX_SHIFT_CLIP(v[57], add_s2, shift, min_val, max_val);
# 2300|                   XEVD_ITX_SHIFT_CLIP(v[58], add_s2, shift, min_val, max_val);
# 2301|                   XEVD_ITX_SHIFT_CLIP(v[59], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def359]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2300:17: note[note]: called from here
# 2298|                   XEVD_ITX_SHIFT_CLIP(v[56], add_s2, shift, min_val, max_val);
# 2299|                   XEVD_ITX_SHIFT_CLIP(v[57], add_s2, shift, min_val, max_val);
# 2300|->                 XEVD_ITX_SHIFT_CLIP(v[58], add_s2, shift, min_val, max_val);
# 2301|                   XEVD_ITX_SHIFT_CLIP(v[59], add_s2, shift, min_val, max_val);
# 2302|                   XEVD_ITX_SHIFT_CLIP(v[60], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def360]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2301:17: note[note]: called from here
# 2299|                   XEVD_ITX_SHIFT_CLIP(v[57], add_s2, shift, min_val, max_val);
# 2300|                   XEVD_ITX_SHIFT_CLIP(v[58], add_s2, shift, min_val, max_val);
# 2301|->                 XEVD_ITX_SHIFT_CLIP(v[59], add_s2, shift, min_val, max_val);
# 2302|                   XEVD_ITX_SHIFT_CLIP(v[60], add_s2, shift, min_val, max_val);
# 2303|                   XEVD_ITX_SHIFT_CLIP(v[61], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def361]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2302:17: note[note]: called from here
# 2300|                   XEVD_ITX_SHIFT_CLIP(v[58], add_s2, shift, min_val, max_val);
# 2301|                   XEVD_ITX_SHIFT_CLIP(v[59], add_s2, shift, min_val, max_val);
# 2302|->                 XEVD_ITX_SHIFT_CLIP(v[60], add_s2, shift, min_val, max_val);
# 2303|                   XEVD_ITX_SHIFT_CLIP(v[61], add_s2, shift, min_val, max_val);
# 2304|                   XEVD_ITX_SHIFT_CLIP(v[62], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def362]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2303:17: note[note]: called from here
# 2301|                   XEVD_ITX_SHIFT_CLIP(v[59], add_s2, shift, min_val, max_val);
# 2302|                   XEVD_ITX_SHIFT_CLIP(v[60], add_s2, shift, min_val, max_val);
# 2303|->                 XEVD_ITX_SHIFT_CLIP(v[61], add_s2, shift, min_val, max_val);
# 2304|                   XEVD_ITX_SHIFT_CLIP(v[62], add_s2, shift, min_val, max_val);
# 2305|                   XEVD_ITX_SHIFT_CLIP(v[63], add_s2, shift, min_val, max_val);

Error: COMPILER_WARNING: [#def363]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2304:17: note[note]: called from here
# 2302|                   XEVD_ITX_SHIFT_CLIP(v[60], add_s2, shift, min_val, max_val);
# 2303|                   XEVD_ITX_SHIFT_CLIP(v[61], add_s2, shift, min_val, max_val);
# 2304|->                 XEVD_ITX_SHIFT_CLIP(v[62], add_s2, shift, min_val, max_val);
# 2305|                   XEVD_ITX_SHIFT_CLIP(v[63], add_s2, shift, min_val, max_val);
# 2306|   

Error: COMPILER_WARNING: [#def364]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2305:17: note[note]: called from here
# 2303|                   XEVD_ITX_SHIFT_CLIP(v[61], add_s2, shift, min_val, max_val);
# 2304|                   XEVD_ITX_SHIFT_CLIP(v[62], add_s2, shift, min_val, max_val);
# 2305|->                 XEVD_ITX_SHIFT_CLIP(v[63], add_s2, shift, min_val, max_val);
# 2306|   
# 2307|                   t[ 0] = _mm256_packs_epi32(v[ 0], v[32]);

Error: COMPILER_WARNING: [#def365]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2307:25: note[note]: called from here
# 2305|                   XEVD_ITX_SHIFT_CLIP(v[63], add_s2, shift, min_val, max_val);
# 2306|   
# 2307|->                 t[ 0] = _mm256_packs_epi32(v[ 0], v[32]);
# 2308|                   t[ 1] = _mm256_packs_epi32(v[ 1], v[33]);
# 2309|                   t[ 2] = _mm256_packs_epi32(v[ 2], v[34]);

Error: COMPILER_WARNING: [#def366]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2308:25: note[note]: called from here
# 2306|   
# 2307|                   t[ 0] = _mm256_packs_epi32(v[ 0], v[32]);
# 2308|->                 t[ 1] = _mm256_packs_epi32(v[ 1], v[33]);
# 2309|                   t[ 2] = _mm256_packs_epi32(v[ 2], v[34]);
# 2310|                   t[ 3] = _mm256_packs_epi32(v[ 3], v[35]);

Error: COMPILER_WARNING: [#def367]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2309:25: note[note]: called from here
# 2307|                   t[ 0] = _mm256_packs_epi32(v[ 0], v[32]);
# 2308|                   t[ 1] = _mm256_packs_epi32(v[ 1], v[33]);
# 2309|->                 t[ 2] = _mm256_packs_epi32(v[ 2], v[34]);
# 2310|                   t[ 3] = _mm256_packs_epi32(v[ 3], v[35]);
# 2311|                   t[ 4] = _mm256_packs_epi32(v[ 4], v[36]);

Error: COMPILER_WARNING: [#def368]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2310:25: note[note]: called from here
# 2308|                   t[ 1] = _mm256_packs_epi32(v[ 1], v[33]);
# 2309|                   t[ 2] = _mm256_packs_epi32(v[ 2], v[34]);
# 2310|->                 t[ 3] = _mm256_packs_epi32(v[ 3], v[35]);
# 2311|                   t[ 4] = _mm256_packs_epi32(v[ 4], v[36]);
# 2312|                   t[ 5] = _mm256_packs_epi32(v[ 5], v[37]);

Error: COMPILER_WARNING: [#def369]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2311:25: note[note]: called from here
# 2309|                   t[ 2] = _mm256_packs_epi32(v[ 2], v[34]);
# 2310|                   t[ 3] = _mm256_packs_epi32(v[ 3], v[35]);
# 2311|->                 t[ 4] = _mm256_packs_epi32(v[ 4], v[36]);
# 2312|                   t[ 5] = _mm256_packs_epi32(v[ 5], v[37]);
# 2313|                   t[ 6] = _mm256_packs_epi32(v[ 6], v[38]);

Error: COMPILER_WARNING: [#def370]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2312:25: note[note]: called from here
# 2310|                   t[ 3] = _mm256_packs_epi32(v[ 3], v[35]);
# 2311|                   t[ 4] = _mm256_packs_epi32(v[ 4], v[36]);
# 2312|->                 t[ 5] = _mm256_packs_epi32(v[ 5], v[37]);
# 2313|                   t[ 6] = _mm256_packs_epi32(v[ 6], v[38]);
# 2314|                   t[ 7] = _mm256_packs_epi32(v[ 7], v[39]);

Error: COMPILER_WARNING: [#def371]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2313:25: note[note]: called from here
# 2311|                   t[ 4] = _mm256_packs_epi32(v[ 4], v[36]);
# 2312|                   t[ 5] = _mm256_packs_epi32(v[ 5], v[37]);
# 2313|->                 t[ 6] = _mm256_packs_epi32(v[ 6], v[38]);
# 2314|                   t[ 7] = _mm256_packs_epi32(v[ 7], v[39]);
# 2315|                   t[ 8] = _mm256_packs_epi32(v[ 8], v[40]);

Error: COMPILER_WARNING: [#def372]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2314:25: note[note]: called from here
# 2312|                   t[ 5] = _mm256_packs_epi32(v[ 5], v[37]);
# 2313|                   t[ 6] = _mm256_packs_epi32(v[ 6], v[38]);
# 2314|->                 t[ 7] = _mm256_packs_epi32(v[ 7], v[39]);
# 2315|                   t[ 8] = _mm256_packs_epi32(v[ 8], v[40]);
# 2316|                   t[ 9] = _mm256_packs_epi32(v[ 9], v[41]);

Error: COMPILER_WARNING: [#def373]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2315:25: note[note]: called from here
# 2313|                   t[ 6] = _mm256_packs_epi32(v[ 6], v[38]);
# 2314|                   t[ 7] = _mm256_packs_epi32(v[ 7], v[39]);
# 2315|->                 t[ 8] = _mm256_packs_epi32(v[ 8], v[40]);
# 2316|                   t[ 9] = _mm256_packs_epi32(v[ 9], v[41]);
# 2317|                   t[10] = _mm256_packs_epi32(v[10], v[42]);

Error: COMPILER_WARNING: [#def374]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2316:25: note[note]: called from here
# 2314|                   t[ 7] = _mm256_packs_epi32(v[ 7], v[39]);
# 2315|                   t[ 8] = _mm256_packs_epi32(v[ 8], v[40]);
# 2316|->                 t[ 9] = _mm256_packs_epi32(v[ 9], v[41]);
# 2317|                   t[10] = _mm256_packs_epi32(v[10], v[42]);
# 2318|                   t[11] = _mm256_packs_epi32(v[11], v[43]);

Error: COMPILER_WARNING: [#def375]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2317:25: note[note]: called from here
# 2315|                   t[ 8] = _mm256_packs_epi32(v[ 8], v[40]);
# 2316|                   t[ 9] = _mm256_packs_epi32(v[ 9], v[41]);
# 2317|->                 t[10] = _mm256_packs_epi32(v[10], v[42]);
# 2318|                   t[11] = _mm256_packs_epi32(v[11], v[43]);
# 2319|                   t[12] = _mm256_packs_epi32(v[12], v[44]);

Error: COMPILER_WARNING: [#def376]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2318:25: note[note]: called from here
# 2316|                   t[ 9] = _mm256_packs_epi32(v[ 9], v[41]);
# 2317|                   t[10] = _mm256_packs_epi32(v[10], v[42]);
# 2318|->                 t[11] = _mm256_packs_epi32(v[11], v[43]);
# 2319|                   t[12] = _mm256_packs_epi32(v[12], v[44]);
# 2320|                   t[13] = _mm256_packs_epi32(v[13], v[45]);

Error: COMPILER_WARNING: [#def377]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2319:25: note[note]: called from here
# 2317|                   t[10] = _mm256_packs_epi32(v[10], v[42]);
# 2318|                   t[11] = _mm256_packs_epi32(v[11], v[43]);
# 2319|->                 t[12] = _mm256_packs_epi32(v[12], v[44]);
# 2320|                   t[13] = _mm256_packs_epi32(v[13], v[45]);
# 2321|                   t[14] = _mm256_packs_epi32(v[14], v[46]);

Error: COMPILER_WARNING: [#def378]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2320:25: note[note]: called from here
# 2318|                   t[11] = _mm256_packs_epi32(v[11], v[43]);
# 2319|                   t[12] = _mm256_packs_epi32(v[12], v[44]);
# 2320|->                 t[13] = _mm256_packs_epi32(v[13], v[45]);
# 2321|                   t[14] = _mm256_packs_epi32(v[14], v[46]);
# 2322|                   t[15] = _mm256_packs_epi32(v[15], v[47]);

Error: COMPILER_WARNING: [#def379]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2321:25: note[note]: called from here
# 2319|                   t[12] = _mm256_packs_epi32(v[12], v[44]);
# 2320|                   t[13] = _mm256_packs_epi32(v[13], v[45]);
# 2321|->                 t[14] = _mm256_packs_epi32(v[14], v[46]);
# 2322|                   t[15] = _mm256_packs_epi32(v[15], v[47]);
# 2323|                   t[16] = _mm256_packs_epi32(v[16], v[48]);

Error: COMPILER_WARNING: [#def380]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2322:25: note[note]: called from here
# 2320|                   t[13] = _mm256_packs_epi32(v[13], v[45]);
# 2321|                   t[14] = _mm256_packs_epi32(v[14], v[46]);
# 2322|->                 t[15] = _mm256_packs_epi32(v[15], v[47]);
# 2323|                   t[16] = _mm256_packs_epi32(v[16], v[48]);
# 2324|                   t[17] = _mm256_packs_epi32(v[17], v[49]);

Error: COMPILER_WARNING: [#def381]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2323:25: note[note]: called from here
# 2321|                   t[14] = _mm256_packs_epi32(v[14], v[46]);
# 2322|                   t[15] = _mm256_packs_epi32(v[15], v[47]);
# 2323|->                 t[16] = _mm256_packs_epi32(v[16], v[48]);
# 2324|                   t[17] = _mm256_packs_epi32(v[17], v[49]);
# 2325|                   t[18] = _mm256_packs_epi32(v[18], v[50]);

Error: COMPILER_WARNING: [#def382]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2324:25: note[note]: called from here
# 2322|                   t[15] = _mm256_packs_epi32(v[15], v[47]);
# 2323|                   t[16] = _mm256_packs_epi32(v[16], v[48]);
# 2324|->                 t[17] = _mm256_packs_epi32(v[17], v[49]);
# 2325|                   t[18] = _mm256_packs_epi32(v[18], v[50]);
# 2326|                   t[19] = _mm256_packs_epi32(v[19], v[51]);

Error: COMPILER_WARNING: [#def383]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2325:25: note[note]: called from here
# 2323|                   t[16] = _mm256_packs_epi32(v[16], v[48]);
# 2324|                   t[17] = _mm256_packs_epi32(v[17], v[49]);
# 2325|->                 t[18] = _mm256_packs_epi32(v[18], v[50]);
# 2326|                   t[19] = _mm256_packs_epi32(v[19], v[51]);
# 2327|                   t[20] = _mm256_packs_epi32(v[20], v[52]);

Error: COMPILER_WARNING: [#def384]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2326:25: note[note]: called from here
# 2324|                   t[17] = _mm256_packs_epi32(v[17], v[49]);
# 2325|                   t[18] = _mm256_packs_epi32(v[18], v[50]);
# 2326|->                 t[19] = _mm256_packs_epi32(v[19], v[51]);
# 2327|                   t[20] = _mm256_packs_epi32(v[20], v[52]);
# 2328|                   t[21] = _mm256_packs_epi32(v[21], v[53]);

Error: COMPILER_WARNING: [#def385]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2327:25: note[note]: called from here
# 2325|                   t[18] = _mm256_packs_epi32(v[18], v[50]);
# 2326|                   t[19] = _mm256_packs_epi32(v[19], v[51]);
# 2327|->                 t[20] = _mm256_packs_epi32(v[20], v[52]);
# 2328|                   t[21] = _mm256_packs_epi32(v[21], v[53]);
# 2329|                   t[22] = _mm256_packs_epi32(v[22], v[54]);

Error: COMPILER_WARNING: [#def386]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2328:25: note[note]: called from here
# 2326|                   t[19] = _mm256_packs_epi32(v[19], v[51]);
# 2327|                   t[20] = _mm256_packs_epi32(v[20], v[52]);
# 2328|->                 t[21] = _mm256_packs_epi32(v[21], v[53]);
# 2329|                   t[22] = _mm256_packs_epi32(v[22], v[54]);
# 2330|                   t[23] = _mm256_packs_epi32(v[23], v[55]);

Error: COMPILER_WARNING: [#def387]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2329:25: note[note]: called from here
# 2327|                   t[20] = _mm256_packs_epi32(v[20], v[52]);
# 2328|                   t[21] = _mm256_packs_epi32(v[21], v[53]);
# 2329|->                 t[22] = _mm256_packs_epi32(v[22], v[54]);
# 2330|                   t[23] = _mm256_packs_epi32(v[23], v[55]);
# 2331|                   t[24] = _mm256_packs_epi32(v[24], v[56]);

Error: COMPILER_WARNING: [#def388]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2330:25: note[note]: called from here
# 2328|                   t[21] = _mm256_packs_epi32(v[21], v[53]);
# 2329|                   t[22] = _mm256_packs_epi32(v[22], v[54]);
# 2330|->                 t[23] = _mm256_packs_epi32(v[23], v[55]);
# 2331|                   t[24] = _mm256_packs_epi32(v[24], v[56]);
# 2332|                   t[25] = _mm256_packs_epi32(v[25], v[57]);

Error: COMPILER_WARNING: [#def389]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2331:25: note[note]: called from here
# 2329|                   t[22] = _mm256_packs_epi32(v[22], v[54]);
# 2330|                   t[23] = _mm256_packs_epi32(v[23], v[55]);
# 2331|->                 t[24] = _mm256_packs_epi32(v[24], v[56]);
# 2332|                   t[25] = _mm256_packs_epi32(v[25], v[57]);
# 2333|                   t[26] = _mm256_packs_epi32(v[26], v[58]);

Error: COMPILER_WARNING: [#def390]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2332:25: note[note]: called from here
# 2330|                   t[23] = _mm256_packs_epi32(v[23], v[55]);
# 2331|                   t[24] = _mm256_packs_epi32(v[24], v[56]);
# 2332|->                 t[25] = _mm256_packs_epi32(v[25], v[57]);
# 2333|                   t[26] = _mm256_packs_epi32(v[26], v[58]);
# 2334|                   t[27] = _mm256_packs_epi32(v[27], v[59]);

Error: COMPILER_WARNING: [#def391]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2333:25: note[note]: called from here
# 2331|                   t[24] = _mm256_packs_epi32(v[24], v[56]);
# 2332|                   t[25] = _mm256_packs_epi32(v[25], v[57]);
# 2333|->                 t[26] = _mm256_packs_epi32(v[26], v[58]);
# 2334|                   t[27] = _mm256_packs_epi32(v[27], v[59]);
# 2335|                   t[28] = _mm256_packs_epi32(v[28], v[60]);

Error: COMPILER_WARNING: [#def392]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2334:25: note[note]: called from here
# 2332|                   t[25] = _mm256_packs_epi32(v[25], v[57]);
# 2333|                   t[26] = _mm256_packs_epi32(v[26], v[58]);
# 2334|->                 t[27] = _mm256_packs_epi32(v[27], v[59]);
# 2335|                   t[28] = _mm256_packs_epi32(v[28], v[60]);
# 2336|                   t[29] = _mm256_packs_epi32(v[29], v[61]);

Error: COMPILER_WARNING: [#def393]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2335:25: note[note]: called from here
# 2333|                   t[26] = _mm256_packs_epi32(v[26], v[58]);
# 2334|                   t[27] = _mm256_packs_epi32(v[27], v[59]);
# 2335|->                 t[28] = _mm256_packs_epi32(v[28], v[60]);
# 2336|                   t[29] = _mm256_packs_epi32(v[29], v[61]);
# 2337|                   t[30] = _mm256_packs_epi32(v[30], v[62]);

Error: COMPILER_WARNING: [#def394]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2336:25: note[note]: called from here
# 2334|                   t[27] = _mm256_packs_epi32(v[27], v[59]);
# 2335|                   t[28] = _mm256_packs_epi32(v[28], v[60]);
# 2336|->                 t[29] = _mm256_packs_epi32(v[29], v[61]);
# 2337|                   t[30] = _mm256_packs_epi32(v[30], v[62]);
# 2338|                   t[31] = _mm256_packs_epi32(v[31], v[63]);

Error: COMPILER_WARNING: [#def395]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2337:25: note[note]: called from here
# 2335|                   t[28] = _mm256_packs_epi32(v[28], v[60]);
# 2336|                   t[29] = _mm256_packs_epi32(v[29], v[61]);
# 2337|->                 t[30] = _mm256_packs_epi32(v[30], v[62]);
# 2338|                   t[31] = _mm256_packs_epi32(v[31], v[63]);
# 2339|   

Error: COMPILER_WARNING: [#def396]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2338:25: note[note]: called from here
# 2336|                   t[29] = _mm256_packs_epi32(v[29], v[61]);
# 2337|                   t[30] = _mm256_packs_epi32(v[30], v[62]);
# 2338|->                 t[31] = _mm256_packs_epi32(v[31], v[63]);
# 2339|   
# 2340|                   v[ 0] = _mm256_unpacklo_epi16(t[ 0], t[ 1]);

Error: COMPILER_WARNING: [#def397]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2340:25: note[note]: called from here
# 2338|                   t[31] = _mm256_packs_epi32(v[31], v[63]);
# 2339|   
# 2340|->                 v[ 0] = _mm256_unpacklo_epi16(t[ 0], t[ 1]);
# 2341|                   v[ 1] = _mm256_unpacklo_epi16(t[ 2], t[ 3]);
# 2342|                   v[ 2] = _mm256_unpacklo_epi16(t[ 4], t[ 5]);

Error: COMPILER_WARNING: [#def398]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2341:25: note[note]: called from here
# 2339|   
# 2340|                   v[ 0] = _mm256_unpacklo_epi16(t[ 0], t[ 1]);
# 2341|->                 v[ 1] = _mm256_unpacklo_epi16(t[ 2], t[ 3]);
# 2342|                   v[ 2] = _mm256_unpacklo_epi16(t[ 4], t[ 5]);
# 2343|                   v[ 3] = _mm256_unpacklo_epi16(t[ 6], t[ 7]);

Error: COMPILER_WARNING: [#def399]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2342:25: note[note]: called from here
# 2340|                   v[ 0] = _mm256_unpacklo_epi16(t[ 0], t[ 1]);
# 2341|                   v[ 1] = _mm256_unpacklo_epi16(t[ 2], t[ 3]);
# 2342|->                 v[ 2] = _mm256_unpacklo_epi16(t[ 4], t[ 5]);
# 2343|                   v[ 3] = _mm256_unpacklo_epi16(t[ 6], t[ 7]);
# 2344|                   v[ 4] = _mm256_unpacklo_epi16(t[ 8], t[ 9]);

Error: COMPILER_WARNING: [#def400]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2343:25: note[note]: called from here
# 2341|                   v[ 1] = _mm256_unpacklo_epi16(t[ 2], t[ 3]);
# 2342|                   v[ 2] = _mm256_unpacklo_epi16(t[ 4], t[ 5]);
# 2343|->                 v[ 3] = _mm256_unpacklo_epi16(t[ 6], t[ 7]);
# 2344|                   v[ 4] = _mm256_unpacklo_epi16(t[ 8], t[ 9]);
# 2345|                   v[ 5] = _mm256_unpacklo_epi16(t[10], t[11]);

Error: COMPILER_WARNING: [#def401]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2344:25: note[note]: called from here
# 2342|                   v[ 2] = _mm256_unpacklo_epi16(t[ 4], t[ 5]);
# 2343|                   v[ 3] = _mm256_unpacklo_epi16(t[ 6], t[ 7]);
# 2344|->                 v[ 4] = _mm256_unpacklo_epi16(t[ 8], t[ 9]);
# 2345|                   v[ 5] = _mm256_unpacklo_epi16(t[10], t[11]);
# 2346|                   v[ 6] = _mm256_unpacklo_epi16(t[12], t[13]);

Error: COMPILER_WARNING: [#def402]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2345:25: note[note]: called from here
# 2343|                   v[ 3] = _mm256_unpacklo_epi16(t[ 6], t[ 7]);
# 2344|                   v[ 4] = _mm256_unpacklo_epi16(t[ 8], t[ 9]);
# 2345|->                 v[ 5] = _mm256_unpacklo_epi16(t[10], t[11]);
# 2346|                   v[ 6] = _mm256_unpacklo_epi16(t[12], t[13]);
# 2347|                   v[ 7] = _mm256_unpacklo_epi16(t[14], t[15]);

Error: COMPILER_WARNING: [#def403]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2346:25: note[note]: called from here
# 2344|                   v[ 4] = _mm256_unpacklo_epi16(t[ 8], t[ 9]);
# 2345|                   v[ 5] = _mm256_unpacklo_epi16(t[10], t[11]);
# 2346|->                 v[ 6] = _mm256_unpacklo_epi16(t[12], t[13]);
# 2347|                   v[ 7] = _mm256_unpacklo_epi16(t[14], t[15]);
# 2348|                   v[ 8] = _mm256_unpacklo_epi16(t[16], t[17]);

Error: COMPILER_WARNING: [#def404]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2347:25: note[note]: called from here
# 2345|                   v[ 5] = _mm256_unpacklo_epi16(t[10], t[11]);
# 2346|                   v[ 6] = _mm256_unpacklo_epi16(t[12], t[13]);
# 2347|->                 v[ 7] = _mm256_unpacklo_epi16(t[14], t[15]);
# 2348|                   v[ 8] = _mm256_unpacklo_epi16(t[16], t[17]);
# 2349|                   v[ 9] = _mm256_unpacklo_epi16(t[18], t[19]);

Error: COMPILER_WARNING: [#def405]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2348:25: note[note]: called from here
# 2346|                   v[ 6] = _mm256_unpacklo_epi16(t[12], t[13]);
# 2347|                   v[ 7] = _mm256_unpacklo_epi16(t[14], t[15]);
# 2348|->                 v[ 8] = _mm256_unpacklo_epi16(t[16], t[17]);
# 2349|                   v[ 9] = _mm256_unpacklo_epi16(t[18], t[19]);
# 2350|                   v[10] = _mm256_unpacklo_epi16(t[20], t[21]);

Error: COMPILER_WARNING: [#def406]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2349:25: note[note]: called from here
# 2347|                   v[ 7] = _mm256_unpacklo_epi16(t[14], t[15]);
# 2348|                   v[ 8] = _mm256_unpacklo_epi16(t[16], t[17]);
# 2349|->                 v[ 9] = _mm256_unpacklo_epi16(t[18], t[19]);
# 2350|                   v[10] = _mm256_unpacklo_epi16(t[20], t[21]);
# 2351|                   v[11] = _mm256_unpacklo_epi16(t[22], t[23]);

Error: COMPILER_WARNING: [#def407]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2350:25: note[note]: called from here
# 2348|                   v[ 8] = _mm256_unpacklo_epi16(t[16], t[17]);
# 2349|                   v[ 9] = _mm256_unpacklo_epi16(t[18], t[19]);
# 2350|->                 v[10] = _mm256_unpacklo_epi16(t[20], t[21]);
# 2351|                   v[11] = _mm256_unpacklo_epi16(t[22], t[23]);
# 2352|                   v[12] = _mm256_unpacklo_epi16(t[24], t[25]);

Error: COMPILER_WARNING: [#def408]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2351:25: note[note]: called from here
# 2349|                   v[ 9] = _mm256_unpacklo_epi16(t[18], t[19]);
# 2350|                   v[10] = _mm256_unpacklo_epi16(t[20], t[21]);
# 2351|->                 v[11] = _mm256_unpacklo_epi16(t[22], t[23]);
# 2352|                   v[12] = _mm256_unpacklo_epi16(t[24], t[25]);
# 2353|                   v[13] = _mm256_unpacklo_epi16(t[26], t[27]);

Error: COMPILER_WARNING: [#def409]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2352:25: note[note]: called from here
# 2350|                   v[10] = _mm256_unpacklo_epi16(t[20], t[21]);
# 2351|                   v[11] = _mm256_unpacklo_epi16(t[22], t[23]);
# 2352|->                 v[12] = _mm256_unpacklo_epi16(t[24], t[25]);
# 2353|                   v[13] = _mm256_unpacklo_epi16(t[26], t[27]);
# 2354|                   v[14] = _mm256_unpacklo_epi16(t[28], t[29]);

Error: COMPILER_WARNING: [#def410]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2353:25: note[note]: called from here
# 2351|                   v[11] = _mm256_unpacklo_epi16(t[22], t[23]);
# 2352|                   v[12] = _mm256_unpacklo_epi16(t[24], t[25]);
# 2353|->                 v[13] = _mm256_unpacklo_epi16(t[26], t[27]);
# 2354|                   v[14] = _mm256_unpacklo_epi16(t[28], t[29]);
# 2355|                   v[15] = _mm256_unpacklo_epi16(t[30], t[31]);

Error: COMPILER_WARNING: [#def411]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2354:25: note[note]: called from here
# 2352|                   v[12] = _mm256_unpacklo_epi16(t[24], t[25]);
# 2353|                   v[13] = _mm256_unpacklo_epi16(t[26], t[27]);
# 2354|->                 v[14] = _mm256_unpacklo_epi16(t[28], t[29]);
# 2355|                   v[15] = _mm256_unpacklo_epi16(t[30], t[31]);
# 2356|                   v[16] = _mm256_unpackhi_epi16(t[ 0], t[ 1]);

Error: COMPILER_WARNING: [#def412]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2355:25: note[note]: called from here
# 2353|                   v[13] = _mm256_unpacklo_epi16(t[26], t[27]);
# 2354|                   v[14] = _mm256_unpacklo_epi16(t[28], t[29]);
# 2355|->                 v[15] = _mm256_unpacklo_epi16(t[30], t[31]);
# 2356|                   v[16] = _mm256_unpackhi_epi16(t[ 0], t[ 1]);
# 2357|                   v[17] = _mm256_unpackhi_epi16(t[ 2], t[ 3]);

Error: COMPILER_WARNING: [#def413]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2356:25: note[note]: called from here
# 2354|                   v[14] = _mm256_unpacklo_epi16(t[28], t[29]);
# 2355|                   v[15] = _mm256_unpacklo_epi16(t[30], t[31]);
# 2356|->                 v[16] = _mm256_unpackhi_epi16(t[ 0], t[ 1]);
# 2357|                   v[17] = _mm256_unpackhi_epi16(t[ 2], t[ 3]);
# 2358|                   v[18] = _mm256_unpackhi_epi16(t[ 4], t[ 5]);

Error: COMPILER_WARNING: [#def414]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2357:25: note[note]: called from here
# 2355|                   v[15] = _mm256_unpacklo_epi16(t[30], t[31]);
# 2356|                   v[16] = _mm256_unpackhi_epi16(t[ 0], t[ 1]);
# 2357|->                 v[17] = _mm256_unpackhi_epi16(t[ 2], t[ 3]);
# 2358|                   v[18] = _mm256_unpackhi_epi16(t[ 4], t[ 5]);
# 2359|                   v[19] = _mm256_unpackhi_epi16(t[ 6], t[ 7]);

Error: COMPILER_WARNING: [#def415]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2358:25: note[note]: called from here
# 2356|                   v[16] = _mm256_unpackhi_epi16(t[ 0], t[ 1]);
# 2357|                   v[17] = _mm256_unpackhi_epi16(t[ 2], t[ 3]);
# 2358|->                 v[18] = _mm256_unpackhi_epi16(t[ 4], t[ 5]);
# 2359|                   v[19] = _mm256_unpackhi_epi16(t[ 6], t[ 7]);
# 2360|                   v[20] = _mm256_unpackhi_epi16(t[ 8], t[ 9]);

Error: COMPILER_WARNING: [#def416]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2359:25: note[note]: called from here
# 2357|                   v[17] = _mm256_unpackhi_epi16(t[ 2], t[ 3]);
# 2358|                   v[18] = _mm256_unpackhi_epi16(t[ 4], t[ 5]);
# 2359|->                 v[19] = _mm256_unpackhi_epi16(t[ 6], t[ 7]);
# 2360|                   v[20] = _mm256_unpackhi_epi16(t[ 8], t[ 9]);
# 2361|                   v[21] = _mm256_unpackhi_epi16(t[10], t[11]);

Error: COMPILER_WARNING: [#def417]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2360:25: note[note]: called from here
# 2358|                   v[18] = _mm256_unpackhi_epi16(t[ 4], t[ 5]);
# 2359|                   v[19] = _mm256_unpackhi_epi16(t[ 6], t[ 7]);
# 2360|->                 v[20] = _mm256_unpackhi_epi16(t[ 8], t[ 9]);
# 2361|                   v[21] = _mm256_unpackhi_epi16(t[10], t[11]);
# 2362|                   v[22] = _mm256_unpackhi_epi16(t[12], t[13]);

Error: COMPILER_WARNING: [#def418]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2361:25: note[note]: called from here
# 2359|                   v[19] = _mm256_unpackhi_epi16(t[ 6], t[ 7]);
# 2360|                   v[20] = _mm256_unpackhi_epi16(t[ 8], t[ 9]);
# 2361|->                 v[21] = _mm256_unpackhi_epi16(t[10], t[11]);
# 2362|                   v[22] = _mm256_unpackhi_epi16(t[12], t[13]);
# 2363|                   v[23] = _mm256_unpackhi_epi16(t[14], t[15]);

Error: COMPILER_WARNING: [#def419]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2362:25: note[note]: called from here
# 2360|                   v[20] = _mm256_unpackhi_epi16(t[ 8], t[ 9]);
# 2361|                   v[21] = _mm256_unpackhi_epi16(t[10], t[11]);
# 2362|->                 v[22] = _mm256_unpackhi_epi16(t[12], t[13]);
# 2363|                   v[23] = _mm256_unpackhi_epi16(t[14], t[15]);
# 2364|                   v[24] = _mm256_unpackhi_epi16(t[16], t[17]);

Error: COMPILER_WARNING: [#def420]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2363:25: note[note]: called from here
# 2361|                   v[21] = _mm256_unpackhi_epi16(t[10], t[11]);
# 2362|                   v[22] = _mm256_unpackhi_epi16(t[12], t[13]);
# 2363|->                 v[23] = _mm256_unpackhi_epi16(t[14], t[15]);
# 2364|                   v[24] = _mm256_unpackhi_epi16(t[16], t[17]);
# 2365|                   v[25] = _mm256_unpackhi_epi16(t[18], t[19]);

Error: COMPILER_WARNING: [#def421]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2364:25: note[note]: called from here
# 2362|                   v[22] = _mm256_unpackhi_epi16(t[12], t[13]);
# 2363|                   v[23] = _mm256_unpackhi_epi16(t[14], t[15]);
# 2364|->                 v[24] = _mm256_unpackhi_epi16(t[16], t[17]);
# 2365|                   v[25] = _mm256_unpackhi_epi16(t[18], t[19]);
# 2366|                   v[26] = _mm256_unpackhi_epi16(t[20], t[21]);

Error: COMPILER_WARNING: [#def422]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2365:25: note[note]: called from here
# 2363|                   v[23] = _mm256_unpackhi_epi16(t[14], t[15]);
# 2364|                   v[24] = _mm256_unpackhi_epi16(t[16], t[17]);
# 2365|->                 v[25] = _mm256_unpackhi_epi16(t[18], t[19]);
# 2366|                   v[26] = _mm256_unpackhi_epi16(t[20], t[21]);
# 2367|                   v[27] = _mm256_unpackhi_epi16(t[22], t[23]);

Error: COMPILER_WARNING: [#def423]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2366:25: note[note]: called from here
# 2364|                   v[24] = _mm256_unpackhi_epi16(t[16], t[17]);
# 2365|                   v[25] = _mm256_unpackhi_epi16(t[18], t[19]);
# 2366|->                 v[26] = _mm256_unpackhi_epi16(t[20], t[21]);
# 2367|                   v[27] = _mm256_unpackhi_epi16(t[22], t[23]);
# 2368|                   v[28] = _mm256_unpackhi_epi16(t[24], t[25]);

Error: COMPILER_WARNING: [#def424]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2367:25: note[note]: called from here
# 2365|                   v[25] = _mm256_unpackhi_epi16(t[18], t[19]);
# 2366|                   v[26] = _mm256_unpackhi_epi16(t[20], t[21]);
# 2367|->                 v[27] = _mm256_unpackhi_epi16(t[22], t[23]);
# 2368|                   v[28] = _mm256_unpackhi_epi16(t[24], t[25]);
# 2369|                   v[29] = _mm256_unpackhi_epi16(t[26], t[27]);

Error: COMPILER_WARNING: [#def425]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2368:25: note[note]: called from here
# 2366|                   v[26] = _mm256_unpackhi_epi16(t[20], t[21]);
# 2367|                   v[27] = _mm256_unpackhi_epi16(t[22], t[23]);
# 2368|->                 v[28] = _mm256_unpackhi_epi16(t[24], t[25]);
# 2369|                   v[29] = _mm256_unpackhi_epi16(t[26], t[27]);
# 2370|                   v[30] = _mm256_unpackhi_epi16(t[28], t[29]);

Error: COMPILER_WARNING: [#def426]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2369:25: note[note]: called from here
# 2367|                   v[27] = _mm256_unpackhi_epi16(t[22], t[23]);
# 2368|                   v[28] = _mm256_unpackhi_epi16(t[24], t[25]);
# 2369|->                 v[29] = _mm256_unpackhi_epi16(t[26], t[27]);
# 2370|                   v[30] = _mm256_unpackhi_epi16(t[28], t[29]);
# 2371|                   v[31] = _mm256_unpackhi_epi16(t[30], t[31]);

Error: COMPILER_WARNING: [#def427]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2370:25: note[note]: called from here
# 2368|                   v[28] = _mm256_unpackhi_epi16(t[24], t[25]);
# 2369|                   v[29] = _mm256_unpackhi_epi16(t[26], t[27]);
# 2370|->                 v[30] = _mm256_unpackhi_epi16(t[28], t[29]);
# 2371|                   v[31] = _mm256_unpackhi_epi16(t[30], t[31]);
# 2372|   

Error: COMPILER_WARNING: [#def428]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2371:25: note[note]: called from here
# 2369|                   v[29] = _mm256_unpackhi_epi16(t[26], t[27]);
# 2370|                   v[30] = _mm256_unpackhi_epi16(t[28], t[29]);
# 2371|->                 v[31] = _mm256_unpackhi_epi16(t[30], t[31]);
# 2372|   
# 2373|                   t[ 0] = _mm256_unpacklo_epi32(v[ 0], v[ 1]);

Error: COMPILER_WARNING: [#def429]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2373:25: note[note]: called from here
# 2371|                   v[31] = _mm256_unpackhi_epi16(t[30], t[31]);
# 2372|   
# 2373|->                 t[ 0] = _mm256_unpacklo_epi32(v[ 0], v[ 1]);
# 2374|                   t[ 1] = _mm256_unpacklo_epi32(v[ 2], v[ 3]);
# 2375|                   t[ 2] = _mm256_unpacklo_epi32(v[ 4], v[ 5]);

Error: COMPILER_WARNING: [#def430]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2374:25: note[note]: called from here
# 2372|   
# 2373|                   t[ 0] = _mm256_unpacklo_epi32(v[ 0], v[ 1]);
# 2374|->                 t[ 1] = _mm256_unpacklo_epi32(v[ 2], v[ 3]);
# 2375|                   t[ 2] = _mm256_unpacklo_epi32(v[ 4], v[ 5]);
# 2376|                   t[ 3] = _mm256_unpacklo_epi32(v[ 6], v[ 7]);

Error: COMPILER_WARNING: [#def431]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2375:25: note[note]: called from here
# 2373|                   t[ 0] = _mm256_unpacklo_epi32(v[ 0], v[ 1]);
# 2374|                   t[ 1] = _mm256_unpacklo_epi32(v[ 2], v[ 3]);
# 2375|->                 t[ 2] = _mm256_unpacklo_epi32(v[ 4], v[ 5]);
# 2376|                   t[ 3] = _mm256_unpacklo_epi32(v[ 6], v[ 7]);
# 2377|                   t[ 4] = _mm256_unpacklo_epi32(v[ 8], v[ 9]);

Error: COMPILER_WARNING: [#def432]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2376:25: note[note]: called from here
# 2374|                   t[ 1] = _mm256_unpacklo_epi32(v[ 2], v[ 3]);
# 2375|                   t[ 2] = _mm256_unpacklo_epi32(v[ 4], v[ 5]);
# 2376|->                 t[ 3] = _mm256_unpacklo_epi32(v[ 6], v[ 7]);
# 2377|                   t[ 4] = _mm256_unpacklo_epi32(v[ 8], v[ 9]);
# 2378|                   t[ 5] = _mm256_unpacklo_epi32(v[10], v[11]);

Error: COMPILER_WARNING: [#def433]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2377:25: note[note]: called from here
# 2375|                   t[ 2] = _mm256_unpacklo_epi32(v[ 4], v[ 5]);
# 2376|                   t[ 3] = _mm256_unpacklo_epi32(v[ 6], v[ 7]);
# 2377|->                 t[ 4] = _mm256_unpacklo_epi32(v[ 8], v[ 9]);
# 2378|                   t[ 5] = _mm256_unpacklo_epi32(v[10], v[11]);
# 2379|                   t[ 6] = _mm256_unpacklo_epi32(v[12], v[13]);

Error: COMPILER_WARNING: [#def434]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2378:25: note[note]: called from here
# 2376|                   t[ 3] = _mm256_unpacklo_epi32(v[ 6], v[ 7]);
# 2377|                   t[ 4] = _mm256_unpacklo_epi32(v[ 8], v[ 9]);
# 2378|->                 t[ 5] = _mm256_unpacklo_epi32(v[10], v[11]);
# 2379|                   t[ 6] = _mm256_unpacklo_epi32(v[12], v[13]);
# 2380|                   t[ 7] = _mm256_unpacklo_epi32(v[14], v[15]);

Error: COMPILER_WARNING: [#def435]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2379:25: note[note]: called from here
# 2377|                   t[ 4] = _mm256_unpacklo_epi32(v[ 8], v[ 9]);
# 2378|                   t[ 5] = _mm256_unpacklo_epi32(v[10], v[11]);
# 2379|->                 t[ 6] = _mm256_unpacklo_epi32(v[12], v[13]);
# 2380|                   t[ 7] = _mm256_unpacklo_epi32(v[14], v[15]);
# 2381|                   t[ 8] = _mm256_unpacklo_epi32(v[16], v[17]);

Error: COMPILER_WARNING: [#def436]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2380:25: note[note]: called from here
# 2378|                   t[ 5] = _mm256_unpacklo_epi32(v[10], v[11]);
# 2379|                   t[ 6] = _mm256_unpacklo_epi32(v[12], v[13]);
# 2380|->                 t[ 7] = _mm256_unpacklo_epi32(v[14], v[15]);
# 2381|                   t[ 8] = _mm256_unpacklo_epi32(v[16], v[17]);
# 2382|                   t[ 9] = _mm256_unpacklo_epi32(v[18], v[19]);

Error: COMPILER_WARNING: [#def437]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2381:25: note[note]: called from here
# 2379|                   t[ 6] = _mm256_unpacklo_epi32(v[12], v[13]);
# 2380|                   t[ 7] = _mm256_unpacklo_epi32(v[14], v[15]);
# 2381|->                 t[ 8] = _mm256_unpacklo_epi32(v[16], v[17]);
# 2382|                   t[ 9] = _mm256_unpacklo_epi32(v[18], v[19]);
# 2383|                   t[10] = _mm256_unpacklo_epi32(v[20], v[21]);

Error: COMPILER_WARNING: [#def438]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2382:25: note[note]: called from here
# 2380|                   t[ 7] = _mm256_unpacklo_epi32(v[14], v[15]);
# 2381|                   t[ 8] = _mm256_unpacklo_epi32(v[16], v[17]);
# 2382|->                 t[ 9] = _mm256_unpacklo_epi32(v[18], v[19]);
# 2383|                   t[10] = _mm256_unpacklo_epi32(v[20], v[21]);
# 2384|                   t[11] = _mm256_unpacklo_epi32(v[22], v[23]);

Error: COMPILER_WARNING: [#def439]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2383:25: note[note]: called from here
# 2381|                   t[ 8] = _mm256_unpacklo_epi32(v[16], v[17]);
# 2382|                   t[ 9] = _mm256_unpacklo_epi32(v[18], v[19]);
# 2383|->                 t[10] = _mm256_unpacklo_epi32(v[20], v[21]);
# 2384|                   t[11] = _mm256_unpacklo_epi32(v[22], v[23]);
# 2385|                   t[12] = _mm256_unpacklo_epi32(v[24], v[25]);

Error: COMPILER_WARNING: [#def440]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2384:25: note[note]: called from here
# 2382|                   t[ 9] = _mm256_unpacklo_epi32(v[18], v[19]);
# 2383|                   t[10] = _mm256_unpacklo_epi32(v[20], v[21]);
# 2384|->                 t[11] = _mm256_unpacklo_epi32(v[22], v[23]);
# 2385|                   t[12] = _mm256_unpacklo_epi32(v[24], v[25]);
# 2386|                   t[13] = _mm256_unpacklo_epi32(v[26], v[27]);

Error: COMPILER_WARNING: [#def441]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2385:25: note[note]: called from here
# 2383|                   t[10] = _mm256_unpacklo_epi32(v[20], v[21]);
# 2384|                   t[11] = _mm256_unpacklo_epi32(v[22], v[23]);
# 2385|->                 t[12] = _mm256_unpacklo_epi32(v[24], v[25]);
# 2386|                   t[13] = _mm256_unpacklo_epi32(v[26], v[27]);
# 2387|                   t[14] = _mm256_unpacklo_epi32(v[28], v[29]);

Error: COMPILER_WARNING: [#def442]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2386:25: note[note]: called from here
# 2384|                   t[11] = _mm256_unpacklo_epi32(v[22], v[23]);
# 2385|                   t[12] = _mm256_unpacklo_epi32(v[24], v[25]);
# 2386|->                 t[13] = _mm256_unpacklo_epi32(v[26], v[27]);
# 2387|                   t[14] = _mm256_unpacklo_epi32(v[28], v[29]);
# 2388|                   t[15] = _mm256_unpacklo_epi32(v[30], v[31]);

Error: COMPILER_WARNING: [#def443]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2387:25: note[note]: called from here
# 2385|                   t[12] = _mm256_unpacklo_epi32(v[24], v[25]);
# 2386|                   t[13] = _mm256_unpacklo_epi32(v[26], v[27]);
# 2387|->                 t[14] = _mm256_unpacklo_epi32(v[28], v[29]);
# 2388|                   t[15] = _mm256_unpacklo_epi32(v[30], v[31]);
# 2389|                   t[16] = _mm256_unpackhi_epi32(v[ 0], v[ 1]);

Error: COMPILER_WARNING: [#def444]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2388:25: note[note]: called from here
# 2386|                   t[13] = _mm256_unpacklo_epi32(v[26], v[27]);
# 2387|                   t[14] = _mm256_unpacklo_epi32(v[28], v[29]);
# 2388|->                 t[15] = _mm256_unpacklo_epi32(v[30], v[31]);
# 2389|                   t[16] = _mm256_unpackhi_epi32(v[ 0], v[ 1]);
# 2390|                   t[17] = _mm256_unpackhi_epi32(v[ 2], v[ 3]);

Error: COMPILER_WARNING: [#def445]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2389:25: note[note]: called from here
# 2387|                   t[14] = _mm256_unpacklo_epi32(v[28], v[29]);
# 2388|                   t[15] = _mm256_unpacklo_epi32(v[30], v[31]);
# 2389|->                 t[16] = _mm256_unpackhi_epi32(v[ 0], v[ 1]);
# 2390|                   t[17] = _mm256_unpackhi_epi32(v[ 2], v[ 3]);
# 2391|                   t[18] = _mm256_unpackhi_epi32(v[ 4], v[ 5]);

Error: COMPILER_WARNING: [#def446]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2390:25: note[note]: called from here
# 2388|                   t[15] = _mm256_unpacklo_epi32(v[30], v[31]);
# 2389|                   t[16] = _mm256_unpackhi_epi32(v[ 0], v[ 1]);
# 2390|->                 t[17] = _mm256_unpackhi_epi32(v[ 2], v[ 3]);
# 2391|                   t[18] = _mm256_unpackhi_epi32(v[ 4], v[ 5]);
# 2392|                   t[19] = _mm256_unpackhi_epi32(v[ 6], v[ 7]);

Error: COMPILER_WARNING: [#def447]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2391:25: note[note]: called from here
# 2389|                   t[16] = _mm256_unpackhi_epi32(v[ 0], v[ 1]);
# 2390|                   t[17] = _mm256_unpackhi_epi32(v[ 2], v[ 3]);
# 2391|->                 t[18] = _mm256_unpackhi_epi32(v[ 4], v[ 5]);
# 2392|                   t[19] = _mm256_unpackhi_epi32(v[ 6], v[ 7]);
# 2393|                   t[20] = _mm256_unpackhi_epi32(v[ 8], v[ 9]);

Error: COMPILER_WARNING: [#def448]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2392:25: note[note]: called from here
# 2390|                   t[17] = _mm256_unpackhi_epi32(v[ 2], v[ 3]);
# 2391|                   t[18] = _mm256_unpackhi_epi32(v[ 4], v[ 5]);
# 2392|->                 t[19] = _mm256_unpackhi_epi32(v[ 6], v[ 7]);
# 2393|                   t[20] = _mm256_unpackhi_epi32(v[ 8], v[ 9]);
# 2394|                   t[21] = _mm256_unpackhi_epi32(v[10], v[11]);

Error: COMPILER_WARNING: [#def449]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2393:25: note[note]: called from here
# 2391|                   t[18] = _mm256_unpackhi_epi32(v[ 4], v[ 5]);
# 2392|                   t[19] = _mm256_unpackhi_epi32(v[ 6], v[ 7]);
# 2393|->                 t[20] = _mm256_unpackhi_epi32(v[ 8], v[ 9]);
# 2394|                   t[21] = _mm256_unpackhi_epi32(v[10], v[11]);
# 2395|                   t[22] = _mm256_unpackhi_epi32(v[12], v[13]);

Error: COMPILER_WARNING: [#def450]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2394:25: note[note]: called from here
# 2392|                   t[19] = _mm256_unpackhi_epi32(v[ 6], v[ 7]);
# 2393|                   t[20] = _mm256_unpackhi_epi32(v[ 8], v[ 9]);
# 2394|->                 t[21] = _mm256_unpackhi_epi32(v[10], v[11]);
# 2395|                   t[22] = _mm256_unpackhi_epi32(v[12], v[13]);
# 2396|                   t[23] = _mm256_unpackhi_epi32(v[14], v[15]);

Error: COMPILER_WARNING: [#def451]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2395:25: note[note]: called from here
# 2393|                   t[20] = _mm256_unpackhi_epi32(v[ 8], v[ 9]);
# 2394|                   t[21] = _mm256_unpackhi_epi32(v[10], v[11]);
# 2395|->                 t[22] = _mm256_unpackhi_epi32(v[12], v[13]);
# 2396|                   t[23] = _mm256_unpackhi_epi32(v[14], v[15]);
# 2397|                   t[24] = _mm256_unpackhi_epi32(v[16], v[17]);

Error: COMPILER_WARNING: [#def452]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2396:25: note[note]: called from here
# 2394|                   t[21] = _mm256_unpackhi_epi32(v[10], v[11]);
# 2395|                   t[22] = _mm256_unpackhi_epi32(v[12], v[13]);
# 2396|->                 t[23] = _mm256_unpackhi_epi32(v[14], v[15]);
# 2397|                   t[24] = _mm256_unpackhi_epi32(v[16], v[17]);
# 2398|                   t[25] = _mm256_unpackhi_epi32(v[18], v[19]);

Error: COMPILER_WARNING: [#def453]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2397:25: note[note]: called from here
# 2395|                   t[22] = _mm256_unpackhi_epi32(v[12], v[13]);
# 2396|                   t[23] = _mm256_unpackhi_epi32(v[14], v[15]);
# 2397|->                 t[24] = _mm256_unpackhi_epi32(v[16], v[17]);
# 2398|                   t[25] = _mm256_unpackhi_epi32(v[18], v[19]);
# 2399|                   t[26] = _mm256_unpackhi_epi32(v[20], v[21]);

Error: COMPILER_WARNING: [#def454]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2398:25: note[note]: called from here
# 2396|                   t[23] = _mm256_unpackhi_epi32(v[14], v[15]);
# 2397|                   t[24] = _mm256_unpackhi_epi32(v[16], v[17]);
# 2398|->                 t[25] = _mm256_unpackhi_epi32(v[18], v[19]);
# 2399|                   t[26] = _mm256_unpackhi_epi32(v[20], v[21]);
# 2400|                   t[27] = _mm256_unpackhi_epi32(v[22], v[23]);

Error: COMPILER_WARNING: [#def455]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2399:25: note[note]: called from here
# 2397|                   t[24] = _mm256_unpackhi_epi32(v[16], v[17]);
# 2398|                   t[25] = _mm256_unpackhi_epi32(v[18], v[19]);
# 2399|->                 t[26] = _mm256_unpackhi_epi32(v[20], v[21]);
# 2400|                   t[27] = _mm256_unpackhi_epi32(v[22], v[23]);
# 2401|                   t[28] = _mm256_unpackhi_epi32(v[24], v[25]);

Error: COMPILER_WARNING: [#def456]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2400:25: note[note]: called from here
# 2398|                   t[25] = _mm256_unpackhi_epi32(v[18], v[19]);
# 2399|                   t[26] = _mm256_unpackhi_epi32(v[20], v[21]);
# 2400|->                 t[27] = _mm256_unpackhi_epi32(v[22], v[23]);
# 2401|                   t[28] = _mm256_unpackhi_epi32(v[24], v[25]);
# 2402|                   t[29] = _mm256_unpackhi_epi32(v[26], v[27]);

Error: COMPILER_WARNING: [#def457]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2401:25: note[note]: called from here
# 2399|                   t[26] = _mm256_unpackhi_epi32(v[20], v[21]);
# 2400|                   t[27] = _mm256_unpackhi_epi32(v[22], v[23]);
# 2401|->                 t[28] = _mm256_unpackhi_epi32(v[24], v[25]);
# 2402|                   t[29] = _mm256_unpackhi_epi32(v[26], v[27]);
# 2403|                   t[30] = _mm256_unpackhi_epi32(v[28], v[29]);

Error: COMPILER_WARNING: [#def458]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2402:25: note[note]: called from here
# 2400|                   t[27] = _mm256_unpackhi_epi32(v[22], v[23]);
# 2401|                   t[28] = _mm256_unpackhi_epi32(v[24], v[25]);
# 2402|->                 t[29] = _mm256_unpackhi_epi32(v[26], v[27]);
# 2403|                   t[30] = _mm256_unpackhi_epi32(v[28], v[29]);
# 2404|                   t[31] = _mm256_unpackhi_epi32(v[30], v[31]);

Error: COMPILER_WARNING: [#def459]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2403:25: note[note]: called from here
# 2401|                   t[28] = _mm256_unpackhi_epi32(v[24], v[25]);
# 2402|                   t[29] = _mm256_unpackhi_epi32(v[26], v[27]);
# 2403|->                 t[30] = _mm256_unpackhi_epi32(v[28], v[29]);
# 2404|                   t[31] = _mm256_unpackhi_epi32(v[30], v[31]);
# 2405|   

Error: COMPILER_WARNING: [#def460]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2404:25: note[note]: called from here
# 2402|                   t[29] = _mm256_unpackhi_epi32(v[26], v[27]);
# 2403|                   t[30] = _mm256_unpackhi_epi32(v[28], v[29]);
# 2404|->                 t[31] = _mm256_unpackhi_epi32(v[30], v[31]);
# 2405|   
# 2406|                   v[ 0] = _mm256_unpacklo_epi64(t[ 0], t[ 1]);

Error: COMPILER_WARNING: [#def461]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2406:25: note[note]: called from here
# 2404|                   t[31] = _mm256_unpackhi_epi32(v[30], v[31]);
# 2405|   
# 2406|->                 v[ 0] = _mm256_unpacklo_epi64(t[ 0], t[ 1]);
# 2407|                   v[ 1] = _mm256_unpacklo_epi64(t[ 2], t[ 3]);
# 2408|                   v[ 2] = _mm256_unpacklo_epi64(t[ 4], t[ 5]);

Error: COMPILER_WARNING: [#def462]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2407:25: note[note]: called from here
# 2405|   
# 2406|                   v[ 0] = _mm256_unpacklo_epi64(t[ 0], t[ 1]);
# 2407|->                 v[ 1] = _mm256_unpacklo_epi64(t[ 2], t[ 3]);
# 2408|                   v[ 2] = _mm256_unpacklo_epi64(t[ 4], t[ 5]);
# 2409|                   v[ 3] = _mm256_unpacklo_epi64(t[ 6], t[ 7]);

Error: COMPILER_WARNING: [#def463]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2408:25: note[note]: called from here
# 2406|                   v[ 0] = _mm256_unpacklo_epi64(t[ 0], t[ 1]);
# 2407|                   v[ 1] = _mm256_unpacklo_epi64(t[ 2], t[ 3]);
# 2408|->                 v[ 2] = _mm256_unpacklo_epi64(t[ 4], t[ 5]);
# 2409|                   v[ 3] = _mm256_unpacklo_epi64(t[ 6], t[ 7]);
# 2410|                   v[ 4] = _mm256_unpacklo_epi64(t[ 8], t[ 9]);

Error: COMPILER_WARNING: [#def464]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2409:25: note[note]: called from here
# 2407|                   v[ 1] = _mm256_unpacklo_epi64(t[ 2], t[ 3]);
# 2408|                   v[ 2] = _mm256_unpacklo_epi64(t[ 4], t[ 5]);
# 2409|->                 v[ 3] = _mm256_unpacklo_epi64(t[ 6], t[ 7]);
# 2410|                   v[ 4] = _mm256_unpacklo_epi64(t[ 8], t[ 9]);
# 2411|                   v[ 5] = _mm256_unpacklo_epi64(t[10], t[11]);

Error: COMPILER_WARNING: [#def465]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2410:25: note[note]: called from here
# 2408|                   v[ 2] = _mm256_unpacklo_epi64(t[ 4], t[ 5]);
# 2409|                   v[ 3] = _mm256_unpacklo_epi64(t[ 6], t[ 7]);
# 2410|->                 v[ 4] = _mm256_unpacklo_epi64(t[ 8], t[ 9]);
# 2411|                   v[ 5] = _mm256_unpacklo_epi64(t[10], t[11]);
# 2412|                   v[ 6] = _mm256_unpacklo_epi64(t[12], t[13]);

Error: COMPILER_WARNING: [#def466]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2411:25: note[note]: called from here
# 2409|                   v[ 3] = _mm256_unpacklo_epi64(t[ 6], t[ 7]);
# 2410|                   v[ 4] = _mm256_unpacklo_epi64(t[ 8], t[ 9]);
# 2411|->                 v[ 5] = _mm256_unpacklo_epi64(t[10], t[11]);
# 2412|                   v[ 6] = _mm256_unpacklo_epi64(t[12], t[13]);
# 2413|                   v[ 7] = _mm256_unpacklo_epi64(t[14], t[15]);

Error: COMPILER_WARNING: [#def467]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2412:25: note[note]: called from here
# 2410|                   v[ 4] = _mm256_unpacklo_epi64(t[ 8], t[ 9]);
# 2411|                   v[ 5] = _mm256_unpacklo_epi64(t[10], t[11]);
# 2412|->                 v[ 6] = _mm256_unpacklo_epi64(t[12], t[13]);
# 2413|                   v[ 7] = _mm256_unpacklo_epi64(t[14], t[15]);
# 2414|                   v[ 8] = _mm256_unpacklo_epi64(t[16], t[17]);

Error: COMPILER_WARNING: [#def468]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2413:25: note[note]: called from here
# 2411|                   v[ 5] = _mm256_unpacklo_epi64(t[10], t[11]);
# 2412|                   v[ 6] = _mm256_unpacklo_epi64(t[12], t[13]);
# 2413|->                 v[ 7] = _mm256_unpacklo_epi64(t[14], t[15]);
# 2414|                   v[ 8] = _mm256_unpacklo_epi64(t[16], t[17]);
# 2415|                   v[ 9] = _mm256_unpacklo_epi64(t[18], t[19]);

Error: COMPILER_WARNING: [#def469]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2414:25: note[note]: called from here
# 2412|                   v[ 6] = _mm256_unpacklo_epi64(t[12], t[13]);
# 2413|                   v[ 7] = _mm256_unpacklo_epi64(t[14], t[15]);
# 2414|->                 v[ 8] = _mm256_unpacklo_epi64(t[16], t[17]);
# 2415|                   v[ 9] = _mm256_unpacklo_epi64(t[18], t[19]);
# 2416|                   v[10] = _mm256_unpacklo_epi64(t[20], t[21]);

Error: COMPILER_WARNING: [#def470]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2415:25: note[note]: called from here
# 2413|                   v[ 7] = _mm256_unpacklo_epi64(t[14], t[15]);
# 2414|                   v[ 8] = _mm256_unpacklo_epi64(t[16], t[17]);
# 2415|->                 v[ 9] = _mm256_unpacklo_epi64(t[18], t[19]);
# 2416|                   v[10] = _mm256_unpacklo_epi64(t[20], t[21]);
# 2417|                   v[11] = _mm256_unpacklo_epi64(t[22], t[23]);

Error: COMPILER_WARNING: [#def471]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2416:25: note[note]: called from here
# 2414|                   v[ 8] = _mm256_unpacklo_epi64(t[16], t[17]);
# 2415|                   v[ 9] = _mm256_unpacklo_epi64(t[18], t[19]);
# 2416|->                 v[10] = _mm256_unpacklo_epi64(t[20], t[21]);
# 2417|                   v[11] = _mm256_unpacklo_epi64(t[22], t[23]);
# 2418|                   v[12] = _mm256_unpacklo_epi64(t[24], t[25]);

Error: COMPILER_WARNING: [#def472]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2417:25: note[note]: called from here
# 2415|                   v[ 9] = _mm256_unpacklo_epi64(t[18], t[19]);
# 2416|                   v[10] = _mm256_unpacklo_epi64(t[20], t[21]);
# 2417|->                 v[11] = _mm256_unpacklo_epi64(t[22], t[23]);
# 2418|                   v[12] = _mm256_unpacklo_epi64(t[24], t[25]);
# 2419|                   v[13] = _mm256_unpacklo_epi64(t[26], t[27]);

Error: COMPILER_WARNING: [#def473]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2418:25: note[note]: called from here
# 2416|                   v[10] = _mm256_unpacklo_epi64(t[20], t[21]);
# 2417|                   v[11] = _mm256_unpacklo_epi64(t[22], t[23]);
# 2418|->                 v[12] = _mm256_unpacklo_epi64(t[24], t[25]);
# 2419|                   v[13] = _mm256_unpacklo_epi64(t[26], t[27]);
# 2420|                   v[14] = _mm256_unpacklo_epi64(t[28], t[29]);

Error: COMPILER_WARNING: [#def474]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2419:25: note[note]: called from here
# 2417|                   v[11] = _mm256_unpacklo_epi64(t[22], t[23]);
# 2418|                   v[12] = _mm256_unpacklo_epi64(t[24], t[25]);
# 2419|->                 v[13] = _mm256_unpacklo_epi64(t[26], t[27]);
# 2420|                   v[14] = _mm256_unpacklo_epi64(t[28], t[29]);
# 2421|                   v[15] = _mm256_unpacklo_epi64(t[30], t[31]);

Error: COMPILER_WARNING: [#def475]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2420:25: note[note]: called from here
# 2418|                   v[12] = _mm256_unpacklo_epi64(t[24], t[25]);
# 2419|                   v[13] = _mm256_unpacklo_epi64(t[26], t[27]);
# 2420|->                 v[14] = _mm256_unpacklo_epi64(t[28], t[29]);
# 2421|                   v[15] = _mm256_unpacklo_epi64(t[30], t[31]);
# 2422|                   v[16] = _mm256_unpackhi_epi64(t[ 0], t[ 1]);

Error: COMPILER_WARNING: [#def476]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2421:25: note[note]: called from here
# 2419|                   v[13] = _mm256_unpacklo_epi64(t[26], t[27]);
# 2420|                   v[14] = _mm256_unpacklo_epi64(t[28], t[29]);
# 2421|->                 v[15] = _mm256_unpacklo_epi64(t[30], t[31]);
# 2422|                   v[16] = _mm256_unpackhi_epi64(t[ 0], t[ 1]);
# 2423|                   v[17] = _mm256_unpackhi_epi64(t[ 2], t[ 3]);

Error: COMPILER_WARNING: [#def477]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2422:25: note[note]: called from here
# 2420|                   v[14] = _mm256_unpacklo_epi64(t[28], t[29]);
# 2421|                   v[15] = _mm256_unpacklo_epi64(t[30], t[31]);
# 2422|->                 v[16] = _mm256_unpackhi_epi64(t[ 0], t[ 1]);
# 2423|                   v[17] = _mm256_unpackhi_epi64(t[ 2], t[ 3]);
# 2424|                   v[18] = _mm256_unpackhi_epi64(t[ 4], t[ 5]);

Error: COMPILER_WARNING: [#def478]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2423:25: note[note]: called from here
# 2421|                   v[15] = _mm256_unpacklo_epi64(t[30], t[31]);
# 2422|                   v[16] = _mm256_unpackhi_epi64(t[ 0], t[ 1]);
# 2423|->                 v[17] = _mm256_unpackhi_epi64(t[ 2], t[ 3]);
# 2424|                   v[18] = _mm256_unpackhi_epi64(t[ 4], t[ 5]);
# 2425|                   v[19] = _mm256_unpackhi_epi64(t[ 6], t[ 7]);

Error: COMPILER_WARNING: [#def479]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2424:25: note[note]: called from here
# 2422|                   v[16] = _mm256_unpackhi_epi64(t[ 0], t[ 1]);
# 2423|                   v[17] = _mm256_unpackhi_epi64(t[ 2], t[ 3]);
# 2424|->                 v[18] = _mm256_unpackhi_epi64(t[ 4], t[ 5]);
# 2425|                   v[19] = _mm256_unpackhi_epi64(t[ 6], t[ 7]);
# 2426|                   v[20] = _mm256_unpackhi_epi64(t[ 8], t[ 9]);

Error: COMPILER_WARNING: [#def480]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2425:25: note[note]: called from here
# 2423|                   v[17] = _mm256_unpackhi_epi64(t[ 2], t[ 3]);
# 2424|                   v[18] = _mm256_unpackhi_epi64(t[ 4], t[ 5]);
# 2425|->                 v[19] = _mm256_unpackhi_epi64(t[ 6], t[ 7]);
# 2426|                   v[20] = _mm256_unpackhi_epi64(t[ 8], t[ 9]);
# 2427|                   v[21] = _mm256_unpackhi_epi64(t[10], t[11]);

Error: COMPILER_WARNING: [#def481]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2426:25: note[note]: called from here
# 2424|                   v[18] = _mm256_unpackhi_epi64(t[ 4], t[ 5]);
# 2425|                   v[19] = _mm256_unpackhi_epi64(t[ 6], t[ 7]);
# 2426|->                 v[20] = _mm256_unpackhi_epi64(t[ 8], t[ 9]);
# 2427|                   v[21] = _mm256_unpackhi_epi64(t[10], t[11]);
# 2428|                   v[22] = _mm256_unpackhi_epi64(t[12], t[13]);

Error: COMPILER_WARNING: [#def482]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2427:25: note[note]: called from here
# 2425|                   v[19] = _mm256_unpackhi_epi64(t[ 6], t[ 7]);
# 2426|                   v[20] = _mm256_unpackhi_epi64(t[ 8], t[ 9]);
# 2427|->                 v[21] = _mm256_unpackhi_epi64(t[10], t[11]);
# 2428|                   v[22] = _mm256_unpackhi_epi64(t[12], t[13]);
# 2429|                   v[23] = _mm256_unpackhi_epi64(t[14], t[15]);

Error: COMPILER_WARNING: [#def483]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2428:25: note[note]: called from here
# 2426|                   v[20] = _mm256_unpackhi_epi64(t[ 8], t[ 9]);
# 2427|                   v[21] = _mm256_unpackhi_epi64(t[10], t[11]);
# 2428|->                 v[22] = _mm256_unpackhi_epi64(t[12], t[13]);
# 2429|                   v[23] = _mm256_unpackhi_epi64(t[14], t[15]);
# 2430|                   v[24] = _mm256_unpackhi_epi64(t[16], t[17]);

Error: COMPILER_WARNING: [#def484]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2429:25: note[note]: called from here
# 2427|                   v[21] = _mm256_unpackhi_epi64(t[10], t[11]);
# 2428|                   v[22] = _mm256_unpackhi_epi64(t[12], t[13]);
# 2429|->                 v[23] = _mm256_unpackhi_epi64(t[14], t[15]);
# 2430|                   v[24] = _mm256_unpackhi_epi64(t[16], t[17]);
# 2431|                   v[25] = _mm256_unpackhi_epi64(t[18], t[19]);

Error: COMPILER_WARNING: [#def485]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2430:25: note[note]: called from here
# 2428|                   v[22] = _mm256_unpackhi_epi64(t[12], t[13]);
# 2429|                   v[23] = _mm256_unpackhi_epi64(t[14], t[15]);
# 2430|->                 v[24] = _mm256_unpackhi_epi64(t[16], t[17]);
# 2431|                   v[25] = _mm256_unpackhi_epi64(t[18], t[19]);
# 2432|                   v[26] = _mm256_unpackhi_epi64(t[20], t[21]);

Error: COMPILER_WARNING: [#def486]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2431:25: note[note]: called from here
# 2429|                   v[23] = _mm256_unpackhi_epi64(t[14], t[15]);
# 2430|                   v[24] = _mm256_unpackhi_epi64(t[16], t[17]);
# 2431|->                 v[25] = _mm256_unpackhi_epi64(t[18], t[19]);
# 2432|                   v[26] = _mm256_unpackhi_epi64(t[20], t[21]);
# 2433|                   v[27] = _mm256_unpackhi_epi64(t[22], t[23]);

Error: COMPILER_WARNING: [#def487]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2432:25: note[note]: called from here
# 2430|                   v[24] = _mm256_unpackhi_epi64(t[16], t[17]);
# 2431|                   v[25] = _mm256_unpackhi_epi64(t[18], t[19]);
# 2432|->                 v[26] = _mm256_unpackhi_epi64(t[20], t[21]);
# 2433|                   v[27] = _mm256_unpackhi_epi64(t[22], t[23]);
# 2434|                   v[28] = _mm256_unpackhi_epi64(t[24], t[25]);

Error: COMPILER_WARNING: [#def488]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2433:25: note[note]: called from here
# 2431|                   v[25] = _mm256_unpackhi_epi64(t[18], t[19]);
# 2432|                   v[26] = _mm256_unpackhi_epi64(t[20], t[21]);
# 2433|->                 v[27] = _mm256_unpackhi_epi64(t[22], t[23]);
# 2434|                   v[28] = _mm256_unpackhi_epi64(t[24], t[25]);
# 2435|                   v[29] = _mm256_unpackhi_epi64(t[26], t[27]);

Error: COMPILER_WARNING: [#def489]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2434:25: note[note]: called from here
# 2432|                   v[26] = _mm256_unpackhi_epi64(t[20], t[21]);
# 2433|                   v[27] = _mm256_unpackhi_epi64(t[22], t[23]);
# 2434|->                 v[28] = _mm256_unpackhi_epi64(t[24], t[25]);
# 2435|                   v[29] = _mm256_unpackhi_epi64(t[26], t[27]);
# 2436|                   v[30] = _mm256_unpackhi_epi64(t[28], t[29]);

Error: COMPILER_WARNING: [#def490]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2435:25: note[note]: called from here
# 2433|                   v[27] = _mm256_unpackhi_epi64(t[22], t[23]);
# 2434|                   v[28] = _mm256_unpackhi_epi64(t[24], t[25]);
# 2435|->                 v[29] = _mm256_unpackhi_epi64(t[26], t[27]);
# 2436|                   v[30] = _mm256_unpackhi_epi64(t[28], t[29]);
# 2437|                   v[31] = _mm256_unpackhi_epi64(t[30], t[31]);

Error: COMPILER_WARNING: [#def491]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2436:25: note[note]: called from here
# 2434|                   v[28] = _mm256_unpackhi_epi64(t[24], t[25]);
# 2435|                   v[29] = _mm256_unpackhi_epi64(t[26], t[27]);
# 2436|->                 v[30] = _mm256_unpackhi_epi64(t[28], t[29]);
# 2437|                   v[31] = _mm256_unpackhi_epi64(t[30], t[31]);
# 2438|   

Error: COMPILER_WARNING: [#def492]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2437:25: note[note]: called from here
# 2435|                   v[29] = _mm256_unpackhi_epi64(t[26], t[27]);
# 2436|                   v[30] = _mm256_unpackhi_epi64(t[28], t[29]);
# 2437|->                 v[31] = _mm256_unpackhi_epi64(t[30], t[31]);
# 2438|   
# 2439|                   t[ 0] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x20);

Error: COMPILER_WARNING: [#def493]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2439:25: note[note]: called from here
# 2437|                   v[31] = _mm256_unpackhi_epi64(t[30], t[31]);
# 2438|   
# 2439|->                 t[ 0] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x20);
# 2440|                   t[ 1] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x20);
# 2441|                   t[ 2] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x20);

Error: COMPILER_WARNING: [#def494]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2440:25: note[note]: called from here
# 2438|   
# 2439|                   t[ 0] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x20);
# 2440|->                 t[ 1] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x20);
# 2441|                   t[ 2] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x20);
# 2442|                   t[ 3] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x20);

Error: COMPILER_WARNING: [#def495]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2441:25: note[note]: called from here
# 2439|                   t[ 0] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x20);
# 2440|                   t[ 1] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x20);
# 2441|->                 t[ 2] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x20);
# 2442|                   t[ 3] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x20);
# 2443|                   t[ 4] = _mm256_permute2f128_si256(v[16], v[17], 0x20);

Error: COMPILER_WARNING: [#def496]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2442:25: note[note]: called from here
# 2440|                   t[ 1] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x20);
# 2441|                   t[ 2] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x20);
# 2442|->                 t[ 3] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x20);
# 2443|                   t[ 4] = _mm256_permute2f128_si256(v[16], v[17], 0x20);
# 2444|                   t[ 5] = _mm256_permute2f128_si256(v[18], v[19], 0x20);

Error: COMPILER_WARNING: [#def497]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2443:25: note[note]: called from here
# 2441|                   t[ 2] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x20);
# 2442|                   t[ 3] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x20);
# 2443|->                 t[ 4] = _mm256_permute2f128_si256(v[16], v[17], 0x20);
# 2444|                   t[ 5] = _mm256_permute2f128_si256(v[18], v[19], 0x20);
# 2445|                   t[ 6] = _mm256_permute2f128_si256(v[20], v[21], 0x20);

Error: COMPILER_WARNING: [#def498]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2444:25: note[note]: called from here
# 2442|                   t[ 3] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x20);
# 2443|                   t[ 4] = _mm256_permute2f128_si256(v[16], v[17], 0x20);
# 2444|->                 t[ 5] = _mm256_permute2f128_si256(v[18], v[19], 0x20);
# 2445|                   t[ 6] = _mm256_permute2f128_si256(v[20], v[21], 0x20);
# 2446|                   t[ 7] = _mm256_permute2f128_si256(v[22], v[23], 0x20);

Error: COMPILER_WARNING: [#def499]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2445:25: note[note]: called from here
# 2443|                   t[ 4] = _mm256_permute2f128_si256(v[16], v[17], 0x20);
# 2444|                   t[ 5] = _mm256_permute2f128_si256(v[18], v[19], 0x20);
# 2445|->                 t[ 6] = _mm256_permute2f128_si256(v[20], v[21], 0x20);
# 2446|                   t[ 7] = _mm256_permute2f128_si256(v[22], v[23], 0x20);
# 2447|                   t[ 8] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x20);

Error: COMPILER_WARNING: [#def500]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2446:25: note[note]: called from here
# 2444|                   t[ 5] = _mm256_permute2f128_si256(v[18], v[19], 0x20);
# 2445|                   t[ 6] = _mm256_permute2f128_si256(v[20], v[21], 0x20);
# 2446|->                 t[ 7] = _mm256_permute2f128_si256(v[22], v[23], 0x20);
# 2447|                   t[ 8] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x20);
# 2448|                   t[ 9] = _mm256_permute2f128_si256(v[10], v[11], 0x20);

Error: COMPILER_WARNING: [#def501]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2447:25: note[note]: called from here
# 2445|                   t[ 6] = _mm256_permute2f128_si256(v[20], v[21], 0x20);
# 2446|                   t[ 7] = _mm256_permute2f128_si256(v[22], v[23], 0x20);
# 2447|->                 t[ 8] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x20);
# 2448|                   t[ 9] = _mm256_permute2f128_si256(v[10], v[11], 0x20);
# 2449|                   t[10] = _mm256_permute2f128_si256(v[12], v[13], 0x20);

Error: COMPILER_WARNING: [#def502]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2448:25: note[note]: called from here
# 2446|                   t[ 7] = _mm256_permute2f128_si256(v[22], v[23], 0x20);
# 2447|                   t[ 8] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x20);
# 2448|->                 t[ 9] = _mm256_permute2f128_si256(v[10], v[11], 0x20);
# 2449|                   t[10] = _mm256_permute2f128_si256(v[12], v[13], 0x20);
# 2450|                   t[11] = _mm256_permute2f128_si256(v[14], v[15], 0x20);

Error: COMPILER_WARNING: [#def503]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2449:25: note[note]: called from here
# 2447|                   t[ 8] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x20);
# 2448|                   t[ 9] = _mm256_permute2f128_si256(v[10], v[11], 0x20);
# 2449|->                 t[10] = _mm256_permute2f128_si256(v[12], v[13], 0x20);
# 2450|                   t[11] = _mm256_permute2f128_si256(v[14], v[15], 0x20);
# 2451|                   t[12] = _mm256_permute2f128_si256(v[24], v[25], 0x20);

Error: COMPILER_WARNING: [#def504]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2450:25: note[note]: called from here
# 2448|                   t[ 9] = _mm256_permute2f128_si256(v[10], v[11], 0x20);
# 2449|                   t[10] = _mm256_permute2f128_si256(v[12], v[13], 0x20);
# 2450|->                 t[11] = _mm256_permute2f128_si256(v[14], v[15], 0x20);
# 2451|                   t[12] = _mm256_permute2f128_si256(v[24], v[25], 0x20);
# 2452|                   t[13] = _mm256_permute2f128_si256(v[26], v[27], 0x20);

Error: COMPILER_WARNING: [#def505]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2451:25: note[note]: called from here
# 2449|                   t[10] = _mm256_permute2f128_si256(v[12], v[13], 0x20);
# 2450|                   t[11] = _mm256_permute2f128_si256(v[14], v[15], 0x20);
# 2451|->                 t[12] = _mm256_permute2f128_si256(v[24], v[25], 0x20);
# 2452|                   t[13] = _mm256_permute2f128_si256(v[26], v[27], 0x20);
# 2453|                   t[14] = _mm256_permute2f128_si256(v[28], v[29], 0x20);

Error: COMPILER_WARNING: [#def506]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2452:25: note[note]: called from here
# 2450|                   t[11] = _mm256_permute2f128_si256(v[14], v[15], 0x20);
# 2451|                   t[12] = _mm256_permute2f128_si256(v[24], v[25], 0x20);
# 2452|->                 t[13] = _mm256_permute2f128_si256(v[26], v[27], 0x20);
# 2453|                   t[14] = _mm256_permute2f128_si256(v[28], v[29], 0x20);
# 2454|                   t[15] = _mm256_permute2f128_si256(v[30], v[31], 0x20);

Error: COMPILER_WARNING: [#def507]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2453:25: note[note]: called from here
# 2451|                   t[12] = _mm256_permute2f128_si256(v[24], v[25], 0x20);
# 2452|                   t[13] = _mm256_permute2f128_si256(v[26], v[27], 0x20);
# 2453|->                 t[14] = _mm256_permute2f128_si256(v[28], v[29], 0x20);
# 2454|                   t[15] = _mm256_permute2f128_si256(v[30], v[31], 0x20);
# 2455|                   t[16] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x31);

Error: COMPILER_WARNING: [#def508]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2454:25: note[note]: called from here
# 2452|                   t[13] = _mm256_permute2f128_si256(v[26], v[27], 0x20);
# 2453|                   t[14] = _mm256_permute2f128_si256(v[28], v[29], 0x20);
# 2454|->                 t[15] = _mm256_permute2f128_si256(v[30], v[31], 0x20);
# 2455|                   t[16] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x31);
# 2456|                   t[17] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x31);

Error: COMPILER_WARNING: [#def509]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2455:25: note[note]: called from here
# 2453|                   t[14] = _mm256_permute2f128_si256(v[28], v[29], 0x20);
# 2454|                   t[15] = _mm256_permute2f128_si256(v[30], v[31], 0x20);
# 2455|->                 t[16] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x31);
# 2456|                   t[17] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x31);
# 2457|                   t[18] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x31);

Error: COMPILER_WARNING: [#def510]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2456:25: note[note]: called from here
# 2454|                   t[15] = _mm256_permute2f128_si256(v[30], v[31], 0x20);
# 2455|                   t[16] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x31);
# 2456|->                 t[17] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x31);
# 2457|                   t[18] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x31);
# 2458|                   t[19] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x31);

Error: COMPILER_WARNING: [#def511]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2457:25: note[note]: called from here
# 2455|                   t[16] = _mm256_permute2f128_si256(v[ 0], v[ 1], 0x31);
# 2456|                   t[17] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x31);
# 2457|->                 t[18] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x31);
# 2458|                   t[19] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x31);
# 2459|                   t[20] = _mm256_permute2f128_si256(v[16], v[17], 0x31);

Error: COMPILER_WARNING: [#def512]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2458:25: note[note]: called from here
# 2456|                   t[17] = _mm256_permute2f128_si256(v[ 2], v[ 3], 0x31);
# 2457|                   t[18] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x31);
# 2458|->                 t[19] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x31);
# 2459|                   t[20] = _mm256_permute2f128_si256(v[16], v[17], 0x31);
# 2460|                   t[21] = _mm256_permute2f128_si256(v[18], v[19], 0x31);

Error: COMPILER_WARNING: [#def513]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2459:25: note[note]: called from here
# 2457|                   t[18] = _mm256_permute2f128_si256(v[ 4], v[ 5], 0x31);
# 2458|                   t[19] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x31);
# 2459|->                 t[20] = _mm256_permute2f128_si256(v[16], v[17], 0x31);
# 2460|                   t[21] = _mm256_permute2f128_si256(v[18], v[19], 0x31);
# 2461|                   t[22] = _mm256_permute2f128_si256(v[20], v[21], 0x31);

Error: COMPILER_WARNING: [#def514]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2460:25: note[note]: called from here
# 2458|                   t[19] = _mm256_permute2f128_si256(v[ 6], v[ 7], 0x31);
# 2459|                   t[20] = _mm256_permute2f128_si256(v[16], v[17], 0x31);
# 2460|->                 t[21] = _mm256_permute2f128_si256(v[18], v[19], 0x31);
# 2461|                   t[22] = _mm256_permute2f128_si256(v[20], v[21], 0x31);
# 2462|                   t[23] = _mm256_permute2f128_si256(v[22], v[23], 0x31);

Error: COMPILER_WARNING: [#def515]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2461:25: note[note]: called from here
# 2459|                   t[20] = _mm256_permute2f128_si256(v[16], v[17], 0x31);
# 2460|                   t[21] = _mm256_permute2f128_si256(v[18], v[19], 0x31);
# 2461|->                 t[22] = _mm256_permute2f128_si256(v[20], v[21], 0x31);
# 2462|                   t[23] = _mm256_permute2f128_si256(v[22], v[23], 0x31);
# 2463|                   t[24] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x31);

Error: COMPILER_WARNING: [#def516]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2462:25: note[note]: called from here
# 2460|                   t[21] = _mm256_permute2f128_si256(v[18], v[19], 0x31);
# 2461|                   t[22] = _mm256_permute2f128_si256(v[20], v[21], 0x31);
# 2462|->                 t[23] = _mm256_permute2f128_si256(v[22], v[23], 0x31);
# 2463|                   t[24] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x31);
# 2464|                   t[25] = _mm256_permute2f128_si256(v[10], v[11], 0x31);

Error: COMPILER_WARNING: [#def517]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2463:25: note[note]: called from here
# 2461|                   t[22] = _mm256_permute2f128_si256(v[20], v[21], 0x31);
# 2462|                   t[23] = _mm256_permute2f128_si256(v[22], v[23], 0x31);
# 2463|->                 t[24] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x31);
# 2464|                   t[25] = _mm256_permute2f128_si256(v[10], v[11], 0x31);
# 2465|                   t[26] = _mm256_permute2f128_si256(v[12], v[13], 0x31);

Error: COMPILER_WARNING: [#def518]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2464:25: note[note]: called from here
# 2462|                   t[23] = _mm256_permute2f128_si256(v[22], v[23], 0x31);
# 2463|                   t[24] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x31);
# 2464|->                 t[25] = _mm256_permute2f128_si256(v[10], v[11], 0x31);
# 2465|                   t[26] = _mm256_permute2f128_si256(v[12], v[13], 0x31);
# 2466|                   t[27] = _mm256_permute2f128_si256(v[14], v[15], 0x31);

Error: COMPILER_WARNING: [#def519]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2465:25: note[note]: called from here
# 2463|                   t[24] = _mm256_permute2f128_si256(v[ 8], v[ 9], 0x31);
# 2464|                   t[25] = _mm256_permute2f128_si256(v[10], v[11], 0x31);
# 2465|->                 t[26] = _mm256_permute2f128_si256(v[12], v[13], 0x31);
# 2466|                   t[27] = _mm256_permute2f128_si256(v[14], v[15], 0x31);
# 2467|                   t[28] = _mm256_permute2f128_si256(v[24], v[25], 0x31);

Error: COMPILER_WARNING: [#def520]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2466:25: note[note]: called from here
# 2464|                   t[25] = _mm256_permute2f128_si256(v[10], v[11], 0x31);
# 2465|                   t[26] = _mm256_permute2f128_si256(v[12], v[13], 0x31);
# 2466|->                 t[27] = _mm256_permute2f128_si256(v[14], v[15], 0x31);
# 2467|                   t[28] = _mm256_permute2f128_si256(v[24], v[25], 0x31);
# 2468|                   t[29] = _mm256_permute2f128_si256(v[26], v[27], 0x31);

Error: COMPILER_WARNING: [#def521]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2467:25: note[note]: called from here
# 2465|                   t[26] = _mm256_permute2f128_si256(v[12], v[13], 0x31);
# 2466|                   t[27] = _mm256_permute2f128_si256(v[14], v[15], 0x31);
# 2467|->                 t[28] = _mm256_permute2f128_si256(v[24], v[25], 0x31);
# 2468|                   t[29] = _mm256_permute2f128_si256(v[26], v[27], 0x31);
# 2469|                   t[30] = _mm256_permute2f128_si256(v[28], v[29], 0x31);

Error: COMPILER_WARNING: [#def522]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2468:25: note[note]: called from here
# 2466|                   t[27] = _mm256_permute2f128_si256(v[14], v[15], 0x31);
# 2467|                   t[28] = _mm256_permute2f128_si256(v[24], v[25], 0x31);
# 2468|->                 t[29] = _mm256_permute2f128_si256(v[26], v[27], 0x31);
# 2469|                   t[30] = _mm256_permute2f128_si256(v[28], v[29], 0x31);
# 2470|                   t[31] = _mm256_permute2f128_si256(v[30], v[31], 0x31);

Error: COMPILER_WARNING: [#def523]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2469:25: note[note]: called from here
# 2467|                   t[28] = _mm256_permute2f128_si256(v[24], v[25], 0x31);
# 2468|                   t[29] = _mm256_permute2f128_si256(v[26], v[27], 0x31);
# 2469|->                 t[30] = _mm256_permute2f128_si256(v[28], v[29], 0x31);
# 2470|                   t[31] = _mm256_permute2f128_si256(v[30], v[31], 0x31);
# 2471|   

Error: COMPILER_WARNING: [#def524]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2470:25: note[note]: called from here
# 2468|                   t[29] = _mm256_permute2f128_si256(v[26], v[27], 0x31);
# 2469|                   t[30] = _mm256_permute2f128_si256(v[28], v[29], 0x31);
# 2470|->                 t[31] = _mm256_permute2f128_si256(v[30], v[31], 0x31);
# 2471|   
# 2472|                   for (i = 0; i < 32; i++)

Error: COMPILER_WARNING: [#def525]
xevd-0.5.0/src_base/avx/xevd_itdq_avx.c:2474:21: note[note]: called from here
# 2472|                   for (i = 0; i < 32; i++)
# 2473|                   {
# 2474|->                     _mm256_storeu_si256((__m256i*)(pel_dst), t[i]);
# 2475|                       pel_dst += 16;
# 2476|                   }

Error: COMPILER_WARNING: [#def526]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:61:17: warning[-Wpsabi]: AVX vector return without AVX enabled changes the ABI
#   59|       if (rem_w > 15)
#   60|       {
#   61|->         __m256i offset_8x16b = _mm256_set1_epi32(offset);
#   62|           __m256i src_temp1_16x8b, src_temp2_16x8b, src_temp3_16x8b, src_temp4_16x8b, src_temp5_16x8b, src_temp6_16x8b;
#   63|           __m256i src_temp7_16x8b, src_temp8_16x8b, src_temp9_16x8b, src_temp0_16x8b;

Error: COMPILER_WARNING (CWE-563): [#def527]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c: scope_hint: In function ‘mc_filter_l_6pel_horz_clip_avx’
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:309:65: warning[-Wunused-but-set-variable]: variable ‘coeff6_7_8x16b’ set but not used
#  309 |         __m256i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
#      |                                                                 ^~~~~~~~~~~~~~
#  307|           __m256i res_temp1_8x16b, res_temp2_8x16b, res_temp3_8x16b, res_temp5_8x16b, res_temp6_8x16b, res_temp7_8x16b, res_temp8_8x16b;
#  308|           __m256i res_temp9_8x16b;
#  309|->         __m256i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
#  310|           __m256i mm_min = _mm256_set1_epi16(min_val);
#  311|           __m256i mm_max = _mm256_set1_epi16(max_val);

Error: COMPILER_WARNING: [#def528]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:519:32: note[note]: called from here
#  517|       if (rem_w > 15)
#  518|       {
#  519|->         __m256i offset_8x16b = _mm256_set1_epi32(offset);
#  520|           __m256i src_temp1_16x8b, src_temp2_16x8b, src_temp3_16x8b, src_temp4_16x8b, src_temp5_16x8b, src_temp6_16x8b;
#  521|           __m256i src_temp7_16x8b, src_temp8_16x8b, src_temp9_16x8b, src_temp0_16x8b;

Error: COMPILER_WARNING: [#def529]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:528:26: note[note]: called from here
#  526|           xevd_mcpy(tmp_buf, coeff, 16);
#  527|           xevd_mcpy(tmp_buf + 8, coeff, 16);
#  528|->         coeff0_1_8x16b = _mm256_loadu_si256((__m256i*)(tmp_buf));
#  529|   
#  530|           coeff2_3_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0x55);

Error: COMPILER_WARNING: [#def530]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:530:26: note[note]: called from here
#  528|           coeff0_1_8x16b = _mm256_loadu_si256((__m256i*)(tmp_buf));
#  529|   
#  530|->         coeff2_3_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0x55);
#  531|           coeff4_5_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xaa);
#  532|           coeff6_7_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xff);

Error: COMPILER_WARNING: [#def531]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:531:26: note[note]: called from here
#  529|   
#  530|           coeff2_3_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0x55);
#  531|->         coeff4_5_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xaa);
#  532|           coeff6_7_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xff);
#  533|           coeff0_1_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0);

Error: COMPILER_WARNING: [#def532]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:532:26: note[note]: called from here
#  530|           coeff2_3_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0x55);
#  531|           coeff4_5_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xaa);
#  532|->         coeff6_7_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xff);
#  533|           coeff0_1_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0);
#  534|   

Error: COMPILER_WARNING: [#def533]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:533:26: note[note]: called from here
#  531|           coeff4_5_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xaa);
#  532|           coeff6_7_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0xff);
#  533|->         coeff0_1_8x16b = _mm256_shuffle_epi32(coeff0_1_8x16b, 0);
#  534|   
#  535|           for (row = 0; row < height; row += 1)

Error: COMPILER_WARNING: [#def534]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:540:35: note[note]: called from here
#  538|               {
#  539|                   /*load 8 pixel values from row 0*/
#  540|->                 src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col]));
#  541|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 1]));
#  542|   

Error: COMPILER_WARNING: [#def535]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:541:35: note[note]: called from here
#  539|                   /*load 8 pixel values from row 0*/
#  540|                   src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col]));
#  541|->                 src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 1]));
#  542|   
#  543|                   src_temp3_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);

Error: COMPILER_WARNING: [#def536]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:543:35: note[note]: called from here
#  541|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 1]));
#  542|   
#  543|->                 src_temp3_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  544|                   src_temp7_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  545|                   res_temp1_8x16b = _mm256_madd_epi16(src_temp3_16x8b, coeff0_1_8x16b);

Error: COMPILER_WARNING: [#def537]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:544:35: note[note]: called from here
#  542|   
#  543|                   src_temp3_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  544|->                 src_temp7_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  545|                   res_temp1_8x16b = _mm256_madd_epi16(src_temp3_16x8b, coeff0_1_8x16b);
#  546|                   res_temp7_8x16b = _mm256_madd_epi16(src_temp7_16x8b, coeff0_1_8x16b);

Error: COMPILER_WARNING: [#def538]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:545:35: note[note]: called from here
#  543|                   src_temp3_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  544|                   src_temp7_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  545|->                 res_temp1_8x16b = _mm256_madd_epi16(src_temp3_16x8b, coeff0_1_8x16b);
#  546|                   res_temp7_8x16b = _mm256_madd_epi16(src_temp7_16x8b, coeff0_1_8x16b);
#  547|                   /* row = 0 */

Error: COMPILER_WARNING: [#def539]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:546:35: note[note]: called from here
#  544|                   src_temp7_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  545|                   res_temp1_8x16b = _mm256_madd_epi16(src_temp3_16x8b, coeff0_1_8x16b);
#  546|->                 res_temp7_8x16b = _mm256_madd_epi16(src_temp7_16x8b, coeff0_1_8x16b);
#  547|                   /* row = 0 */
#  548|                   src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 2]));

Error: COMPILER_WARNING: [#def540]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:548:35: note[note]: called from here
#  546|                   res_temp7_8x16b = _mm256_madd_epi16(src_temp7_16x8b, coeff0_1_8x16b);
#  547|                   /* row = 0 */
#  548|->                 src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 2]));
#  549|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 3]));
#  550|   

Error: COMPILER_WARNING: [#def541]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:549:35: note[note]: called from here
#  547|                   /* row = 0 */
#  548|                   src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 2]));
#  549|->                 src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 3]));
#  550|   
#  551|                   src_temp4_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);

Error: COMPILER_WARNING: [#def542]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:551:35: note[note]: called from here
#  549|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 3]));
#  550|   
#  551|->                 src_temp4_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  552|                   src_temp8_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  553|                   res_temp2_8x16b = _mm256_madd_epi16(src_temp4_16x8b, coeff2_3_8x16b);

Error: COMPILER_WARNING: [#def543]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:552:35: note[note]: called from here
#  550|   
#  551|                   src_temp4_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  552|->                 src_temp8_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  553|                   res_temp2_8x16b = _mm256_madd_epi16(src_temp4_16x8b, coeff2_3_8x16b);
#  554|                   res_temp8_8x16b = _mm256_madd_epi16(src_temp8_16x8b, coeff2_3_8x16b);

Error: COMPILER_WARNING: [#def544]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:553:35: note[note]: called from here
#  551|                   src_temp4_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  552|                   src_temp8_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  553|->                 res_temp2_8x16b = _mm256_madd_epi16(src_temp4_16x8b, coeff2_3_8x16b);
#  554|                   res_temp8_8x16b = _mm256_madd_epi16(src_temp8_16x8b, coeff2_3_8x16b);
#  555|   

Error: COMPILER_WARNING: [#def545]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:554:35: note[note]: called from here
#  552|                   src_temp8_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  553|                   res_temp2_8x16b = _mm256_madd_epi16(src_temp4_16x8b, coeff2_3_8x16b);
#  554|->                 res_temp8_8x16b = _mm256_madd_epi16(src_temp8_16x8b, coeff2_3_8x16b);
#  555|   
#  556|                   src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 4]));

Error: COMPILER_WARNING: [#def546]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:556:35: note[note]: called from here
#  554|                   res_temp8_8x16b = _mm256_madd_epi16(src_temp8_16x8b, coeff2_3_8x16b);
#  555|   
#  556|->                 src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 4]));
#  557|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 5]));
#  558|   

Error: COMPILER_WARNING: [#def547]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:557:35: note[note]: called from here
#  555|   
#  556|                   src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 4]));
#  557|->                 src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 5]));
#  558|   
#  559|                   src_temp5_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);

Error: COMPILER_WARNING: [#def548]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:559:35: note[note]: called from here
#  557|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 5]));
#  558|   
#  559|->                 src_temp5_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  560|                   src_temp9_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  561|                   res_temp3_8x16b = _mm256_madd_epi16(src_temp5_16x8b, coeff4_5_8x16b);

Error: COMPILER_WARNING: [#def549]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:560:35: note[note]: called from here
#  558|   
#  559|                   src_temp5_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  560|->                 src_temp9_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  561|                   res_temp3_8x16b = _mm256_madd_epi16(src_temp5_16x8b, coeff4_5_8x16b);
#  562|                   res_temp9_8x16b = _mm256_madd_epi16(src_temp9_16x8b, coeff4_5_8x16b);

Error: COMPILER_WARNING: [#def550]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:561:35: note[note]: called from here
#  559|                   src_temp5_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  560|                   src_temp9_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  561|->                 res_temp3_8x16b = _mm256_madd_epi16(src_temp5_16x8b, coeff4_5_8x16b);
#  562|                   res_temp9_8x16b = _mm256_madd_epi16(src_temp9_16x8b, coeff4_5_8x16b);
#  563|   

Error: COMPILER_WARNING: [#def551]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:562:35: note[note]: called from here
#  560|                   src_temp9_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  561|                   res_temp3_8x16b = _mm256_madd_epi16(src_temp5_16x8b, coeff4_5_8x16b);
#  562|->                 res_temp9_8x16b = _mm256_madd_epi16(src_temp9_16x8b, coeff4_5_8x16b);
#  563|   
#  564|                   src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 6]));

Error: COMPILER_WARNING: [#def552]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:564:35: note[note]: called from here
#  562|                   res_temp9_8x16b = _mm256_madd_epi16(src_temp9_16x8b, coeff4_5_8x16b);
#  563|   
#  564|->                 src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 6]));
#  565|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 7]));
#  566|   

Error: COMPILER_WARNING: [#def553]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:565:35: note[note]: called from here
#  563|   
#  564|                   src_temp1_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 6]));
#  565|->                 src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 7]));
#  566|   
#  567|                   src_temp6_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);

Error: COMPILER_WARNING: [#def554]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:567:35: note[note]: called from here
#  565|                   src_temp2_16x8b = _mm256_loadu_si256((__m256i*)(&inp_copy[col + 7]));
#  566|   
#  567|->                 src_temp6_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  568|                   src_temp0_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  569|                   res_temp4_8x16b = _mm256_madd_epi16(src_temp6_16x8b, coeff6_7_8x16b);

Error: COMPILER_WARNING: [#def555]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:568:35: note[note]: called from here
#  566|   
#  567|                   src_temp6_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  568|->                 src_temp0_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  569|                   res_temp4_8x16b = _mm256_madd_epi16(src_temp6_16x8b, coeff6_7_8x16b);
#  570|                   res_temp0_8x16b = _mm256_madd_epi16(src_temp0_16x8b, coeff6_7_8x16b);

Error: COMPILER_WARNING: [#def556]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:569:35: note[note]: called from here
#  567|                   src_temp6_16x8b = _mm256_unpacklo_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  568|                   src_temp0_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  569|->                 res_temp4_8x16b = _mm256_madd_epi16(src_temp6_16x8b, coeff6_7_8x16b);
#  570|                   res_temp0_8x16b = _mm256_madd_epi16(src_temp0_16x8b, coeff6_7_8x16b);
#  571|   

Error: COMPILER_WARNING: [#def557]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:570:35: note[note]: called from here
#  568|                   src_temp0_16x8b = _mm256_unpackhi_epi16(src_temp1_16x8b, src_temp2_16x8b);
#  569|                   res_temp4_8x16b = _mm256_madd_epi16(src_temp6_16x8b, coeff6_7_8x16b);
#  570|->                 res_temp0_8x16b = _mm256_madd_epi16(src_temp0_16x8b, coeff6_7_8x16b);
#  571|   
#  572|                   res_temp5_8x16b = _mm256_add_epi32(res_temp1_8x16b, res_temp2_8x16b);

Error: COMPILER_WARNING: [#def558]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:572:35: note[note]: called from here
#  570|                   res_temp0_8x16b = _mm256_madd_epi16(src_temp0_16x8b, coeff6_7_8x16b);
#  571|   
#  572|->                 res_temp5_8x16b = _mm256_add_epi32(res_temp1_8x16b, res_temp2_8x16b);
#  573|                   res_temp6_8x16b = _mm256_add_epi32(res_temp3_8x16b, res_temp4_8x16b);
#  574|                   res_temp5_8x16b = _mm256_add_epi32(res_temp5_8x16b, res_temp6_8x16b);

Error: COMPILER_WARNING: [#def559]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:573:35: note[note]: called from here
#  571|   
#  572|                   res_temp5_8x16b = _mm256_add_epi32(res_temp1_8x16b, res_temp2_8x16b);
#  573|->                 res_temp6_8x16b = _mm256_add_epi32(res_temp3_8x16b, res_temp4_8x16b);
#  574|                   res_temp5_8x16b = _mm256_add_epi32(res_temp5_8x16b, res_temp6_8x16b);
#  575|   

Error: COMPILER_WARNING: [#def560]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:574:35: note[note]: called from here
#  572|                   res_temp5_8x16b = _mm256_add_epi32(res_temp1_8x16b, res_temp2_8x16b);
#  573|                   res_temp6_8x16b = _mm256_add_epi32(res_temp3_8x16b, res_temp4_8x16b);
#  574|->                 res_temp5_8x16b = _mm256_add_epi32(res_temp5_8x16b, res_temp6_8x16b);
#  575|   
#  576|                   res_temp6_8x16b = _mm256_add_epi32(res_temp7_8x16b, res_temp8_8x16b);

Error: COMPILER_WARNING: [#def561]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:576:35: note[note]: called from here
#  574|                   res_temp5_8x16b = _mm256_add_epi32(res_temp5_8x16b, res_temp6_8x16b);
#  575|   
#  576|->                 res_temp6_8x16b = _mm256_add_epi32(res_temp7_8x16b, res_temp8_8x16b);
#  577|                   res_temp7_8x16b = _mm256_add_epi32(res_temp9_8x16b, res_temp0_8x16b);
#  578|                   res_temp8_8x16b = _mm256_add_epi32(res_temp6_8x16b, res_temp7_8x16b);

Error: COMPILER_WARNING: [#def562]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:577:35: note[note]: called from here
#  575|   
#  576|                   res_temp6_8x16b = _mm256_add_epi32(res_temp7_8x16b, res_temp8_8x16b);
#  577|->                 res_temp7_8x16b = _mm256_add_epi32(res_temp9_8x16b, res_temp0_8x16b);
#  578|                   res_temp8_8x16b = _mm256_add_epi32(res_temp6_8x16b, res_temp7_8x16b);
#  579|   

Error: COMPILER_WARNING: [#def563]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:578:35: note[note]: called from here
#  576|                   res_temp6_8x16b = _mm256_add_epi32(res_temp7_8x16b, res_temp8_8x16b);
#  577|                   res_temp7_8x16b = _mm256_add_epi32(res_temp9_8x16b, res_temp0_8x16b);
#  578|->                 res_temp8_8x16b = _mm256_add_epi32(res_temp6_8x16b, res_temp7_8x16b);
#  579|   
#  580|                   res_temp6_8x16b = _mm256_add_epi32(res_temp5_8x16b, offset_8x16b);

Error: COMPILER_WARNING: [#def564]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:580:35: note[note]: called from here
#  578|                   res_temp8_8x16b = _mm256_add_epi32(res_temp6_8x16b, res_temp7_8x16b);
#  579|   
#  580|->                 res_temp6_8x16b = _mm256_add_epi32(res_temp5_8x16b, offset_8x16b);
#  581|                   res_temp7_8x16b = _mm256_add_epi32(res_temp8_8x16b, offset_8x16b);
#  582|                   res_temp6_8x16b = _mm256_srai_epi32(res_temp6_8x16b, shift);

Error: COMPILER_WARNING: [#def565]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:581:35: note[note]: called from here
#  579|   
#  580|                   res_temp6_8x16b = _mm256_add_epi32(res_temp5_8x16b, offset_8x16b);
#  581|->                 res_temp7_8x16b = _mm256_add_epi32(res_temp8_8x16b, offset_8x16b);
#  582|                   res_temp6_8x16b = _mm256_srai_epi32(res_temp6_8x16b, shift);
#  583|                   res_temp7_8x16b = _mm256_srai_epi32(res_temp7_8x16b, shift);

Error: COMPILER_WARNING: [#def566]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:582:35: note[note]: called from here
#  580|                   res_temp6_8x16b = _mm256_add_epi32(res_temp5_8x16b, offset_8x16b);
#  581|                   res_temp7_8x16b = _mm256_add_epi32(res_temp8_8x16b, offset_8x16b);
#  582|->                 res_temp6_8x16b = _mm256_srai_epi32(res_temp6_8x16b, shift);
#  583|                   res_temp7_8x16b = _mm256_srai_epi32(res_temp7_8x16b, shift);
#  584|                   res_temp5_8x16b = _mm256_packs_epi32(res_temp6_8x16b, res_temp7_8x16b);

Error: COMPILER_WARNING: [#def567]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:583:35: note[note]: called from here
#  581|                   res_temp7_8x16b = _mm256_add_epi32(res_temp8_8x16b, offset_8x16b);
#  582|                   res_temp6_8x16b = _mm256_srai_epi32(res_temp6_8x16b, shift);
#  583|->                 res_temp7_8x16b = _mm256_srai_epi32(res_temp7_8x16b, shift);
#  584|                   res_temp5_8x16b = _mm256_packs_epi32(res_temp6_8x16b, res_temp7_8x16b);
#  585|   

Error: COMPILER_WARNING: [#def568]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:584:35: note[note]: called from here
#  582|                   res_temp6_8x16b = _mm256_srai_epi32(res_temp6_8x16b, shift);
#  583|                   res_temp7_8x16b = _mm256_srai_epi32(res_temp7_8x16b, shift);
#  584|->                 res_temp5_8x16b = _mm256_packs_epi32(res_temp6_8x16b, res_temp7_8x16b);
#  585|   
#  586|                   /* to store the 8 pixels res. */

Error: COMPILER_WARNING: [#def569]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:587:17: note[note]: called from here
#  585|   
#  586|                   /* to store the 8 pixels res. */
#  587|->                 _mm256_storeu_si256((__m256i *)(dst_copy + col), res_temp5_8x16b);
#  588|               }
#  589|   

Error: COMPILER_WARNING (CWE-1164): [#def570]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:724:13: warning[-Wunused-function]: ‘mc_filter_l_6pel_horz_no_clip_avx’ defined but not used
#  724 | static void mc_filter_l_6pel_horz_no_clip_avx(s16 *ref,
#      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  722|   }
#  723|   
#  724|-> static void mc_filter_l_6pel_horz_no_clip_avx(s16 *ref,
#  725|       int src_stride,
#  726|       s16 *pred,

Error: COMPILER_WARNING (CWE-563): [#def571]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c: scope_hint: In function ‘mc_filter_l_6pel_horz_no_clip_avx’
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:751:65: warning[-Wunused-but-set-variable]: variable ‘coeff6_7_8x16b’ set but not used
#  751 |         __m256i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
#      |                                                                 ^~~~~~~~~~~~~~
#  749|           __m256i res_temp1_8x16b, res_temp2_8x16b, res_temp3_8x16b, res_temp5_8x16b, res_temp6_8x16b, res_temp7_8x16b, res_temp8_8x16b;
#  750|           __m256i res_temp9_8x16b;
#  751|->         __m256i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
#  752|           short tmp_buf[16] = { 0 };
#  753|           xevd_mcpy(tmp_buf, coeff + 1, 12);

Error: COMPILER_WARNING (CWE-1164): [#def572]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c: scope_hint: At top level
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:1165:13: warning[-Wunused-function]: ‘mc_filter_l_6pel_vert_clip_avx’ defined but not used
# 1165 | static void mc_filter_l_6pel_vert_clip_avx(s16 *ref,
#      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 1163|   
# 1164|   
# 1165|-> static void mc_filter_l_6pel_vert_clip_avx(s16 *ref,
# 1166|       int src_stride,
# 1167|       s16 *pred,

Error: COMPILER_WARNING (CWE-563): [#def573]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c: scope_hint: In function ‘mc_filter_l_6pel_vert_clip_avx’
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:1194:65: warning[-Wunused-but-set-variable]: variable ‘coeff6_7_8x16b’ set but not used
# 1194 |         __m256i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
#      |                                                                 ^~~~~~~~~~~~~~
# 1192|           __m256i res_temp1_8x16b, res_temp2_8x16b, res_temp3_8x16b, res_temp5_8x16b, res_temp6_8x16b, res_temp7_8x16b, res_temp8_8x16b;
# 1193|           __m256i res_temp9_8x16b;
# 1194|->         __m256i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
# 1195|           __m256i mm_min = _mm256_set1_epi16(min_val);
# 1196|           __m256i mm_max = _mm256_set1_epi16(max_val);

Error: COMPILER_WARNING (CWE-563): [#def574]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:1768:49: warning[-Wunused-but-set-variable]: variable ‘coeff4_5_8x16b’ set but not used
# 1768 |         __m128i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
#      |                                                 ^~~~~~~~~~~~~~
# 1766|           __m128i src_temp1_16x8b, src_temp2_16x8b, src_temp3_16x8b, src_temp4_16x8b;
# 1767|           __m128i res_temp1_8x16b, res_temp2_8x16b, res_temp5_8x16b, res_temp6_8x16b;
# 1768|->         __m128i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
# 1769|           __m128i mm_min = _mm_set1_epi16(min_val);
# 1770|           __m128i mm_max = _mm_set1_epi16(max_val);

Error: COMPILER_WARNING (CWE-563): [#def575]
xevd-0.5.0/src_base/avx/xevd_mc_avx.c: scope_hint: In function ‘mc_filter_c_4pel_vert_avx’
xevd-0.5.0/src_base/avx/xevd_mc_avx.c:1768:65: warning[-Wunused-but-set-variable]: variable ‘coeff6_7_8x16b’ set but not used
# 1768 |         __m128i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
#      |                                                                 ^~~~~~~~~~~~~~
# 1766|           __m128i src_temp1_16x8b, src_temp2_16x8b, src_temp3_16x8b, src_temp4_16x8b;
# 1767|           __m128i res_temp1_8x16b, res_temp2_8x16b, res_temp5_8x16b, res_temp6_8x16b;
# 1768|->         __m128i coeff0_1_8x16b, coeff2_3_8x16b, coeff4_5_8x16b, coeff6_7_8x16b;
# 1769|           __m128i mm_min = _mm_set1_epi16(min_val);
# 1770|           __m128i mm_max = _mm_set1_epi16(max_val);

Error: COMPILER_WARNING: [#def576]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:43:13: warning[-Wpsabi]: AVX vector return without AVX enabled changes the ABI
#   41|       __m128i mm_max = _mm_set1_epi16(max);
#   42|   
#   43|->     __m256i mm_min_256 = _mm256_set1_epi16(min);
#   44|       __m256i mm_max_256 = _mm256_set1_epi16(max);
#   45|   

Error: COMPILER_WARNING: [#def577]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:43:26: note[note]: called from here
#   41|       __m128i mm_max = _mm_set1_epi16(max);
#   42|   
#   43|->     __m256i mm_min_256 = _mm256_set1_epi16(min);
#   44|       __m256i mm_max_256 = _mm256_set1_epi16(max);
#   45|   

Error: COMPILER_WARNING: [#def578]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:44:26: note[note]: called from here
#   42|   
#   43|       __m256i mm_min_256 = _mm256_set1_epi16(min);
#   44|->     __m256i mm_max_256 = _mm256_set1_epi16(max);
#   45|   
#   46|       if (is_coef == 0) /* just copy pred to rec */

Error: COMPILER_WARNING: [#def579]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:61:37: note[note]: called from here
#   59|                       {
#   60|   
#   61|->                         m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#   62|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#   63|                           m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));

Error: COMPILER_WARNING: [#def580]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:62:37: note[note]: called from here
#   60|   
#   61|                           m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#   62|->                         m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#   63|                           m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));
#   64|                           m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));

Error: COMPILER_WARNING: [#def581]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:63:37: note[note]: called from here
#   61|                           m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#   62|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#   63|->                         m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));
#   64|                           m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));
#   65|   

Error: COMPILER_WARNING: [#def582]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:64:37: note[note]: called from here
#   62|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#   63|                           m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));
#   64|->                         m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));
#   65|   
#   66|   

Error: COMPILER_WARNING: [#def583]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:67:39: note[note]: called from here
#   65|   
#   66|   
#   67|->                         temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#   68|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#   69|                           temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);

Error: COMPILER_WARNING: [#def584]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:68:39: note[note]: called from here
#   66|   
#   67|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#   68|->                         temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#   69|                           temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);
#   70|                           temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);

Error: COMPILER_WARNING: [#def585]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:69:39: note[note]: called from here
#   67|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#   68|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#   69|->                         temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);
#   70|                           temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);
#   71|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def586]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:70:39: note[note]: called from here
#   68|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#   69|                           temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);
#   70|->                         temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);
#   71|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#   72|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def587]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:71:37: note[note]: called from here
#   69|                           temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);
#   70|                           temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);
#   71|->                         m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#   72|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#   73|                           m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def588]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:72:37: note[note]: called from here
#   70|                           temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);
#   71|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#   72|->                         m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#   73|                           m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);
#   74|                           m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def589]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:73:37: note[note]: called from here
#   71|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#   72|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#   73|->                         m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);
#   74|                           m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);
#   75|   

Error: COMPILER_WARNING: [#def590]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:74:37: note[note]: called from here
#   72|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#   73|                           m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);
#   74|->                         m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);
#   75|   
#   76|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);

Error: COMPILER_WARNING: [#def591]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:76:25: note[note]: called from here
#   74|                           m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);
#   75|   
#   76|->                         _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#   77|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#   78|                           _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);

Error: COMPILER_WARNING: [#def592]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:77:25: note[note]: called from here
#   75|   
#   76|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#   77|->                         _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#   78|                           _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);
#   79|                           _mm256_storeu_si256((__m256i*)(rec + j + 3 * s_rec), m03_16x16);

Error: COMPILER_WARNING: [#def593]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:78:25: note[note]: called from here
#   76|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#   77|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#   78|->                         _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);
#   79|                           _mm256_storeu_si256((__m256i*)(rec + j + 3 * s_rec), m03_16x16);
#   80|                       }

Error: COMPILER_WARNING: [#def594]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:79:25: note[note]: called from here
#   77|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#   78|                           _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);
#   79|->                         _mm256_storeu_si256((__m256i*)(rec + j + 3 * s_rec), m03_16x16);
#   80|                       }
#   81|                       pred += cuw * 4;

Error: COMPILER_WARNING: [#def595]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:171:37: note[note]: called from here
#  169|                       {
#  170|   
#  171|->                         m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  172|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  173|   

Error: COMPILER_WARNING: [#def596]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:172:37: note[note]: called from here
#  170|   
#  171|                           m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  172|->                         m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  173|   
#  174|   

Error: COMPILER_WARNING: [#def597]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:175:39: note[note]: called from here
#  173|   
#  174|   
#  175|->                         temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  176|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  177|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def598]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:176:39: note[note]: called from here
#  174|   
#  175|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  176|->                         temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  177|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  178|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def599]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:177:37: note[note]: called from here
#  175|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  176|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  177|->                         m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  178|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  179|   

Error: COMPILER_WARNING: [#def600]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:178:37: note[note]: called from here
#  176|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  177|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  178|->                         m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  179|   
#  180|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);

Error: COMPILER_WARNING: [#def601]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:180:25: note[note]: called from here
#  178|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  179|   
#  180|->                         _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#  181|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  182|                       }

Error: COMPILER_WARNING: [#def602]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:181:25: note[note]: called from here
#  179|   
#  180|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#  181|->                         _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  182|                       }
#  183|                       pred += cuw * 2;

Error: COMPILER_WARNING: [#def603]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:257:37: note[note]: called from here
#  255|                       for (j = 0; j < cuw; j += 16)
#  256|                       {
#  257|->                         m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  258|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  259|                           m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));

Error: COMPILER_WARNING: [#def604]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:258:37: note[note]: called from here
#  256|                       {
#  257|                           m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  258|->                         m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  259|                           m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));
#  260|                           m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));

Error: COMPILER_WARNING: [#def605]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:259:37: note[note]: called from here
#  257|                           m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  258|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  259|->                         m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));
#  260|                           m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));
#  261|                           c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));

Error: COMPILER_WARNING: [#def606]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:260:37: note[note]: called from here
#  258|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  259|                           m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));
#  260|->                         m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));
#  261|                           c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));
#  262|                           c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));

Error: COMPILER_WARNING: [#def607]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:261:37: note[note]: called from here
#  259|                           m02_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 2 * cuw));
#  260|                           m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));
#  261|->                         c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));
#  262|                           c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));
#  263|                           c02_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 2 * cuw));

Error: COMPILER_WARNING: [#def608]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:262:37: note[note]: called from here
#  260|                           m03_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + 3 * cuw));
#  261|                           c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));
#  262|->                         c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));
#  263|                           c02_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 2 * cuw));
#  264|                           c03_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 3 * cuw));

Error: COMPILER_WARNING: [#def609]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:263:37: note[note]: called from here
#  261|                           c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));
#  262|                           c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));
#  263|->                         c02_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 2 * cuw));
#  264|                           c03_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 3 * cuw));
#  265|   

Error: COMPILER_WARNING: [#def610]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:264:37: note[note]: called from here
#  262|                           c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));
#  263|                           c02_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 2 * cuw));
#  264|->                         c03_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 3 * cuw));
#  265|   
#  266|                           m00_16x16 = _mm256_add_epi16(m00_16x16, c00_16x16);

Error: COMPILER_WARNING: [#def611]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:266:37: note[note]: called from here
#  264|                           c03_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + 3 * cuw));
#  265|   
#  266|->                         m00_16x16 = _mm256_add_epi16(m00_16x16, c00_16x16);
#  267|                           m01_16x16 = _mm256_add_epi16(m01_16x16, c01_16x16);
#  268|                           m02_16x16 = _mm256_add_epi16(m02_16x16, c02_16x16);

Error: COMPILER_WARNING: [#def612]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:267:37: note[note]: called from here
#  265|   
#  266|                           m00_16x16 = _mm256_add_epi16(m00_16x16, c00_16x16);
#  267|->                         m01_16x16 = _mm256_add_epi16(m01_16x16, c01_16x16);
#  268|                           m02_16x16 = _mm256_add_epi16(m02_16x16, c02_16x16);
#  269|                           m03_16x16 = _mm256_add_epi16(m03_16x16, c03_16x16);

Error: COMPILER_WARNING: [#def613]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:268:37: note[note]: called from here
#  266|                           m00_16x16 = _mm256_add_epi16(m00_16x16, c00_16x16);
#  267|                           m01_16x16 = _mm256_add_epi16(m01_16x16, c01_16x16);
#  268|->                         m02_16x16 = _mm256_add_epi16(m02_16x16, c02_16x16);
#  269|                           m03_16x16 = _mm256_add_epi16(m03_16x16, c03_16x16);
#  270|   

Error: COMPILER_WARNING: [#def614]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:269:37: note[note]: called from here
#  267|                           m01_16x16 = _mm256_add_epi16(m01_16x16, c01_16x16);
#  268|                           m02_16x16 = _mm256_add_epi16(m02_16x16, c02_16x16);
#  269|->                         m03_16x16 = _mm256_add_epi16(m03_16x16, c03_16x16);
#  270|   
#  271|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);

Error: COMPILER_WARNING: [#def615]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:271:39: note[note]: called from here
#  269|                           m03_16x16 = _mm256_add_epi16(m03_16x16, c03_16x16);
#  270|   
#  271|->                         temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  272|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  273|                           temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);

Error: COMPILER_WARNING: [#def616]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:272:39: note[note]: called from here
#  270|   
#  271|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  272|->                         temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  273|                           temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);
#  274|                           temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);

Error: COMPILER_WARNING: [#def617]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:273:39: note[note]: called from here
#  271|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  272|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  273|->                         temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);
#  274|                           temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);
#  275|   

Error: COMPILER_WARNING: [#def618]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:274:39: note[note]: called from here
#  272|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  273|                           temp3_16x16 = _mm256_min_epi16(m02_16x16, mm_max_256);
#  274|->                         temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);
#  275|   
#  276|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def619]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:276:37: note[note]: called from here
#  274|                           temp4_16x16 = _mm256_min_epi16(m03_16x16, mm_max_256);
#  275|   
#  276|->                         m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  277|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  278|                           m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def620]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:277:37: note[note]: called from here
#  275|   
#  276|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  277|->                         m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  278|                           m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);
#  279|                           m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def621]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:278:37: note[note]: called from here
#  276|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  277|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  278|->                         m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);
#  279|                           m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);
#  280|   

Error: COMPILER_WARNING: [#def622]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:279:37: note[note]: called from here
#  277|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  278|                           m02_16x16 = _mm256_max_epi16(temp3_16x16, mm_min_256);
#  279|->                         m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);
#  280|   
#  281|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);

Error: COMPILER_WARNING: [#def623]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:281:25: note[note]: called from here
#  279|                           m03_16x16 = _mm256_max_epi16(temp4_16x16, mm_min_256);
#  280|   
#  281|->                         _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#  282|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  283|                           _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);

Error: COMPILER_WARNING: [#def624]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:282:25: note[note]: called from here
#  280|   
#  281|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#  282|->                         _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  283|                           _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);
#  284|                           _mm256_storeu_si256((__m256i*)(rec + j + 3 * s_rec), m03_16x16);

Error: COMPILER_WARNING: [#def625]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:283:25: note[note]: called from here
#  281|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#  282|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  283|->                         _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);
#  284|                           _mm256_storeu_si256((__m256i*)(rec + j + 3 * s_rec), m03_16x16);
#  285|                       }

Error: COMPILER_WARNING: [#def626]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:284:25: note[note]: called from here
#  282|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  283|                           _mm256_storeu_si256((__m256i*)(rec + j + 2 * s_rec), m02_16x16);
#  284|->                         _mm256_storeu_si256((__m256i*)(rec + j + 3 * s_rec), m03_16x16);
#  285|                       }
#  286|                       pred += cuw * 4;

Error: COMPILER_WARNING: [#def627]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:394:37: note[note]: called from here
#  392|                       for (j = 0; j < cuw; j += 16)
#  393|                       {
#  394|->                         m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  395|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  396|                           c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));

Error: COMPILER_WARNING: [#def628]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:395:37: note[note]: called from here
#  393|                       {
#  394|                           m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  395|->                         m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  396|                           c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));
#  397|                           c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));

Error: COMPILER_WARNING: [#def629]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:396:37: note[note]: called from here
#  394|                           m00_16x16 = _mm256_loadu_si256((__m256i*)(pred + j));
#  395|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  396|->                         c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));
#  397|                           c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));
#  398|   

Error: COMPILER_WARNING: [#def630]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:397:37: note[note]: called from here
#  395|                           m01_16x16 = _mm256_loadu_si256((__m256i*)(pred + j + cuw));
#  396|                           c00_16x16 = _mm256_loadu_si256((__m256i*)(coef + j));
#  397|->                         c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));
#  398|   
#  399|                           m00_16x16 = _mm256_add_epi16(m00_16x16, c00_16x16);

Error: COMPILER_WARNING: [#def631]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:399:37: note[note]: called from here
#  397|                           c01_16x16 = _mm256_loadu_si256((__m256i*)(coef + j + cuw));
#  398|   
#  399|->                         m00_16x16 = _mm256_add_epi16(m00_16x16, c00_16x16);
#  400|                           m01_16x16 = _mm256_add_epi16(m01_16x16, c01_16x16);
#  401|   

Error: COMPILER_WARNING: [#def632]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:400:37: note[note]: called from here
#  398|   
#  399|                           m00_16x16 = _mm256_add_epi16(m00_16x16, c00_16x16);
#  400|->                         m01_16x16 = _mm256_add_epi16(m01_16x16, c01_16x16);
#  401|   
#  402|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);

Error: COMPILER_WARNING: [#def633]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:402:39: note[note]: called from here
#  400|                           m01_16x16 = _mm256_add_epi16(m01_16x16, c01_16x16);
#  401|   
#  402|->                         temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  403|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  404|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def634]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:403:39: note[note]: called from here
#  401|   
#  402|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  403|->                         temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  404|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  405|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);

Error: COMPILER_WARNING: [#def635]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:404:37: note[note]: called from here
#  402|                           temp1_16x16 = _mm256_min_epi16(m00_16x16, mm_max_256);
#  403|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  404|->                         m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  405|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  406|   

Error: COMPILER_WARNING: [#def636]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:405:37: note[note]: called from here
#  403|                           temp2_16x16 = _mm256_min_epi16(m01_16x16, mm_max_256);
#  404|                           m00_16x16 = _mm256_max_epi16(temp1_16x16, mm_min_256);
#  405|->                         m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  406|   
#  407|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);

Error: COMPILER_WARNING: [#def637]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:407:25: note[note]: called from here
#  405|                           m01_16x16 = _mm256_max_epi16(temp2_16x16, mm_min_256);
#  406|   
#  407|->                         _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#  408|                           _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  409|                       }

Error: COMPILER_WARNING: [#def638]
xevd-0.5.0/src_base/avx/xevd_recon_avx.c:408:25: note[note]: called from here
#  406|   
#  407|                           _mm256_storeu_si256((__m256i*)(rec + j), m00_16x16);
#  408|->                         _mm256_storeu_si256((__m256i*)(rec + j + s_rec), m01_16x16);
#  409|                       }
#  410|                       pred += cuw * 2;

Error: COMPILER_WARNING (CWE-563): [#def639]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c: scope_hint: In function ‘deblock_scu_hor_sse’
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:43:23: warning[-Wunused-variable]: unused variable ‘sign’
#   43 |     __m128i d, abs_d, sign, clip, sst;
#      |                       ^~~~
#   41|   
#   42|       __m128i t1, t2;
#   43|->     __m128i d, abs_d, sign, clip, sst;
#   44|       sst = _mm_set1_epi16(st);
#   45|       t1 = _mm_slli_epi16(BB, 2);

Error: COMPILER_WARNING (CWE-563): [#def640]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:123:23: warning[-Wunused-variable]: unused variable ‘sign’
#  123 |     __m128i d, abs_d, sign, clip, sst1, sst;
#      |                       ^~~~
#  121|       __m128i t1, t2;
#  122|   
#  123|->     __m128i d, abs_d, sign, clip, sst1, sst;
#  124|       sst = _mm_set1_epi16(st_u);
#  125|       sst1 = _mm_set1_epi16(st_v);

Error: COMPILER_WARNING (CWE-563): [#def641]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:139:17: warning[-Wunused-variable]: unused variable ‘d2’
#  139 |     __m128i d1, d2, t16, ad;
#      |                 ^~
#  137|       MAX = _mm_set1_epi16((1 << (bit_depth_minus8 + 8)) - 1);
#  138|   
#  139|->     __m128i d1, d2, t16, ad;
#  140|       t16 = _mm_sub_epi16(abs_d, sst);
#  141|       t16 = _mm_slli_epi16(t16, 1);

Error: COMPILER_WARNING (CWE-563): [#def642]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c: scope_hint: In function ‘deblock_scu_hor_chroma_sse’
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:139:26: warning[-Wunused-variable]: unused variable ‘ad’
#  139 |     __m128i d1, d2, t16, ad;
#      |                          ^~
#  137|       MAX = _mm_set1_epi16((1 << (bit_depth_minus8 + 8)) - 1);
#  138|   
#  139|->     __m128i d1, d2, t16, ad;
#  140|       t16 = _mm_sub_epi16(abs_d, sst);
#  141|       t16 = _mm_slli_epi16(t16, 1);

Error: COMPILER_WARNING (CWE-563): [#def643]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c: scope_hint: In function ‘deblock_scu_ver_sse’
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:211:23: warning[-Wunused-variable]: unused variable ‘sign’
#  211 |     __m128i d, abs_d, sign, clip, sst;
#      |                       ^~~~
#  209|       DD = _mm_srli_si128(CC, 8);
#  210|   
#  211|->     __m128i d, abs_d, sign, clip, sst;
#  212|       sst = _mm_set1_epi16(st);
#  213|       t1 = _mm_slli_epi16(BB, 2);

Error: COMPILER_WARNING (CWE-563): [#def644]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:295:27: warning[-Wunused-variable]: unused variable ‘sign’
#  295 |         __m128i d, abs_d, sign, clip, sst1, sst;
#      |                           ^~~~
#  293|           DD = _mm_srli_si128(CC, 8);
#  294|   
#  295|->         __m128i d, abs_d, sign, clip, sst1, sst;
#  296|           sst = _mm_set1_epi16(st_u);
#  297|           sst1 = _mm_set1_epi16(st_v);

Error: COMPILER_WARNING (CWE-563): [#def645]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:311:21: warning[-Wunused-variable]: unused variable ‘d2’
#  311 |         __m128i d1, d2, t16, ad;
#      |                     ^~
#  309|           MAX = _mm_set1_epi16((1 << (bit_depth_minus8 + 8)) - 1);
#  310|   
#  311|->         __m128i d1, d2, t16, ad;
#  312|           t16 = _mm_sub_epi16(abs_d, sst);
#  313|           t16 = _mm_slli_epi16(t16, 1);

Error: COMPILER_WARNING (CWE-563): [#def646]
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c: scope_hint: In function ‘deblock_scu_ver_chroma_sse’
xevd-0.5.0/src_base/sse/xevd_dbk_sse.c:311:30: warning[-Wunused-variable]: unused variable ‘ad’
#  311 |         __m128i d1, d2, t16, ad;
#      |                              ^~
#  309|           MAX = _mm_set1_epi16((1 << (bit_depth_minus8 + 8)) - 1);
#  310|   
#  311|->         __m128i d1, d2, t16, ad;
#  312|           t16 = _mm_sub_epi16(abs_d, sst);
#  313|           t16 = _mm_slli_epi16(t16, 1);

Error: COMPILER_WARNING (CWE-563): [#def647]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_free_2d’
xevd-0.5.0/src_base/xevd.c:94:9: warning[-Wunused-variable]: unused variable ‘i’
#   94 |     int i;
#      |         ^
#   92|   void xevd_free_2d(s8*** dst, int size_1d, int size_2d, int type_size)
#   93|   {
#   94|->     int i;
#   95|   
#   96|       xevd_mfree_fast((*dst)[0]);

Error: GCC_ANALYZER_WARNING (CWE-465): [#def648]
xevd-0.5.0/src_base/xevd.c:97:5: warning[-Wanalyzer-deref-before-check]: check of ‘*cu_data.ipm’ for NULL after already dereferencing it
xevd-0.5.0/src_base/xevd.c:2241:6: enter_function: entry to ‘xevd_delete’
xevd-0.5.0/src_base/xevd.c:2244:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:2246:5: call_function: calling ‘sequence_deinit’ from ‘xevd_delete’
#   95|   
#   96|       xevd_mfree_fast((*dst)[0]);
#   97|->     xevd_mfree_fast(*dst);
#   98|   }
#   99|   

Error: GCC_ANALYZER_WARNING (CWE-465): [#def649]
xevd-0.5.0/src_base/xevd.c:97:5: warning[-Wanalyzer-deref-before-check]: check of ‘*cu_data.mpm_ext’ for NULL after already dereferencing it
xevd-0.5.0/src_base/xevd.c:2241:6: enter_function: entry to ‘xevd_delete’
xevd-0.5.0/src_base/xevd.c:2244:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:2246:5: call_function: calling ‘sequence_deinit’ from ‘xevd_delete’
#   95|   
#   96|       xevd_mfree_fast((*dst)[0]);
#   97|->     xevd_mfree_fast(*dst);
#   98|   }
#   99|   

Error: GCC_ANALYZER_WARNING (CWE-465): [#def650]
xevd-0.5.0/src_base/xevd.c:97:5: warning[-Wanalyzer-deref-before-check]: check of ‘*cu_data.mpm’ for NULL after already dereferencing it
xevd-0.5.0/src_base/xevd.c:2241:6: enter_function: entry to ‘xevd_delete’
xevd-0.5.0/src_base/xevd.c:2244:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:2246:5: call_function: calling ‘sequence_deinit’ from ‘xevd_delete’
#   95|   
#   96|       xevd_mfree_fast((*dst)[0]);
#   97|->     xevd_mfree_fast(*dst);
#   98|   }
#   99|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def651]
xevd-0.5.0/src_base/xevd.c:225:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘*ctx.tc.task_num_in_tile’
xevd-0.5.0/src_base/xevd.c:1785:5: enter_function: entry to ‘xevd_dec_nalu’
xevd-0.5.0/src_base/xevd.c:1804:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1805:8: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1805:7: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1820:13: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1820:13: branch_true: following ‘true’ branch...
xevd-0.5.0/src_base/xevd.c:1822:15: branch_true: ...to here
xevd-0.5.0/src_base/xevd.c:1823:9: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1824:15: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1824:15: call_function: calling ‘picture_init’ from ‘xevd_dec_nalu’
#  223|       {
#  224|           ctx->tc.tile_task_num = 1;
#  225|->         ctx->tc.task_num_in_tile[0] = ctx->tc.max_task_cnt;
#  226|       }
#  227|       else

Error: GCC_ANALYZER_WARNING (CWE-476): [#def652]
xevd-0.5.0/src_base/xevd.c:232:13: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘*ctx.tc.task_num_in_tile’
xevd-0.5.0/src_base/xevd.c:1785:5: enter_function: entry to ‘xevd_dec_nalu’
xevd-0.5.0/src_base/xevd.c:1804:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1805:8: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1805:7: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1820:13: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1820:13: branch_true: following ‘true’ branch...
xevd-0.5.0/src_base/xevd.c:1822:15: branch_true: ...to here
xevd-0.5.0/src_base/xevd.c:1823:9: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1824:15: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1824:15: call_function: calling ‘picture_init’ from ‘xevd_dec_nalu’
#  230|           for (u32 i = 0; i < ctx->tile_cnt; i++)
#  231|           {
#  232|->             ctx->tc.task_num_in_tile[i] = 1;
#  233|           }
#  234|       }

Error: COMPILER_WARNING (CWE-563): [#def653]
xevd-0.5.0/src_base/xevd.c:508:9: warning[-Wunused-variable]: unused variable ‘REF_SET’
#  508 |     int REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };
#      |         ^~~~~~~
#  506|   void xevd_get_skip_motion(XEVD_CTX * ctx, XEVD_CORE * core)
#  507|   {
#  508|->     int REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };
#  509|       int cuw, cuh, inter_dir = 0;
#  510|       s8            srefi[REFP_NUM][MAX_NUM_MVP];

Error: COMPILER_WARNING (CWE-563): [#def654]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_get_skip_motion’
xevd-0.5.0/src_base/xevd.c:509:19: warning[-Wunused-variable]: unused variable ‘inter_dir’
#  509 |     int cuw, cuh, inter_dir = 0;
#      |                   ^~~~~~~~~
#  507|   {
#  508|       int REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };
#  509|->     int cuw, cuh, inter_dir = 0;
#  510|       s8            srefi[REFP_NUM][MAX_NUM_MVP];
#  511|       s16           smvp[REFP_NUM][MAX_NUM_MVP][MV_D];

Error: COMPILER_WARNING (CWE-563): [#def655]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘coef_rect_to_series’
xevd-0.5.0/src_base/xevd.c:641:9: warning[-Wunused-variable]: unused variable ‘i’
#  641 |     int i, j, sidx, didx;
#      |         ^
#  639|   static void coef_rect_to_series(XEVD_CTX * ctx, s16 *coef_src[N_C], int x, int y, int cuw, int cuh, s16 coef_dst[N_C][MAX_CU_DIM], XEVD_CORE * core)
#  640|   {
#  641|->     int i, j, sidx, didx;
#  642|   
#  643|       sidx = (x&(ctx->max_cuwh - 1)) + ((y&(ctx->max_cuwh - 1)) << ctx->log2_max_cuwh);

Error: CPPCHECK_WARNING (CWE-758): [#def656]
xevd-0.5.0/src_base/xevd.c:750: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  748|           for (int i = 0; i < cuw >> MIN_CU_LOG2; i++)
#  749|           {
#  750|->             MCU_SET_COD(map_scu[i]);
#  751|           }
#  752|           map_scu += ctx->w_scu;

Error: COMPILER_WARNING (CWE-563): [#def657]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_entropy_dec_unit’
xevd-0.5.0/src_base/xevd.c:772:9: warning[-Wunused-variable]: unused variable ‘chroma_format_idc’
#  772 |     int chroma_format_idc = ctx->sps->chroma_format_idc;
#      |         ^~~~~~~~~~~~~~~~~
#  770|       cuw = 1 << log2_cuw;
#  771|       cuh = 1 << log2_cuh;
#  772|->     int chroma_format_idc = ctx->sps->chroma_format_idc;
#  773|   
#  774|       XEVD_TRACE_COUNTER;

Error: COMPILER_WARNING (CWE-563): [#def658]
xevd-0.5.0/src_base/xevd.c:812:9: warning[-Wunused-but-set-variable]: variable ‘log2_cuw’ set but not used
#  812 |     int log2_cuw, log2_cuh;
#      |         ^~~~~~~~
#  810|       XEVD_CU_DATA *cu_data;
#  811|       int idx, size;
#  812|->     int log2_cuw, log2_cuh;
#  813|       int x_in_lcu = core->x - (core->x_lcu << ctx->log2_max_cuwh);
#  814|       int y_in_lcu = core->y - (core->y_lcu << ctx->log2_max_cuwh);

Error: COMPILER_WARNING (CWE-563): [#def659]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘copy_to_cu_data’
xevd-0.5.0/src_base/xevd.c:812:19: warning[-Wunused-but-set-variable]: variable ‘log2_cuh’ set but not used
#  812 |     int log2_cuw, log2_cuh;
#      |                   ^~~~~~~~
#  810|       XEVD_CU_DATA *cu_data;
#  811|       int idx, size;
#  812|->     int log2_cuw, log2_cuh;
#  813|       int x_in_lcu = core->x - (core->x_lcu << ctx->log2_max_cuwh);
#  814|       int y_in_lcu = core->y - (core->y_lcu << ctx->log2_max_cuwh);

Error: COMPILER_WARNING (CWE-563): [#def660]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_entropy_decode_tree’
xevd-0.5.0/src_base/xevd.c:988:13: warning[-Wunused-but-set-variable]: variable ‘curr_part_num’ set but not used
#  988 |         int curr_part_num;
#      |             ^~~~~~~~~~~~~
#  986|           xevd_split_get_part_structure(split_mode, x0, y0, cuw, cuh, cup, cud, ctx->log2_max_cuwh - MIN_CU_LOG2, &split_struct );
#  987|   
#  988|->         int curr_part_num;
#  989|           for(int part_num = 0; part_num < split_struct.part_count; ++part_num)
#  990|           {

Error: COMPILER_WARNING (CWE-563): [#def661]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_deblock’
xevd-0.5.0/src_base/xevd.c:1120:18: warning[-Wunused-but-set-variable]: variable ‘tile_idx’ set but not used
# 1120 |     int          tile_idx;
#      |                  ^~~~~~~~
# 1118|       XEVD_CORE  * core = (XEVD_CORE *)arg;
# 1119|       XEVD_CTX   * ctx = core->ctx;
# 1120|->     int          tile_idx;
# 1121|       int          filter_across_boundary = core->filter_across_boundary;
# 1122|       int          i, j;

Error: COMPILER_WARNING (CWE-563): [#def662]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_tile_eco’
xevd-0.5.0/src_base/xevd.c:1418:17: warning[-Wunused-but-set-variable]: variable ‘tile_idx’ set but not used
# 1418 |     int         tile_idx;
#      |                 ^~~~~~~~
# 1416|       int         col_bd = 0;
# 1417|       int         lcu_cnt_in_tile = 0;
# 1418|->     int         tile_idx;
# 1419|   
# 1420|       xevd_assert(arg != NULL);

Error: COMPILER_WARNING (CWE-563): [#def663]
xevd-0.5.0/src_base/xevd.c:1473:18: warning[-Wunused-but-set-variable]: variable ‘tile’ set but not used
# 1473 |     XEVD_TILE  * tile;
#      |                  ^~~~
# 1471|       XEVD_CORE * core = (XEVD_CORE *)arg;
# 1472|       XEVD_CTX  * ctx = core->ctx;
# 1473|->     XEVD_TILE  * tile;
# 1474|   
# 1475|       int         ret;

Error: COMPILER_WARNING (CWE-563): [#def664]
xevd-0.5.0/src_base/xevd.c:1476:17: warning[-Wunused-but-set-variable]: variable ‘lcu_cnt_in_tile’ set but not used
# 1476 |     int         lcu_cnt_in_tile = 0;
#      |                 ^~~~~~~~~~~~~~~
# 1474|   
# 1475|       int         ret;
# 1476|->     int         lcu_cnt_in_tile = 0;
# 1477|       int         tile_idx;
# 1478|   

Error: COMPILER_WARNING (CWE-563): [#def665]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_ctu_row_rec_mt’
xevd-0.5.0/src_base/xevd.c:1477:17: warning[-Wunused-but-set-variable]: variable ‘tile_idx’ set but not used
# 1477 |     int         tile_idx;
#      |                 ^~~~~~~~
# 1475|       int         ret;
# 1476|       int         lcu_cnt_in_tile = 0;
# 1477|->     int         tile_idx;
# 1478|   
# 1479|       xevd_assert(arg != NULL);

Error: COMPILER_WARNING (CWE-563): [#def666]
xevd-0.5.0/src_base/xevd.c:1617:17: warning[-Wunused-variable]: unused variable ‘res’
# 1617 |     int         res = 0;
#      |                 ^~~
# 1615|   
# 1616|       int         ret;
# 1617|->     int         res = 0;
# 1618|       int         lcu_cnt_in_tile = 0;
# 1619|       int         col_bd = 0;

Error: COMPILER_WARNING (CWE-563): [#def667]
xevd-0.5.0/src_base/xevd.c:1618:17: warning[-Wunused-variable]: unused variable ‘lcu_cnt_in_tile’
# 1618 |     int         lcu_cnt_in_tile = 0;
#      |                 ^~~~~~~~~~~~~~~
# 1616|       int         ret;
# 1617|       int         res = 0;
# 1618|->     int         lcu_cnt_in_tile = 0;
# 1619|       int         col_bd = 0;
# 1620|       int         num_tiles_in_slice = 1;

Error: COMPILER_WARNING (CWE-563): [#def668]
xevd-0.5.0/src_base/xevd.c:1619:17: warning[-Wunused-variable]: unused variable ‘col_bd’
# 1619 |     int         col_bd = 0;
#      |                 ^~~~~~
# 1617|       int         res = 0;
# 1618|       int         lcu_cnt_in_tile = 0;
# 1619|->     int         col_bd = 0;
# 1620|       int         num_tiles_in_slice = 1;
# 1621|   

Error: COMPILER_WARNING (CWE-563): [#def669]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_dec_slice’
xevd-0.5.0/src_base/xevd.c:1620:17: warning[-Wunused-variable]: unused variable ‘num_tiles_in_slice’
# 1620 |     int         num_tiles_in_slice = 1;
#      |                 ^~~~~~~~~~~~~~~~~~
# 1618|       int         lcu_cnt_in_tile = 0;
# 1619|       int         col_bd = 0;
# 1620|->     int         num_tiles_in_slice = 1;
# 1621|   
# 1622|       bs   = &ctx->bs;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def670]
xevd-0.5.0/src_base/xevd.c:1674:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘*cu_data.ipm’
xevd-0.5.0/src_base/xevd.c:1684:5: enter_function: entry to ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1699:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1700:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1700:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1701:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1701:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1702:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1702:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1703:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1703:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1705:27: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1705:5: call_function: inlined call to ‘xevd_malloc_2d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1706:5: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1706:5: call_function: inlined call to ‘xevd_malloc_2d’ from ‘xevd_create_cu_data’
 branch_true: ...to here
xevd-0.5.0/src_base/xevd.c:1706:5: call_function: inlined call to ‘xevd_malloc_2d’ from ‘xevd_create_cu_data’
# 1672|           xevd_mset(*dst, 0, size_1d * sizeof(s8*));
# 1673|   
# 1674|->         (*dst)[0] = xevd_malloc_fast(size_1d * size_2d * type_size);
# 1675|           xevd_mset((*dst)[0], 0, size_1d * size_2d * type_size);
# 1676|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def671]
xevd-0.5.0/src_base/xevd.c:1674:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘*cu_data.mpm’
xevd-0.5.0/src_base/xevd.c:1684:5: enter_function: entry to ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1699:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1700:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1700:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1701:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1701:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1702:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1702:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1703:28: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1703:5: call_function: inlined call to ‘xevd_malloc_1d’ from ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1705:27: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1705:5: call_function: inlined call to ‘xevd_malloc_2d’ from ‘xevd_create_cu_data’
 branch_true: ...to here
xevd-0.5.0/src_base/xevd.c:1705:5: call_function: inlined call to ‘xevd_malloc_2d’ from ‘xevd_create_cu_data’
# 1672|           xevd_mset(*dst, 0, size_1d * sizeof(s8*));
# 1673|   
# 1674|->         (*dst)[0] = xevd_malloc_fast(size_1d * size_2d * type_size);
# 1675|           xevd_mset((*dst)[0], 0, size_1d * size_2d * type_size);
# 1676|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def672]
xevd-0.5.0/src_base/xevd.c:1674:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘*dst’
xevd-0.5.0/src_base/xevd.c:1671:16: acquire_memory: this call could return NULL
xevd-0.5.0/src_base/xevd.c:1674:9: danger: ‘malloc((long unsigned int)size_1d * 8)’ could be NULL: unchecked value from [(1)](sarif:/runs/0/results/3/codeFlows/0/threadFlows/0/locations/0)
# 1672|           xevd_mset(*dst, 0, size_1d * sizeof(s8*));
# 1673|   
# 1674|->         (*dst)[0] = xevd_malloc_fast(size_1d * size_2d * type_size);
# 1675|           xevd_mset((*dst)[0], 0, size_1d * size_2d * type_size);
# 1676|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def673]
xevd-0.5.0/src_base/xevd.c:1674:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘malloc((long unsigned int)size_1d * 8)’
xevd-0.5.0/src_base/xevd.c:1785:5: enter_function: entry to ‘xevd_dec_nalu’
xevd-0.5.0/src_base/xevd.c:1804:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1805:8: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1805:7: branch_true: following ‘true’ branch...
xevd-0.5.0/src_base/xevd.c:1808:9: branch_true: ...to here
xevd-0.5.0/src_base/xevd.c:1810:9: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:1812:23: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:1816:15: call_function: calling ‘sequence_init’ from ‘xevd_dec_nalu’
# 1672|           xevd_mset(*dst, 0, size_1d * sizeof(s8*));
# 1673|   
# 1674|->         (*dst)[0] = xevd_malloc_fast(size_1d * size_2d * type_size);
# 1675|           xevd_mset((*dst)[0], 0, size_1d * size_2d * type_size);
# 1676|   

Error: COMPILER_WARNING (CWE-563): [#def674]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_create_cu_data’
xevd-0.5.0/src_base/xevd.c:1688:18: warning[-Wunused-but-set-variable]: variable ‘size_16b’ set but not used
# 1688 |     int size_8b, size_16b, size_32b, cu_cnt, pixel_cnt;
#      |                  ^~~~~~~~
# 1686|       int i, j;
# 1687|       int cuw_scu, cuh_scu;
# 1688|->     int size_8b, size_16b, size_32b, cu_cnt, pixel_cnt;
# 1689|   
# 1690|       cuw_scu = 1 << log2_cuw;

Error: COMPILER_WARNING (CWE-563): [#def675]
xevd-0.5.0/src_base/xevd.c:1911:17: warning[-Wunused-variable]: unused variable ‘fitler_across_boundary’
# 1911 |             int fitler_across_boundary = 0;
#      |                 ^~~~~~~~~~~~~~~~~~~~~~
# 1909|           {
# 1910|   
# 1911|->             int fitler_across_boundary = 0;
# 1912|               int i, j;
# 1913|               int num_tiles_in_slice = ctx->num_tiles_in_slice;

Error: COMPILER_WARNING (CWE-563): [#def676]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_dec_nalu’
xevd-0.5.0/src_base/xevd.c:1913:17: warning[-Wunused-variable]: unused variable ‘num_tiles_in_slice’
# 1913 |             int num_tiles_in_slice = ctx->num_tiles_in_slice;
#      |                 ^~~~~~~~~~~~~~~~~~
# 1911|               int fitler_across_boundary = 0;
# 1912|               int i, j;
# 1913|->             int num_tiles_in_slice = ctx->num_tiles_in_slice;
# 1914|               int res = 0;
# 1915|               XEVD_CORE * core_mt;

Error: COMPILER_WARNING (CWE-563): [#def677]
xevd-0.5.0/src_base/xevd.c: scope_hint: In function ‘xevd_platform_init’
xevd-0.5.0/src_base/xevd.c:2084:33: warning[-Wunused-but-set-variable]: variable ‘support_avx’ set but not used
# 2084 |     int check_cpu, support_sse, support_avx, support_avx2;
#      |                                 ^~~~~~~~~~~
# 2082|   #else
# 2083|   #if X86_SSE
# 2084|->     int check_cpu, support_sse, support_avx, support_avx2;
# 2085|   
# 2086|       check_cpu = xevd_check_cpu_info();

Error: GCC_ANALYZER_WARNING (CWE-401): [#def678]
xevd-0.5.0/src_base/xevd.c:2169:11: warning[-Wanalyzer-malloc-leak]: leak of ‘ctx_alloc()’
xevd-0.5.0/src_base/xevd.c:2160:6: enter_function: entry to ‘xevd_create’
xevd-0.5.0/src_base/xevd.c:2165:11: call_function: calling ‘ctx_alloc’ from ‘xevd_create’
xevd-0.5.0/src_base/xevd.c:2165:11: return_function: returning to ‘xevd_create’ from ‘ctx_alloc’
xevd-0.5.0/src_base/xevd.c:2166:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:2167:5: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:2168:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd.c:2169:11: branch_false: ...to here
xevd-0.5.0/src_base/xevd.c:2169:11: danger: ‘ctx_alloc()’ leaks here; was allocated at [(4)](sarif:/runs/0/results/5/codeFlows/0/threadFlows/0/locations/3)
# 2167|       xevd_mcpy(&ctx->cdsc, cdsc, sizeof(XEVD_CDSC));
# 2168|       xevd_assert_gv(!(cdsc->threads > XEVD_MAX_TASK_CNT), ret, XEVD_ERR_THREAD_ALLOCATION, ERR);
# 2169|->     ret = xevd_init_thread_controller(&ctx->tc, cdsc->threads);
# 2170|       xevd_assert_g(XEVD_SUCCEEDED(ret), ERR);
# 2171|   

Error: COMPILER_WARNING (CWE-681): [#def679]
xevd-0.5.0/src_base/xevd_bsr.c: scope_hint: In function ‘xevd_bsr_read_se’
xevd-0.5.0/src_base/xevd_bsr.c:326:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
#  326 |     xevd_bsr_read_ue(bs, val);
#      |                          ^~~
#      |                          |
#      |                          s32 * {aka int *}
xevd-0.5.0/src_base/xevd_bsr.c:282:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘s32 *’ {aka ‘int *’}
#  282 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val)
#      |                                      ~~~~~~^~~
#  324|   {
#  325|       xevd_assert(bs != NULL);
#  326|->     xevd_bsr_read_ue(bs, val);
#  327|       *val = ((*val & 0x01) ? ((*val + 1) >> 1) : -(*val >> 1));
#  328|   }

Error: CPPCHECK_WARNING (CWE-758): [#def680]
xevd-0.5.0/src_base/xevd_df.c:379: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  377|           for (j = 0; j < w; j++)
#  378|           {
#  379|->             MCU_SET_COD(map_scu[j]);
#  380|           }
#  381|           map_scu += w_scu;

Error: CPPCHECK_WARNING (CWE-758): [#def681]
xevd-0.5.0/src_base/xevd_df.c:541: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  539|           for (j = 0; j < w; j++)
#  540|           {
#  541|->             MCU_SET_COD(map_scu[j]);
#  542|           }
#  543|           map_scu += w_scu;

Error: COMPILER_WARNING (CWE-563): [#def682]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_run_length_cc’
xevd-0.5.0/src_base/xevd_eco.c:357:33: warning[-Wunused-but-set-variable]: variable ‘prev_level’ set but not used
#  357 |     int            sign, level, prev_level, run, last_flag;
#      |                                 ^~~~~~~~~~
#  355|   {
#  356|       XEVD_SBAC_CTX *sbac_ctx;
#  357|->     int            sign, level, prev_level, run, last_flag;
#  358|       int            t0, scan_pos_offset, num_coeff, i, coef_cnt = 0;
#  359|       const u16     *scanp;

Error: COMPILER_WARNING (CWE-563): [#def683]
xevd-0.5.0/src_base/xevd_eco.c:607:17: warning[-Wunused-variable]: unused variable ‘log2_tuw’
#  607 |     int         log2_tuw = core->log2_cuw;
#      |                 ^~~~~~~~
#  605|       XEVD_BSR   *bs;
#  606|       int         b_no_cbf = 0;
#  607|->     int         log2_tuw = core->log2_cuw;
#  608|       int         log2_tuh = core->log2_cuh;
#  609|   

Error: COMPILER_WARNING (CWE-563): [#def684]
xevd-0.5.0/src_base/xevd_eco.c:608:17: warning[-Wunused-variable]: unused variable ‘log2_tuh’
#  608 |     int         log2_tuh = core->log2_cuh;
#      |                 ^~~~~~~~
#  606|       int         b_no_cbf = 0;
#  607|       int         log2_tuw = core->log2_cuw;
#  608|->     int         log2_tuh = core->log2_cuh;
#  609|   
#  610|   

Error: COMPILER_WARNING (CWE-563): [#def685]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_coef’
xevd-0.5.0/src_base/xevd_eco.c:628:8: warning[-Wunused-variable]: unused variable ‘is_intra’
#  628 |     u8 is_intra = (core->pred_mode == MODE_INTRA) ? 1 : 0;
#      |        ^~~~~~~~
#  626|       int cbf_all = 1;
#  627|   
#  628|->     u8 is_intra = (core->pred_mode == MODE_INTRA) ? 1 : 0;
#  629|   
#  630|       xevd_mset(core->is_coef, 0, sizeof(int) * N_C);

Error: COMPILER_WARNING (CWE-563): [#def686]
xevd-0.5.0/src_base/xevd_eco.c:1052:32: warning[-Wunused-variable]: unused variable ‘mvp_idx’
# 1052 |     int         ret, cuw, cuh, mvp_idx[REFP_NUM] = { 0, 0 };
#      |                                ^~~~~~~
# 1050|       XEVD_SBAC * sbac;
# 1051|       XEVD_BSR  * bs;
# 1052|->     int         ret, cuw, cuh, mvp_idx[REFP_NUM] = { 0, 0 };
# 1053|       int         direct_idx = -1;
# 1054|       int         REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };

Error: COMPILER_WARNING (CWE-563): [#def687]
xevd-0.5.0/src_base/xevd_eco.c:1053:17: warning[-Wunused-variable]: unused variable ‘direct_idx’
# 1053 |     int         direct_idx = -1;
#      |                 ^~~~~~~~~~
# 1051|       XEVD_BSR  * bs;
# 1052|       int         ret, cuw, cuh, mvp_idx[REFP_NUM] = { 0, 0 };
# 1053|->     int         direct_idx = -1;
# 1054|       int         REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };
# 1055|       u8          bi_idx = BI_NON;

Error: COMPILER_WARNING (CWE-563): [#def688]
xevd-0.5.0/src_base/xevd_eco.c:1054:17: warning[-Wunused-variable]: unused variable ‘REF_SET’
# 1054 |     int         REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };
#      |                 ^~~~~~~
# 1052|       int         ret, cuw, cuh, mvp_idx[REFP_NUM] = { 0, 0 };
# 1053|       int         direct_idx = -1;
# 1054|->     int         REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };
# 1055|       u8          bi_idx = BI_NON;
# 1056|   

Error: COMPILER_WARNING (CWE-563): [#def689]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_cu’
xevd-0.5.0/src_base/xevd_eco.c:1055:17: warning[-Wunused-variable]: unused variable ‘bi_idx’
# 1055 |     u8          bi_idx = BI_NON;
#      |                 ^~~~~~
# 1053|       int         direct_idx = -1;
# 1054|       int         REF_SET[3][XEVD_MAX_NUM_ACTIVE_REF_FRAME] = { {0,0,}, };
# 1055|->     u8          bi_idx = BI_NON;
# 1056|   
# 1057|       core->pred_mode = MODE_INTRA;

Error: COMPILER_WARNING (CWE-681): [#def690]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_nalu’
xevd-0.5.0/src_base/xevd_eco.c:1181:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1181 |     xevd_bsr_read(bs, &nalu->forbidden_zero_bit, 1);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_def.h:1199: included_from: Included from here.
xevd-0.5.0/src_base/xevd_eco.c:31: included_from: Included from here.
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1179|   {
# 1180|       //nalu->nal_unit_size = xevd_bsr_read(bs, 32);
# 1181|->     xevd_bsr_read(bs, &nalu->forbidden_zero_bit, 1);
# 1182|   
# 1183|       if (nalu->forbidden_zero_bit != 0)

Error: COMPILER_WARNING (CWE-681): [#def691]
xevd-0.5.0/src_base/xevd_eco.c:1189:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1189 |     xevd_bsr_read(bs, &nalu->nal_unit_type_plus1, 6);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1187|       }
# 1188|   
# 1189|->     xevd_bsr_read(bs, &nalu->nal_unit_type_plus1, 6);
# 1190|       xevd_bsr_read(bs, &nalu->nuh_temporal_id, 3);
# 1191|       xevd_bsr_read(bs, &nalu->nuh_reserved_zero_5bits, 5);

Error: COMPILER_WARNING (CWE-681): [#def692]
xevd-0.5.0/src_base/xevd_eco.c:1190:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1190 |     xevd_bsr_read(bs, &nalu->nuh_temporal_id, 3);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1188|   
# 1189|       xevd_bsr_read(bs, &nalu->nal_unit_type_plus1, 6);
# 1190|->     xevd_bsr_read(bs, &nalu->nuh_temporal_id, 3);
# 1191|       xevd_bsr_read(bs, &nalu->nuh_reserved_zero_5bits, 5);
# 1192|   

Error: COMPILER_WARNING (CWE-681): [#def693]
xevd-0.5.0/src_base/xevd_eco.c:1191:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1191 |     xevd_bsr_read(bs, &nalu->nuh_reserved_zero_5bits, 5);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1189|       xevd_bsr_read(bs, &nalu->nal_unit_type_plus1, 6);
# 1190|       xevd_bsr_read(bs, &nalu->nuh_temporal_id, 3);
# 1191|->     xevd_bsr_read(bs, &nalu->nuh_reserved_zero_5bits, 5);
# 1192|   
# 1193|       if (nalu->nuh_reserved_zero_5bits != 0)

Error: COMPILER_WARNING (CWE-681): [#def694]
xevd-0.5.0/src_base/xevd_eco.c:1199:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1199 |     xevd_bsr_read(bs, &nalu->nuh_extension_flag, 1);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1197|       }
# 1198|   
# 1199|->     xevd_bsr_read(bs, &nalu->nuh_extension_flag, 1);
# 1200|   
# 1201|       if (nalu->nuh_extension_flag != 0)

Error: COMPILER_WARNING (CWE-681): [#def695]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_hrd_parameters’
xevd-0.5.0/src_base/xevd_eco.c:1212:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1212 |     xevd_bsr_read_ue(bs, &hrd->cpb_cnt_minus1);
#      |                          ^~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1210|   
# 1211|   int xevd_eco_hrd_parameters(XEVD_BSR * bs, XEVD_HRD * hrd) {
# 1212|->     xevd_bsr_read_ue(bs, &hrd->cpb_cnt_minus1);
# 1213|       xevd_bsr_read(bs, &hrd->bit_rate_scale, 4);
# 1214|       xevd_bsr_read(bs, &hrd->cpb_size_scale, 4);

Error: COMPILER_WARNING (CWE-681): [#def696]
xevd-0.5.0/src_base/xevd_eco.c:1213:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1213 |     xevd_bsr_read(bs, &hrd->bit_rate_scale, 4);
#      |                       ^~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1211|   int xevd_eco_hrd_parameters(XEVD_BSR * bs, XEVD_HRD * hrd) {
# 1212|       xevd_bsr_read_ue(bs, &hrd->cpb_cnt_minus1);
# 1213|->     xevd_bsr_read(bs, &hrd->bit_rate_scale, 4);
# 1214|       xevd_bsr_read(bs, &hrd->cpb_size_scale, 4);
# 1215|       for (int SchedSelIdx = 0; SchedSelIdx <= hrd->cpb_cnt_minus1; SchedSelIdx++)

Error: COMPILER_WARNING (CWE-681): [#def697]
xevd-0.5.0/src_base/xevd_eco.c:1214:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1214 |     xevd_bsr_read(bs, &hrd->cpb_size_scale, 4);
#      |                       ^~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1212|       xevd_bsr_read_ue(bs, &hrd->cpb_cnt_minus1);
# 1213|       xevd_bsr_read(bs, &hrd->bit_rate_scale, 4);
# 1214|->     xevd_bsr_read(bs, &hrd->cpb_size_scale, 4);
# 1215|       for (int SchedSelIdx = 0; SchedSelIdx <= hrd->cpb_cnt_minus1; SchedSelIdx++)
# 1216|       {

Error: COMPILER_WARNING (CWE-681): [#def698]
xevd-0.5.0/src_base/xevd_eco.c:1217:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1217 |         xevd_bsr_read_ue(bs, &hrd->bit_rate_value_minus1[SchedSelIdx]);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1215|       for (int SchedSelIdx = 0; SchedSelIdx <= hrd->cpb_cnt_minus1; SchedSelIdx++)
# 1216|       {
# 1217|->         xevd_bsr_read_ue(bs, &hrd->bit_rate_value_minus1[SchedSelIdx]);
# 1218|           xevd_bsr_read_ue(bs, &hrd->cpb_size_value_minus1[SchedSelIdx]);
# 1219|           xevd_bsr_read1(bs, &hrd->cbr_flag[SchedSelIdx]);

Error: COMPILER_WARNING (CWE-681): [#def699]
xevd-0.5.0/src_base/xevd_eco.c:1218:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1218 |         xevd_bsr_read_ue(bs, &hrd->cpb_size_value_minus1[SchedSelIdx]);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1216|       {
# 1217|           xevd_bsr_read_ue(bs, &hrd->bit_rate_value_minus1[SchedSelIdx]);
# 1218|->         xevd_bsr_read_ue(bs, &hrd->cpb_size_value_minus1[SchedSelIdx]);
# 1219|           xevd_bsr_read1(bs, &hrd->cbr_flag[SchedSelIdx]);
# 1220|       }

Error: COMPILER_WARNING (CWE-681): [#def700]
xevd-0.5.0/src_base/xevd_eco.c:1219:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1219 |         xevd_bsr_read1(bs, &hrd->cbr_flag[SchedSelIdx]);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1217|           xevd_bsr_read_ue(bs, &hrd->bit_rate_value_minus1[SchedSelIdx]);
# 1218|           xevd_bsr_read_ue(bs, &hrd->cpb_size_value_minus1[SchedSelIdx]);
# 1219|->         xevd_bsr_read1(bs, &hrd->cbr_flag[SchedSelIdx]);
# 1220|       }
# 1221|       xevd_bsr_read(bs, &hrd->initial_cpb_removal_delay_length_minus1, 5);

Error: COMPILER_WARNING (CWE-681): [#def701]
xevd-0.5.0/src_base/xevd_eco.c:1221:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1221 |     xevd_bsr_read(bs, &hrd->initial_cpb_removal_delay_length_minus1, 5);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1219|           xevd_bsr_read1(bs, &hrd->cbr_flag[SchedSelIdx]);
# 1220|       }
# 1221|->     xevd_bsr_read(bs, &hrd->initial_cpb_removal_delay_length_minus1, 5);
# 1222|       xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
# 1223|       xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);

Error: COMPILER_WARNING (CWE-681): [#def702]
xevd-0.5.0/src_base/xevd_eco.c:1222:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1222 |     xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1220|       }
# 1221|       xevd_bsr_read(bs, &hrd->initial_cpb_removal_delay_length_minus1, 5);
# 1222|->     xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
# 1223|       xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
# 1224|       xevd_bsr_read(bs, &hrd->time_offset_length, 5);

Error: COMPILER_WARNING (CWE-681): [#def703]
xevd-0.5.0/src_base/xevd_eco.c:1223:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1223 |     xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1221|       xevd_bsr_read(bs, &hrd->initial_cpb_removal_delay_length_minus1, 5);
# 1222|       xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
# 1223|->     xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
# 1224|       xevd_bsr_read(bs, &hrd->time_offset_length, 5);
# 1225|   

Error: COMPILER_WARNING (CWE-681): [#def704]
xevd-0.5.0/src_base/xevd_eco.c:1224:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1224 |     xevd_bsr_read(bs, &hrd->time_offset_length, 5);
#      |                       ^~~~~~~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1222|       xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
# 1223|       xevd_bsr_read(bs, &hrd->cpb_removal_delay_length_minus1, 5);
# 1224|->     xevd_bsr_read(bs, &hrd->time_offset_length, 5);
# 1225|   
# 1226|       return XEVD_OK;

Error: COMPILER_WARNING (CWE-681): [#def705]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_vui’
xevd-0.5.0/src_base/xevd_eco.c:1231:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1231 |     xevd_bsr_read1(bs, &vui->aspect_ratio_info_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1229|   int xevd_eco_vui(XEVD_BSR * bs, XEVD_VUI * vui)
# 1230|   {
# 1231|->     xevd_bsr_read1(bs, &vui->aspect_ratio_info_present_flag);
# 1232|       if (vui->aspect_ratio_info_present_flag)
# 1233|       {

Error: COMPILER_WARNING (CWE-681): [#def706]
xevd-0.5.0/src_base/xevd_eco.c:1234:27: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1234 |         xevd_bsr_read(bs, &vui->aspect_ratio_idc, 8);
#      |                           ^~~~~~~~~~~~~~~~~~~~~~
#      |                           |
#      |                           int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1232|       if (vui->aspect_ratio_info_present_flag)
# 1233|       {
# 1234|->         xevd_bsr_read(bs, &vui->aspect_ratio_idc, 8);
# 1235|           if (vui->aspect_ratio_idc == EXTENDED_SAR)
# 1236|           {

Error: COMPILER_WARNING (CWE-681): [#def707]
xevd-0.5.0/src_base/xevd_eco.c:1237:31: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1237 |             xevd_bsr_read(bs, &vui->sar_width, 16);
#      |                               ^~~~~~~~~~~~~~~
#      |                               |
#      |                               int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1235|           if (vui->aspect_ratio_idc == EXTENDED_SAR)
# 1236|           {
# 1237|->             xevd_bsr_read(bs, &vui->sar_width, 16);
# 1238|               xevd_bsr_read(bs, &vui->sar_height, 16);
# 1239|           }

Error: COMPILER_WARNING (CWE-681): [#def708]
xevd-0.5.0/src_base/xevd_eco.c:1238:31: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1238 |             xevd_bsr_read(bs, &vui->sar_height, 16);
#      |                               ^~~~~~~~~~~~~~~~
#      |                               |
#      |                               int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1236|           {
# 1237|               xevd_bsr_read(bs, &vui->sar_width, 16);
# 1238|->             xevd_bsr_read(bs, &vui->sar_height, 16);
# 1239|           }
# 1240|       }

Error: COMPILER_WARNING (CWE-681): [#def709]
xevd-0.5.0/src_base/xevd_eco.c:1241:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1241 |     xevd_bsr_read1(bs, &vui->overscan_info_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1239|           }
# 1240|       }
# 1241|->     xevd_bsr_read1(bs, &vui->overscan_info_present_flag);
# 1242|       if (vui->overscan_info_present_flag)
# 1243|       {

Error: COMPILER_WARNING (CWE-681): [#def710]
xevd-0.5.0/src_base/xevd_eco.c:1244:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1244 |         xevd_bsr_read1(bs, &vui->overscan_appropriate_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1242|       if (vui->overscan_info_present_flag)
# 1243|       {
# 1244|->         xevd_bsr_read1(bs, &vui->overscan_appropriate_flag);
# 1245|       }
# 1246|       xevd_bsr_read1(bs, &vui->video_signal_type_present_flag);

Error: COMPILER_WARNING (CWE-681): [#def711]
xevd-0.5.0/src_base/xevd_eco.c:1246:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1246 |     xevd_bsr_read1(bs, &vui->video_signal_type_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1244|           xevd_bsr_read1(bs, &vui->overscan_appropriate_flag);
# 1245|       }
# 1246|->     xevd_bsr_read1(bs, &vui->video_signal_type_present_flag);
# 1247|       if (vui->video_signal_type_present_flag)
# 1248|       {

Error: COMPILER_WARNING (CWE-681): [#def712]
xevd-0.5.0/src_base/xevd_eco.c:1249:27: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1249 |         xevd_bsr_read(bs, &vui->video_format, 3);
#      |                           ^~~~~~~~~~~~~~~~~~
#      |                           |
#      |                           int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1247|       if (vui->video_signal_type_present_flag)
# 1248|       {
# 1249|->         xevd_bsr_read(bs, &vui->video_format, 3);
# 1250|           xevd_bsr_read1(bs, &vui->video_full_range_flag);
# 1251|           xevd_bsr_read1(bs, &vui->colour_description_present_flag);

Error: COMPILER_WARNING (CWE-681): [#def713]
xevd-0.5.0/src_base/xevd_eco.c:1250:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1250 |         xevd_bsr_read1(bs, &vui->video_full_range_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1248|       {
# 1249|           xevd_bsr_read(bs, &vui->video_format, 3);
# 1250|->         xevd_bsr_read1(bs, &vui->video_full_range_flag);
# 1251|           xevd_bsr_read1(bs, &vui->colour_description_present_flag);
# 1252|           if (vui->colour_description_present_flag)

Error: COMPILER_WARNING (CWE-681): [#def714]
xevd-0.5.0/src_base/xevd_eco.c:1251:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1251 |         xevd_bsr_read1(bs, &vui->colour_description_present_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1249|           xevd_bsr_read(bs, &vui->video_format, 3);
# 1250|           xevd_bsr_read1(bs, &vui->video_full_range_flag);
# 1251|->         xevd_bsr_read1(bs, &vui->colour_description_present_flag);
# 1252|           if (vui->colour_description_present_flag)
# 1253|           {

Error: COMPILER_WARNING (CWE-681): [#def715]
xevd-0.5.0/src_base/xevd_eco.c:1254:31: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1254 |             xevd_bsr_read(bs, &vui->colour_primaries, 8);
#      |                               ^~~~~~~~~~~~~~~~~~~~~~
#      |                               |
#      |                               int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1252|           if (vui->colour_description_present_flag)
# 1253|           {
# 1254|->             xevd_bsr_read(bs, &vui->colour_primaries, 8);
# 1255|               xevd_bsr_read(bs, &vui->transfer_characteristics, 8);
# 1256|               xevd_bsr_read(bs, &vui->matrix_coefficients, 8);

Error: COMPILER_WARNING (CWE-681): [#def716]
xevd-0.5.0/src_base/xevd_eco.c:1255:31: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1255 |             xevd_bsr_read(bs, &vui->transfer_characteristics, 8);
#      |                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                               |
#      |                               int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1253|           {
# 1254|               xevd_bsr_read(bs, &vui->colour_primaries, 8);
# 1255|->             xevd_bsr_read(bs, &vui->transfer_characteristics, 8);
# 1256|               xevd_bsr_read(bs, &vui->matrix_coefficients, 8);
# 1257|           }

Error: COMPILER_WARNING (CWE-681): [#def717]
xevd-0.5.0/src_base/xevd_eco.c:1256:31: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1256 |             xevd_bsr_read(bs, &vui->matrix_coefficients, 8);
#      |                               ^~~~~~~~~~~~~~~~~~~~~~~~~
#      |                               |
#      |                               int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1254|               xevd_bsr_read(bs, &vui->colour_primaries, 8);
# 1255|               xevd_bsr_read(bs, &vui->transfer_characteristics, 8);
# 1256|->             xevd_bsr_read(bs, &vui->matrix_coefficients, 8);
# 1257|           }
# 1258|       }

Error: COMPILER_WARNING (CWE-681): [#def718]
xevd-0.5.0/src_base/xevd_eco.c:1259:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1259 |     xevd_bsr_read1(bs, &vui->chroma_loc_info_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1257|           }
# 1258|       }
# 1259|->     xevd_bsr_read1(bs, &vui->chroma_loc_info_present_flag);
# 1260|       if (vui->chroma_loc_info_present_flag)
# 1261|       {

Error: COMPILER_WARNING (CWE-681): [#def719]
xevd-0.5.0/src_base/xevd_eco.c:1262:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1262 |         xevd_bsr_read_ue(bs, &vui->chroma_sample_loc_type_top_field);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1260|       if (vui->chroma_loc_info_present_flag)
# 1261|       {
# 1262|->         xevd_bsr_read_ue(bs, &vui->chroma_sample_loc_type_top_field);
# 1263|           xevd_bsr_read_ue(bs, &vui->chroma_sample_loc_type_bottom_field);
# 1264|       }

Error: COMPILER_WARNING (CWE-681): [#def720]
xevd-0.5.0/src_base/xevd_eco.c:1263:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1263 |         xevd_bsr_read_ue(bs, &vui->chroma_sample_loc_type_bottom_field);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1261|       {
# 1262|           xevd_bsr_read_ue(bs, &vui->chroma_sample_loc_type_top_field);
# 1263|->         xevd_bsr_read_ue(bs, &vui->chroma_sample_loc_type_bottom_field);
# 1264|       }
# 1265|       xevd_bsr_read1(bs, &vui->neutral_chroma_indication_flag);

Error: COMPILER_WARNING (CWE-681): [#def721]
xevd-0.5.0/src_base/xevd_eco.c:1265:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1265 |     xevd_bsr_read1(bs, &vui->neutral_chroma_indication_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1263|           xevd_bsr_read_ue(bs, &vui->chroma_sample_loc_type_bottom_field);
# 1264|       }
# 1265|->     xevd_bsr_read1(bs, &vui->neutral_chroma_indication_flag);
# 1266|   
# 1267|       xevd_bsr_read1(bs, &vui->field_seq_flag);

Error: COMPILER_WARNING (CWE-681): [#def722]
xevd-0.5.0/src_base/xevd_eco.c:1267:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1267 |     xevd_bsr_read1(bs, &vui->field_seq_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1265|       xevd_bsr_read1(bs, &vui->neutral_chroma_indication_flag);
# 1266|   
# 1267|->     xevd_bsr_read1(bs, &vui->field_seq_flag);
# 1268|   
# 1269|       xevd_bsr_read1(bs, &vui->timing_info_present_flag);

Error: COMPILER_WARNING (CWE-681): [#def723]
xevd-0.5.0/src_base/xevd_eco.c:1269:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1269 |     xevd_bsr_read1(bs, &vui->timing_info_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1267|       xevd_bsr_read1(bs, &vui->field_seq_flag);
# 1268|   
# 1269|->     xevd_bsr_read1(bs, &vui->timing_info_present_flag);
# 1270|       if (vui->timing_info_present_flag)
# 1271|       {

Error: COMPILER_WARNING (CWE-681): [#def724]
xevd-0.5.0/src_base/xevd_eco.c:1272:27: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1272 |         xevd_bsr_read(bs, &vui->num_units_in_tick, 32);
#      |                           ^~~~~~~~~~~~~~~~~~~~~~~
#      |                           |
#      |                           int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1270|       if (vui->timing_info_present_flag)
# 1271|       {
# 1272|->         xevd_bsr_read(bs, &vui->num_units_in_tick, 32);
# 1273|           xevd_bsr_read(bs, &vui->time_scale, 32);
# 1274|           xevd_bsr_read1(bs, &vui->fixed_pic_rate_flag);

Error: COMPILER_WARNING (CWE-681): [#def725]
xevd-0.5.0/src_base/xevd_eco.c:1273:27: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1273 |         xevd_bsr_read(bs, &vui->time_scale, 32);
#      |                           ^~~~~~~~~~~~~~~~
#      |                           |
#      |                           int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1271|       {
# 1272|           xevd_bsr_read(bs, &vui->num_units_in_tick, 32);
# 1273|->         xevd_bsr_read(bs, &vui->time_scale, 32);
# 1274|           xevd_bsr_read1(bs, &vui->fixed_pic_rate_flag);
# 1275|       }

Error: COMPILER_WARNING (CWE-681): [#def726]
xevd-0.5.0/src_base/xevd_eco.c:1274:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1274 |         xevd_bsr_read1(bs, &vui->fixed_pic_rate_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1272|           xevd_bsr_read(bs, &vui->num_units_in_tick, 32);
# 1273|           xevd_bsr_read(bs, &vui->time_scale, 32);
# 1274|->         xevd_bsr_read1(bs, &vui->fixed_pic_rate_flag);
# 1275|       }
# 1276|       xevd_bsr_read1(bs, &vui->nal_hrd_parameters_present_flag);

Error: COMPILER_WARNING (CWE-681): [#def727]
xevd-0.5.0/src_base/xevd_eco.c:1276:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1276 |     xevd_bsr_read1(bs, &vui->nal_hrd_parameters_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1274|           xevd_bsr_read1(bs, &vui->fixed_pic_rate_flag);
# 1275|       }
# 1276|->     xevd_bsr_read1(bs, &vui->nal_hrd_parameters_present_flag);
# 1277|       if (vui->nal_hrd_parameters_present_flag)
# 1278|       {

Error: COMPILER_WARNING (CWE-681): [#def728]
xevd-0.5.0/src_base/xevd_eco.c:1281:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1281 |     xevd_bsr_read1(bs, &vui->vcl_hrd_parameters_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1279|           xevd_eco_hrd_parameters(bs, &vui->hrd_parameters);
# 1280|       }
# 1281|->     xevd_bsr_read1(bs, &vui->vcl_hrd_parameters_present_flag);
# 1282|       if (vui->vcl_hrd_parameters_present_flag)
# 1283|       {

Error: COMPILER_WARNING (CWE-681): [#def729]
xevd-0.5.0/src_base/xevd_eco.c:1288:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1288 |         xevd_bsr_read1(bs, &vui->low_delay_hrd_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1286|       if (vui->nal_hrd_parameters_present_flag || vui->vcl_hrd_parameters_present_flag)
# 1287|       {
# 1288|->         xevd_bsr_read1(bs, &vui->low_delay_hrd_flag);
# 1289|       }
# 1290|       xevd_bsr_read1(bs, &vui->pic_struct_present_flag);

Error: COMPILER_WARNING (CWE-681): [#def730]
xevd-0.5.0/src_base/xevd_eco.c:1290:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1290 |     xevd_bsr_read1(bs, &vui->pic_struct_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1288|           xevd_bsr_read1(bs, &vui->low_delay_hrd_flag);
# 1289|       }
# 1290|->     xevd_bsr_read1(bs, &vui->pic_struct_present_flag);
# 1291|       xevd_bsr_read1(bs, &vui->bitstream_restriction_flag);
# 1292|       if (vui->bitstream_restriction_flag) {

Error: COMPILER_WARNING (CWE-681): [#def731]
xevd-0.5.0/src_base/xevd_eco.c:1291:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1291 |     xevd_bsr_read1(bs, &vui->bitstream_restriction_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1289|       }
# 1290|       xevd_bsr_read1(bs, &vui->pic_struct_present_flag);
# 1291|->     xevd_bsr_read1(bs, &vui->bitstream_restriction_flag);
# 1292|       if (vui->bitstream_restriction_flag) {
# 1293|           xevd_bsr_read1(bs, &vui->motion_vectors_over_pic_boundaries_flag);

Error: COMPILER_WARNING (CWE-681): [#def732]
xevd-0.5.0/src_base/xevd_eco.c:1293:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1293 |         xevd_bsr_read1(bs, &vui->motion_vectors_over_pic_boundaries_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1291|       xevd_bsr_read1(bs, &vui->bitstream_restriction_flag);
# 1292|       if (vui->bitstream_restriction_flag) {
# 1293|->         xevd_bsr_read1(bs, &vui->motion_vectors_over_pic_boundaries_flag);
# 1294|           xevd_bsr_read_ue(bs, &vui->max_bytes_per_pic_denom);
# 1295|           xevd_bsr_read_ue(bs, &vui->max_bits_per_mb_denom);

Error: COMPILER_WARNING (CWE-681): [#def733]
xevd-0.5.0/src_base/xevd_eco.c:1294:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1294 |         xevd_bsr_read_ue(bs, &vui->max_bytes_per_pic_denom);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1292|       if (vui->bitstream_restriction_flag) {
# 1293|           xevd_bsr_read1(bs, &vui->motion_vectors_over_pic_boundaries_flag);
# 1294|->         xevd_bsr_read_ue(bs, &vui->max_bytes_per_pic_denom);
# 1295|           xevd_bsr_read_ue(bs, &vui->max_bits_per_mb_denom);
# 1296|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_horizontal);

Error: COMPILER_WARNING (CWE-681): [#def734]
xevd-0.5.0/src_base/xevd_eco.c:1295:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1295 |         xevd_bsr_read_ue(bs, &vui->max_bits_per_mb_denom);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1293|           xevd_bsr_read1(bs, &vui->motion_vectors_over_pic_boundaries_flag);
# 1294|           xevd_bsr_read_ue(bs, &vui->max_bytes_per_pic_denom);
# 1295|->         xevd_bsr_read_ue(bs, &vui->max_bits_per_mb_denom);
# 1296|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_horizontal);
# 1297|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_vertical);

Error: COMPILER_WARNING (CWE-681): [#def735]
xevd-0.5.0/src_base/xevd_eco.c:1296:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1296 |         xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_horizontal);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1294|           xevd_bsr_read_ue(bs, &vui->max_bytes_per_pic_denom);
# 1295|           xevd_bsr_read_ue(bs, &vui->max_bits_per_mb_denom);
# 1296|->         xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_horizontal);
# 1297|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_vertical);
# 1298|           xevd_bsr_read_ue(bs, &vui->num_reorder_pics);

Error: COMPILER_WARNING (CWE-681): [#def736]
xevd-0.5.0/src_base/xevd_eco.c:1297:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1297 |         xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_vertical);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1295|           xevd_bsr_read_ue(bs, &vui->max_bits_per_mb_denom);
# 1296|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_horizontal);
# 1297|->         xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_vertical);
# 1298|           xevd_bsr_read_ue(bs, &vui->num_reorder_pics);
# 1299|           xevd_bsr_read_ue(bs, &vui->max_dec_pic_buffering);

Error: COMPILER_WARNING (CWE-681): [#def737]
xevd-0.5.0/src_base/xevd_eco.c:1298:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1298 |         xevd_bsr_read_ue(bs, &vui->num_reorder_pics);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1296|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_horizontal);
# 1297|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_vertical);
# 1298|->         xevd_bsr_read_ue(bs, &vui->num_reorder_pics);
# 1299|           xevd_bsr_read_ue(bs, &vui->max_dec_pic_buffering);
# 1300|       }

Error: COMPILER_WARNING (CWE-681): [#def738]
xevd-0.5.0/src_base/xevd_eco.c:1299:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1299 |         xevd_bsr_read_ue(bs, &vui->max_dec_pic_buffering);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1297|           xevd_bsr_read_ue(bs, &vui->log2_max_mv_length_vertical);
# 1298|           xevd_bsr_read_ue(bs, &vui->num_reorder_pics);
# 1299|->         xevd_bsr_read_ue(bs, &vui->max_dec_pic_buffering);
# 1300|       }
# 1301|   

Error: COMPILER_WARNING (CWE-681): [#def739]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_sps’
xevd-0.5.0/src_base/xevd_eco.c:1311:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1311 |     xevd_bsr_read_ue(bs, &sps->sps_seq_parameter_set_id);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1309|       XEVD_TRACE_STR("************ SPS Start ************\n");
# 1310|   #endif
# 1311|->     xevd_bsr_read_ue(bs, &sps->sps_seq_parameter_set_id);
# 1312|       xevd_bsr_read(bs, &sps->profile_idc, 8);
# 1313|       xevd_assert_rv((sps->profile_idc == PROFILE_BASELINE || sps->profile_idc == PROFILE_STILL_PIC_BASELINE) , XEVD_ERR);

Error: COMPILER_WARNING (CWE-681): [#def740]
xevd-0.5.0/src_base/xevd_eco.c:1312:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1312 |     xevd_bsr_read(bs, &sps->profile_idc, 8);
#      |                       ^~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1310|   #endif
# 1311|       xevd_bsr_read_ue(bs, &sps->sps_seq_parameter_set_id);
# 1312|->     xevd_bsr_read(bs, &sps->profile_idc, 8);
# 1313|       xevd_assert_rv((sps->profile_idc == PROFILE_BASELINE || sps->profile_idc == PROFILE_STILL_PIC_BASELINE) , XEVD_ERR);
# 1314|       xevd_bsr_read(bs, &sps->level_idc, 8);

Error: COMPILER_WARNING (CWE-681): [#def741]
xevd-0.5.0/src_base/xevd_eco.c:1314:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1314 |     xevd_bsr_read(bs, &sps->level_idc, 8);
#      |                       ^~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1312|       xevd_bsr_read(bs, &sps->profile_idc, 8);
# 1313|       xevd_assert_rv((sps->profile_idc == PROFILE_BASELINE || sps->profile_idc == PROFILE_STILL_PIC_BASELINE) , XEVD_ERR);
# 1314|->     xevd_bsr_read(bs, &sps->level_idc, 8);
# 1315|       xevd_bsr_read(bs, &sps->toolset_idc_h, 32);
# 1316|       xevd_bsr_read(bs, &sps->toolset_idc_l, 32);

Error: COMPILER_WARNING (CWE-681): [#def742]
xevd-0.5.0/src_base/xevd_eco.c:1315:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1315 |     xevd_bsr_read(bs, &sps->toolset_idc_h, 32);
#      |                       ^~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1313|       xevd_assert_rv((sps->profile_idc == PROFILE_BASELINE || sps->profile_idc == PROFILE_STILL_PIC_BASELINE) , XEVD_ERR);
# 1314|       xevd_bsr_read(bs, &sps->level_idc, 8);
# 1315|->     xevd_bsr_read(bs, &sps->toolset_idc_h, 32);
# 1316|       xevd_bsr_read(bs, &sps->toolset_idc_l, 32);
# 1317|       xevd_bsr_read_ue(bs, &sps->chroma_format_idc);

Error: COMPILER_WARNING (CWE-681): [#def743]
xevd-0.5.0/src_base/xevd_eco.c:1316:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1316 |     xevd_bsr_read(bs, &sps->toolset_idc_l, 32);
#      |                       ^~~~~~~~~~~~~~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1314|       xevd_bsr_read(bs, &sps->level_idc, 8);
# 1315|       xevd_bsr_read(bs, &sps->toolset_idc_h, 32);
# 1316|->     xevd_bsr_read(bs, &sps->toolset_idc_l, 32);
# 1317|       xevd_bsr_read_ue(bs, &sps->chroma_format_idc);
# 1318|       xevd_bsr_read_ue(bs, &sps->pic_width_in_luma_samples);

Error: COMPILER_WARNING (CWE-681): [#def744]
xevd-0.5.0/src_base/xevd_eco.c:1317:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1317 |     xevd_bsr_read_ue(bs, &sps->chroma_format_idc);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1315|       xevd_bsr_read(bs, &sps->toolset_idc_h, 32);
# 1316|       xevd_bsr_read(bs, &sps->toolset_idc_l, 32);
# 1317|->     xevd_bsr_read_ue(bs, &sps->chroma_format_idc);
# 1318|       xevd_bsr_read_ue(bs, &sps->pic_width_in_luma_samples);
# 1319|       xevd_bsr_read_ue(bs, &sps->pic_height_in_luma_samples);

Error: COMPILER_WARNING (CWE-681): [#def745]
xevd-0.5.0/src_base/xevd_eco.c:1320:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1320 |     xevd_bsr_read_ue(bs, &sps->bit_depth_luma_minus8);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1318|       xevd_bsr_read_ue(bs, &sps->pic_width_in_luma_samples);
# 1319|       xevd_bsr_read_ue(bs, &sps->pic_height_in_luma_samples);
# 1320|->     xevd_bsr_read_ue(bs, &sps->bit_depth_luma_minus8);
# 1321|       xevd_bsr_read_ue(bs, &sps->bit_depth_chroma_minus8);
# 1322|       xevd_bsr_read1(bs, &sps->sps_btt_flag);

Error: COMPILER_WARNING (CWE-681): [#def746]
xevd-0.5.0/src_base/xevd_eco.c:1321:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1321 |     xevd_bsr_read_ue(bs, &sps->bit_depth_chroma_minus8);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1319|       xevd_bsr_read_ue(bs, &sps->pic_height_in_luma_samples);
# 1320|       xevd_bsr_read_ue(bs, &sps->bit_depth_luma_minus8);
# 1321|->     xevd_bsr_read_ue(bs, &sps->bit_depth_chroma_minus8);
# 1322|       xevd_bsr_read1(bs, &sps->sps_btt_flag);
# 1323|       xevd_bsr_read1(bs, &sps->sps_suco_flag);

Error: COMPILER_WARNING (CWE-681): [#def747]
xevd-0.5.0/src_base/xevd_eco.c:1322:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1322 |     xevd_bsr_read1(bs, &sps->sps_btt_flag);
#      |                        ^~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1320|       xevd_bsr_read_ue(bs, &sps->bit_depth_luma_minus8);
# 1321|       xevd_bsr_read_ue(bs, &sps->bit_depth_chroma_minus8);
# 1322|->     xevd_bsr_read1(bs, &sps->sps_btt_flag);
# 1323|       xevd_bsr_read1(bs, &sps->sps_suco_flag);
# 1324|       xevd_bsr_read1(bs, &sps->tool_admvp);

Error: COMPILER_WARNING (CWE-681): [#def748]
xevd-0.5.0/src_base/xevd_eco.c:1323:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1323 |     xevd_bsr_read1(bs, &sps->sps_suco_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1321|       xevd_bsr_read_ue(bs, &sps->bit_depth_chroma_minus8);
# 1322|       xevd_bsr_read1(bs, &sps->sps_btt_flag);
# 1323|->     xevd_bsr_read1(bs, &sps->sps_suco_flag);
# 1324|       xevd_bsr_read1(bs, &sps->tool_admvp);
# 1325|       xevd_bsr_read1(bs, &sps->tool_eipd);

Error: COMPILER_WARNING (CWE-681): [#def749]
xevd-0.5.0/src_base/xevd_eco.c:1324:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1324 |     xevd_bsr_read1(bs, &sps->tool_admvp);
#      |                        ^~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1322|       xevd_bsr_read1(bs, &sps->sps_btt_flag);
# 1323|       xevd_bsr_read1(bs, &sps->sps_suco_flag);
# 1324|->     xevd_bsr_read1(bs, &sps->tool_admvp);
# 1325|       xevd_bsr_read1(bs, &sps->tool_eipd);
# 1326|       xevd_bsr_read1(bs, &sps->tool_cm_init);

Error: COMPILER_WARNING (CWE-681): [#def750]
xevd-0.5.0/src_base/xevd_eco.c:1325:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1325 |     xevd_bsr_read1(bs, &sps->tool_eipd);
#      |                        ^~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1323|       xevd_bsr_read1(bs, &sps->sps_suco_flag);
# 1324|       xevd_bsr_read1(bs, &sps->tool_admvp);
# 1325|->     xevd_bsr_read1(bs, &sps->tool_eipd);
# 1326|       xevd_bsr_read1(bs, &sps->tool_cm_init);
# 1327|       xevd_bsr_read1(bs, &sps->tool_iqt);

Error: COMPILER_WARNING (CWE-681): [#def751]
xevd-0.5.0/src_base/xevd_eco.c:1326:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1326 |     xevd_bsr_read1(bs, &sps->tool_cm_init);
#      |                        ^~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1324|       xevd_bsr_read1(bs, &sps->tool_admvp);
# 1325|       xevd_bsr_read1(bs, &sps->tool_eipd);
# 1326|->     xevd_bsr_read1(bs, &sps->tool_cm_init);
# 1327|       xevd_bsr_read1(bs, &sps->tool_iqt);
# 1328|       xevd_bsr_read1(bs, &sps->tool_addb);

Error: COMPILER_WARNING (CWE-681): [#def752]
xevd-0.5.0/src_base/xevd_eco.c:1327:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1327 |     xevd_bsr_read1(bs, &sps->tool_iqt);
#      |                        ^~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1325|       xevd_bsr_read1(bs, &sps->tool_eipd);
# 1326|       xevd_bsr_read1(bs, &sps->tool_cm_init);
# 1327|->     xevd_bsr_read1(bs, &sps->tool_iqt);
# 1328|       xevd_bsr_read1(bs, &sps->tool_addb);
# 1329|       xevd_bsr_read1(bs, &sps->tool_alf);

Error: COMPILER_WARNING (CWE-681): [#def753]
xevd-0.5.0/src_base/xevd_eco.c:1328:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1328 |     xevd_bsr_read1(bs, &sps->tool_addb);
#      |                        ^~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1326|       xevd_bsr_read1(bs, &sps->tool_cm_init);
# 1327|       xevd_bsr_read1(bs, &sps->tool_iqt);
# 1328|->     xevd_bsr_read1(bs, &sps->tool_addb);
# 1329|       xevd_bsr_read1(bs, &sps->tool_alf);
# 1330|       xevd_bsr_read1(bs, &sps->tool_htdf);

Error: COMPILER_WARNING (CWE-681): [#def754]
xevd-0.5.0/src_base/xevd_eco.c:1329:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1329 |     xevd_bsr_read1(bs, &sps->tool_alf);
#      |                        ^~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1327|       xevd_bsr_read1(bs, &sps->tool_iqt);
# 1328|       xevd_bsr_read1(bs, &sps->tool_addb);
# 1329|->     xevd_bsr_read1(bs, &sps->tool_alf);
# 1330|       xevd_bsr_read1(bs, &sps->tool_htdf);
# 1331|       xevd_bsr_read1(bs, &sps->tool_rpl);

Error: COMPILER_WARNING (CWE-681): [#def755]
xevd-0.5.0/src_base/xevd_eco.c:1330:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1330 |     xevd_bsr_read1(bs, &sps->tool_htdf);
#      |                        ^~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1328|       xevd_bsr_read1(bs, &sps->tool_addb);
# 1329|       xevd_bsr_read1(bs, &sps->tool_alf);
# 1330|->     xevd_bsr_read1(bs, &sps->tool_htdf);
# 1331|       xevd_bsr_read1(bs, &sps->tool_rpl);
# 1332|       xevd_bsr_read1(bs, &sps->tool_pocs);

Error: COMPILER_WARNING (CWE-681): [#def756]
xevd-0.5.0/src_base/xevd_eco.c:1331:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1331 |     xevd_bsr_read1(bs, &sps->tool_rpl);
#      |                        ^~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1329|       xevd_bsr_read1(bs, &sps->tool_alf);
# 1330|       xevd_bsr_read1(bs, &sps->tool_htdf);
# 1331|->     xevd_bsr_read1(bs, &sps->tool_rpl);
# 1332|       xevd_bsr_read1(bs, &sps->tool_pocs);
# 1333|       xevd_bsr_read1(bs, &sps->dquant_flag);

Error: COMPILER_WARNING (CWE-681): [#def757]
xevd-0.5.0/src_base/xevd_eco.c:1332:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1332 |     xevd_bsr_read1(bs, &sps->tool_pocs);
#      |                        ^~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1330|       xevd_bsr_read1(bs, &sps->tool_htdf);
# 1331|       xevd_bsr_read1(bs, &sps->tool_rpl);
# 1332|->     xevd_bsr_read1(bs, &sps->tool_pocs);
# 1333|       xevd_bsr_read1(bs, &sps->dquant_flag);
# 1334|       xevd_bsr_read1(bs, &sps->tool_dra);

Error: COMPILER_WARNING (CWE-681): [#def758]
xevd-0.5.0/src_base/xevd_eco.c:1333:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1333 |     xevd_bsr_read1(bs, &sps->dquant_flag);
#      |                        ^~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1331|       xevd_bsr_read1(bs, &sps->tool_rpl);
# 1332|       xevd_bsr_read1(bs, &sps->tool_pocs);
# 1333|->     xevd_bsr_read1(bs, &sps->dquant_flag);
# 1334|       xevd_bsr_read1(bs, &sps->tool_dra);
# 1335|   

Error: COMPILER_WARNING (CWE-681): [#def759]
xevd-0.5.0/src_base/xevd_eco.c:1334:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1334 |     xevd_bsr_read1(bs, &sps->tool_dra);
#      |                        ^~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1332|       xevd_bsr_read1(bs, &sps->tool_pocs);
# 1333|       xevd_bsr_read1(bs, &sps->dquant_flag);
# 1334|->     xevd_bsr_read1(bs, &sps->tool_dra);
# 1335|   
# 1336|       if (!sps->tool_rpl || !sps->tool_pocs)

Error: COMPILER_WARNING (CWE-681): [#def760]
xevd-0.5.0/src_base/xevd_eco.c:1338:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1338 |         xevd_bsr_read_ue(bs, &sps->log2_sub_gop_length);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1336|       if (!sps->tool_rpl || !sps->tool_pocs)
# 1337|       {
# 1338|->         xevd_bsr_read_ue(bs, &sps->log2_sub_gop_length);
# 1339|           if (sps->log2_sub_gop_length == 0)
# 1340|           {

Error: COMPILER_WARNING (CWE-681): [#def761]
xevd-0.5.0/src_base/xevd_eco.c:1341:34: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1341 |             xevd_bsr_read_ue(bs, &sps->log2_ref_pic_gap_length);
#      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                  |
#      |                                  int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1339|           if (sps->log2_sub_gop_length == 0)
# 1340|           {
# 1341|->             xevd_bsr_read_ue(bs, &sps->log2_ref_pic_gap_length);
# 1342|           }
# 1343|       }

Error: COMPILER_WARNING (CWE-681): [#def762]
xevd-0.5.0/src_base/xevd_eco.c:1347:31: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1347 |          xevd_bsr_read_ue(bs, &sps->max_num_ref_pics);
#      |                               ^~~~~~~~~~~~~~~~~~~~~~
#      |                               |
#      |                               int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1345|       if (!sps->tool_rpl)
# 1346|       {
# 1347|->          xevd_bsr_read_ue(bs, &sps->max_num_ref_pics);
# 1348|       }
# 1349|   

Error: COMPILER_WARNING (CWE-681): [#def763]
xevd-0.5.0/src_base/xevd_eco.c:1350:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1350 |     xevd_bsr_read1(bs, &sps->picture_cropping_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1348|       }
# 1349|   
# 1350|->     xevd_bsr_read1(bs, &sps->picture_cropping_flag);
# 1351|       if (sps->picture_cropping_flag)
# 1352|       {

Error: COMPILER_WARNING (CWE-681): [#def764]
xevd-0.5.0/src_base/xevd_eco.c:1353:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1353 |         xevd_bsr_read_ue(bs, &sps->picture_crop_left_offset);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1351|       if (sps->picture_cropping_flag)
# 1352|       {
# 1353|->         xevd_bsr_read_ue(bs, &sps->picture_crop_left_offset);
# 1354|           xevd_bsr_read_ue(bs, &sps->picture_crop_right_offset);
# 1355|           xevd_bsr_read_ue(bs, &sps->picture_crop_top_offset);

Error: COMPILER_WARNING (CWE-681): [#def765]
xevd-0.5.0/src_base/xevd_eco.c:1354:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1354 |         xevd_bsr_read_ue(bs, &sps->picture_crop_right_offset);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1352|       {
# 1353|           xevd_bsr_read_ue(bs, &sps->picture_crop_left_offset);
# 1354|->         xevd_bsr_read_ue(bs, &sps->picture_crop_right_offset);
# 1355|           xevd_bsr_read_ue(bs, &sps->picture_crop_top_offset);
# 1356|           xevd_bsr_read_ue(bs, &sps->picture_crop_bottom_offset);

Error: COMPILER_WARNING (CWE-681): [#def766]
xevd-0.5.0/src_base/xevd_eco.c:1355:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1355 |         xevd_bsr_read_ue(bs, &sps->picture_crop_top_offset);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1353|           xevd_bsr_read_ue(bs, &sps->picture_crop_left_offset);
# 1354|           xevd_bsr_read_ue(bs, &sps->picture_crop_right_offset);
# 1355|->         xevd_bsr_read_ue(bs, &sps->picture_crop_top_offset);
# 1356|           xevd_bsr_read_ue(bs, &sps->picture_crop_bottom_offset);
# 1357|       }

Error: COMPILER_WARNING (CWE-681): [#def767]
xevd-0.5.0/src_base/xevd_eco.c:1356:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1356 |         xevd_bsr_read_ue(bs, &sps->picture_crop_bottom_offset);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1354|           xevd_bsr_read_ue(bs, &sps->picture_crop_right_offset);
# 1355|           xevd_bsr_read_ue(bs, &sps->picture_crop_top_offset);
# 1356|->         xevd_bsr_read_ue(bs, &sps->picture_crop_bottom_offset);
# 1357|       }
# 1358|   

Error: COMPILER_WARNING (CWE-681): [#def768]
xevd-0.5.0/src_base/xevd_eco.c:1361:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1361 |         xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.chroma_qp_table_present_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1359|       if (sps->chroma_format_idc != 0)
# 1360|       {
# 1361|->         xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.chroma_qp_table_present_flag);
# 1362|           if (sps->chroma_qp_table_struct.chroma_qp_table_present_flag)
# 1363|           {

Error: COMPILER_WARNING (CWE-681): [#def769]
xevd-0.5.0/src_base/xevd_eco.c:1364:32: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1364 |             xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.same_qp_table_for_chroma);
#      |                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                |
#      |                                int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1362|           if (sps->chroma_qp_table_struct.chroma_qp_table_present_flag)
# 1363|           {
# 1364|->             xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.same_qp_table_for_chroma);
# 1365|               xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.global_offset_flag);
# 1366|               for (int i = 0; i < (sps->chroma_qp_table_struct.same_qp_table_for_chroma ? 1 : 2); i++)

Error: COMPILER_WARNING (CWE-681): [#def770]
xevd-0.5.0/src_base/xevd_eco.c:1365:32: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1365 |             xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.global_offset_flag);
#      |                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                |
#      |                                int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1363|           {
# 1364|               xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.same_qp_table_for_chroma);
# 1365|->             xevd_bsr_read1(bs, &sps->chroma_qp_table_struct.global_offset_flag);
# 1366|               for (int i = 0; i < (sps->chroma_qp_table_struct.same_qp_table_for_chroma ? 1 : 2); i++)
# 1367|               {

Error: COMPILER_WARNING (CWE-681): [#def771]
xevd-0.5.0/src_base/xevd_eco.c:1368:38: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1368 |                 xevd_bsr_read_ue(bs, &sps->chroma_qp_table_struct.num_points_in_qp_table_minus1[i]);
#      |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                      |
#      |                                      int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1366|               for (int i = 0; i < (sps->chroma_qp_table_struct.same_qp_table_for_chroma ? 1 : 2); i++)
# 1367|               {
# 1368|->                 xevd_bsr_read_ue(bs, &sps->chroma_qp_table_struct.num_points_in_qp_table_minus1[i]);
# 1369|                   for (int j = 0; j <= sps->chroma_qp_table_struct.num_points_in_qp_table_minus1[i]; j++)
# 1370|                   {

Error: COMPILER_WARNING (CWE-681): [#def772]
xevd-0.5.0/src_base/xevd_eco.c:1371:39: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1371 |                     xevd_bsr_read(bs, &sps->chroma_qp_table_struct.delta_qp_in_val_minus1[i][j], 6);
#      |                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                       |
#      |                                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1369|                   for (int j = 0; j <= sps->chroma_qp_table_struct.num_points_in_qp_table_minus1[i]; j++)
# 1370|                   {
# 1371|->                     xevd_bsr_read(bs, &sps->chroma_qp_table_struct.delta_qp_in_val_minus1[i][j], 6);
# 1372|                       xevd_bsr_read_se(bs, &sps->chroma_qp_table_struct.delta_qp_out_val[i][j]);
# 1373|                   }

Error: COMPILER_WARNING (CWE-681): [#def773]
xevd-0.5.0/src_base/xevd_eco.c:1378:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1378 |     xevd_bsr_read1(bs, &sps->vui_parameters_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1376|       }
# 1377|   
# 1378|->     xevd_bsr_read1(bs, &sps->vui_parameters_present_flag);
# 1379|       if (sps->vui_parameters_present_flag)
# 1380|       {

Error: COMPILER_WARNING (CWE-681): [#def774]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_pps’
xevd-0.5.0/src_base/xevd_eco.c:1402:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1402 |     xevd_bsr_read_ue(bs, &pps->pps_pic_parameter_set_id);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1400|       XEVD_TRACE_STR("************ PPS Start ************\n");
# 1401|   #endif
# 1402|->     xevd_bsr_read_ue(bs, &pps->pps_pic_parameter_set_id);
# 1403|       assert(pps->pps_pic_parameter_set_id >= 0 && pps->pps_pic_parameter_set_id < MAX_NUM_PPS);
# 1404|       xevd_bsr_read_ue(bs, &pps->pps_seq_parameter_set_id);

Error: COMPILER_WARNING (CWE-681): [#def775]
xevd-0.5.0/src_base/xevd_eco.c:1404:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1404 |     xevd_bsr_read_ue(bs, &pps->pps_seq_parameter_set_id);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1402|       xevd_bsr_read_ue(bs, &pps->pps_pic_parameter_set_id);
# 1403|       assert(pps->pps_pic_parameter_set_id >= 0 && pps->pps_pic_parameter_set_id < MAX_NUM_PPS);
# 1404|->     xevd_bsr_read_ue(bs, &pps->pps_seq_parameter_set_id);
# 1405|       xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[0]);
# 1406|       xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[1]);

Error: COMPILER_WARNING (CWE-681): [#def776]
xevd-0.5.0/src_base/xevd_eco.c:1405:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1405 |     xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[0]);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1403|       assert(pps->pps_pic_parameter_set_id >= 0 && pps->pps_pic_parameter_set_id < MAX_NUM_PPS);
# 1404|       xevd_bsr_read_ue(bs, &pps->pps_seq_parameter_set_id);
# 1405|->     xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[0]);
# 1406|       xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[1]);
# 1407|       xevd_bsr_read_ue(bs, &pps->additional_lt_poc_lsb_len);

Error: COMPILER_WARNING (CWE-681): [#def777]
xevd-0.5.0/src_base/xevd_eco.c:1406:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1406 |     xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[1]);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1404|       xevd_bsr_read_ue(bs, &pps->pps_seq_parameter_set_id);
# 1405|       xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[0]);
# 1406|->     xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[1]);
# 1407|       xevd_bsr_read_ue(bs, &pps->additional_lt_poc_lsb_len);
# 1408|       xevd_bsr_read1(bs, &pps->rpl1_idx_present_flag);

Error: COMPILER_WARNING (CWE-681): [#def778]
xevd-0.5.0/src_base/xevd_eco.c:1407:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1407 |     xevd_bsr_read_ue(bs, &pps->additional_lt_poc_lsb_len);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1405|       xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[0]);
# 1406|       xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[1]);
# 1407|->     xevd_bsr_read_ue(bs, &pps->additional_lt_poc_lsb_len);
# 1408|       xevd_bsr_read1(bs, &pps->rpl1_idx_present_flag);
# 1409|       xevd_bsr_read1(bs, &pps->single_tile_in_pic_flag);

Error: COMPILER_WARNING (CWE-681): [#def779]
xevd-0.5.0/src_base/xevd_eco.c:1408:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1408 |     xevd_bsr_read1(bs, &pps->rpl1_idx_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1406|       xevd_bsr_read_ue(bs, &pps->num_ref_idx_default_active_minus1[1]);
# 1407|       xevd_bsr_read_ue(bs, &pps->additional_lt_poc_lsb_len);
# 1408|->     xevd_bsr_read1(bs, &pps->rpl1_idx_present_flag);
# 1409|       xevd_bsr_read1(bs, &pps->single_tile_in_pic_flag);
# 1410|       xevd_bsr_read_ue(bs, &pps->tile_id_len_minus1);

Error: COMPILER_WARNING (CWE-681): [#def780]
xevd-0.5.0/src_base/xevd_eco.c:1409:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1409 |     xevd_bsr_read1(bs, &pps->single_tile_in_pic_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1407|       xevd_bsr_read_ue(bs, &pps->additional_lt_poc_lsb_len);
# 1408|       xevd_bsr_read1(bs, &pps->rpl1_idx_present_flag);
# 1409|->     xevd_bsr_read1(bs, &pps->single_tile_in_pic_flag);
# 1410|       xevd_bsr_read_ue(bs, &pps->tile_id_len_minus1);
# 1411|       xevd_bsr_read1(bs, &pps->explicit_tile_id_flag);

Error: COMPILER_WARNING (CWE-681): [#def781]
xevd-0.5.0/src_base/xevd_eco.c:1410:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1410 |     xevd_bsr_read_ue(bs, &pps->tile_id_len_minus1);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1408|       xevd_bsr_read1(bs, &pps->rpl1_idx_present_flag);
# 1409|       xevd_bsr_read1(bs, &pps->single_tile_in_pic_flag);
# 1410|->     xevd_bsr_read_ue(bs, &pps->tile_id_len_minus1);
# 1411|       xevd_bsr_read1(bs, &pps->explicit_tile_id_flag);
# 1412|       xevd_bsr_read1(bs, &pps->pic_dra_enabled_flag);

Error: COMPILER_WARNING (CWE-681): [#def782]
xevd-0.5.0/src_base/xevd_eco.c:1411:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1411 |     xevd_bsr_read1(bs, &pps->explicit_tile_id_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1409|       xevd_bsr_read1(bs, &pps->single_tile_in_pic_flag);
# 1410|       xevd_bsr_read_ue(bs, &pps->tile_id_len_minus1);
# 1411|->     xevd_bsr_read1(bs, &pps->explicit_tile_id_flag);
# 1412|       xevd_bsr_read1(bs, &pps->pic_dra_enabled_flag);
# 1413|       xevd_bsr_read1(bs, &pps->arbitrary_slice_present_flag);

Error: COMPILER_WARNING (CWE-681): [#def783]
xevd-0.5.0/src_base/xevd_eco.c:1412:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1412 |     xevd_bsr_read1(bs, &pps->pic_dra_enabled_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1410|       xevd_bsr_read_ue(bs, &pps->tile_id_len_minus1);
# 1411|       xevd_bsr_read1(bs, &pps->explicit_tile_id_flag);
# 1412|->     xevd_bsr_read1(bs, &pps->pic_dra_enabled_flag);
# 1413|       xevd_bsr_read1(bs, &pps->arbitrary_slice_present_flag);
# 1414|       xevd_bsr_read1(bs, &pps->constrained_intra_pred_flag);

Error: COMPILER_WARNING (CWE-681): [#def784]
xevd-0.5.0/src_base/xevd_eco.c:1413:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1413 |     xevd_bsr_read1(bs, &pps->arbitrary_slice_present_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1411|       xevd_bsr_read1(bs, &pps->explicit_tile_id_flag);
# 1412|       xevd_bsr_read1(bs, &pps->pic_dra_enabled_flag);
# 1413|->     xevd_bsr_read1(bs, &pps->arbitrary_slice_present_flag);
# 1414|       xevd_bsr_read1(bs, &pps->constrained_intra_pred_flag);
# 1415|       xevd_bsr_read1(bs, &pps->cu_qp_delta_enabled_flag);

Error: COMPILER_WARNING (CWE-681): [#def785]
xevd-0.5.0/src_base/xevd_eco.c:1414:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1414 |     xevd_bsr_read1(bs, &pps->constrained_intra_pred_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1412|       xevd_bsr_read1(bs, &pps->pic_dra_enabled_flag);
# 1413|       xevd_bsr_read1(bs, &pps->arbitrary_slice_present_flag);
# 1414|->     xevd_bsr_read1(bs, &pps->constrained_intra_pred_flag);
# 1415|       xevd_bsr_read1(bs, &pps->cu_qp_delta_enabled_flag);
# 1416|       if(pps->cu_qp_delta_enabled_flag)

Error: COMPILER_WARNING (CWE-681): [#def786]
xevd-0.5.0/src_base/xevd_eco.c:1415:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1415 |     xevd_bsr_read1(bs, &pps->cu_qp_delta_enabled_flag);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1413|       xevd_bsr_read1(bs, &pps->arbitrary_slice_present_flag);
# 1414|       xevd_bsr_read1(bs, &pps->constrained_intra_pred_flag);
# 1415|->     xevd_bsr_read1(bs, &pps->cu_qp_delta_enabled_flag);
# 1416|       if(pps->cu_qp_delta_enabled_flag)
# 1417|       {

Error: COMPILER_WARNING (CWE-681): [#def787]
xevd-0.5.0/src_base/xevd_eco.c:1418:30: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1418 |         xevd_bsr_read_ue(bs, &pps->cu_qp_delta_area);
#      |                              ^~~~~~~~~~~~~~~~~~~~~~
#      |                              |
#      |                              int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1416|       if(pps->cu_qp_delta_enabled_flag)
# 1417|       {
# 1418|->         xevd_bsr_read_ue(bs, &pps->cu_qp_delta_area);
# 1419|           pps->cu_qp_delta_area += 6;
# 1420|       }

Error: COMPILER_WARNING (CWE-681): [#def788]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_sh’
xevd-0.5.0/src_base/xevd_eco.c:1442:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1442 |     xevd_bsr_read_ue(bs, &sh->slice_pic_parameter_set_id);
#      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1440|       int num_tiles_in_slice = 0;
# 1441|   
# 1442|->     xevd_bsr_read_ue(bs, &sh->slice_pic_parameter_set_id);
# 1443|       assert(sh->slice_pic_parameter_set_id >= 0 && sh->slice_pic_parameter_set_id < MAX_NUM_PPS);
# 1444|   

Error: COMPILER_WARNING (CWE-681): [#def789]
xevd-0.5.0/src_base/xevd_eco.c:1447:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1447 |         xevd_bsr_read1(bs, &sh->single_tile_in_slice_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1445|       if (!pps->single_tile_in_pic_flag)
# 1446|       {
# 1447|->         xevd_bsr_read1(bs, &sh->single_tile_in_slice_flag);
# 1448|           xevd_bsr_read(bs, &sh->first_tile_id, pps->tile_id_len_minus1 + 1);
# 1449|       }

Error: COMPILER_WARNING (CWE-681): [#def790]
xevd-0.5.0/src_base/xevd_eco.c:1448:27: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1448 |         xevd_bsr_read(bs, &sh->first_tile_id, pps->tile_id_len_minus1 + 1);
#      |                           ^~~~~~~~~~~~~~~~~~
#      |                           |
#      |                           int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1446|       {
# 1447|           xevd_bsr_read1(bs, &sh->single_tile_in_slice_flag);
# 1448|->         xevd_bsr_read(bs, &sh->first_tile_id, pps->tile_id_len_minus1 + 1);
# 1449|       }
# 1450|       else

Error: COMPILER_WARNING (CWE-681): [#def791]
xevd-0.5.0/src_base/xevd_eco.c:1459:32: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1459 |             xevd_bsr_read1(bs, &sh->arbitrary_slice_flag);
#      |                                ^~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                |
#      |                                int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1457|           if (pps->arbitrary_slice_present_flag)
# 1458|           {
# 1459|->             xevd_bsr_read1(bs, &sh->arbitrary_slice_flag);
# 1460|           }
# 1461|           if (!sh->arbitrary_slice_flag)

Error: COMPILER_WARNING (CWE-681): [#def792]
xevd-0.5.0/src_base/xevd_eco.c:1463:31: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1463 |             xevd_bsr_read(bs, &sh->last_tile_id, pps->tile_id_len_minus1 + 1);
#      |                               ^~~~~~~~~~~~~~~~~
#      |                               |
#      |                               int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1461|           if (!sh->arbitrary_slice_flag)
# 1462|           {
# 1463|->             xevd_bsr_read(bs, &sh->last_tile_id, pps->tile_id_len_minus1 + 1);
# 1464|           }
# 1465|           else

Error: COMPILER_WARNING (CWE-681): [#def793]
xevd-0.5.0/src_base/xevd_eco.c:1467:34: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1467 |             xevd_bsr_read_ue(bs, &sh->num_remaining_tiles_in_slice_minus1);
#      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                  |
#      |                                  int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1465|           else
# 1466|           {
# 1467|->             xevd_bsr_read_ue(bs, &sh->num_remaining_tiles_in_slice_minus1);
# 1468|               num_tiles_in_slice = sh->num_remaining_tiles_in_slice_minus1 + 2;
# 1469|               for (int i = 0; i < num_tiles_in_slice - 1; ++i)

Error: COMPILER_WARNING (CWE-681): [#def794]
xevd-0.5.0/src_base/xevd_eco.c:1471:38: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1471 |                 xevd_bsr_read_ue(bs, &sh->delta_tile_id_minus1[i]);
#      |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                                      |
#      |                                      int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1469|               for (int i = 0; i < num_tiles_in_slice - 1; ++i)
# 1470|               {
# 1471|->                 xevd_bsr_read_ue(bs, &sh->delta_tile_id_minus1[i]);
# 1472|               }
# 1473|           }

Error: COMPILER_WARNING (CWE-681): [#def795]
xevd-0.5.0/src_base/xevd_eco.c:1476:26: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read_ue’ differ in signedness
# 1476 |     xevd_bsr_read_ue(bs, &sh->slice_type);
#      |                          ^~~~~~~~~~~~~~~
#      |                          |
#      |                          int *
xevd-0.5.0/src_base/xevd_bsr.h:91:44: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   91 | void xevd_bsr_read_ue(XEVD_BSR * bs, u32 * val);
#      |                                      ~~~~~~^~~
# 1474|       }
# 1475|   
# 1476|->     xevd_bsr_read_ue(bs, &sh->slice_type);
# 1477|   
# 1478|       if (!sh->arbitrary_slice_flag)

Error: COMPILER_WARNING (CWE-681): [#def796]
xevd-0.5.0/src_base/xevd_eco.c:1521:28: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1521 |         xevd_bsr_read1(bs, &sh->no_output_of_prior_pics_flag);
#      |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#      |                            |
#      |                            int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1519|       if (nut == XEVD_NUT_IDR)
# 1520|       {
# 1521|->         xevd_bsr_read1(bs, &sh->no_output_of_prior_pics_flag);
# 1522|       }
# 1523|   

Error: COMPILER_WARNING (CWE-681): [#def797]
xevd-0.5.0/src_base/xevd_eco.c:1545:24: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read1’ differ in signedness
# 1545 |     xevd_bsr_read1(bs, &sh->deblocking_filter_on);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~
#      |                        |
#      |                        int *
xevd-0.5.0/src_base/xevd_bsr.h:90:42: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   90 | void xevd_bsr_read1(XEVD_BSR * bs, u32 * val);
#      |                                    ~~~~~~^~~
# 1543|       }
# 1544|   
# 1545|->     xevd_bsr_read1(bs, &sh->deblocking_filter_on);
# 1546|   
# 1547|       xevd_bsr_read(bs, &sh->qp, 6);

Error: COMPILER_WARNING (CWE-681): [#def798]
xevd-0.5.0/src_base/xevd_eco.c:1547:23: warning[-Wpointer-sign]: pointer targets in passing argument 2 of ‘xevd_bsr_read’ differ in signedness
# 1547 |     xevd_bsr_read(bs, &sh->qp, 6);
#      |                       ^~~~~~~
#      |                       |
#      |                       int *
xevd-0.5.0/src_base/xevd_bsr.h:89:41: note: expected ‘u32 *’ {aka ‘unsigned int *’} but argument is of type ‘int *’
#   89 | void xevd_bsr_read(XEVD_BSR * bs, u32 * val, int size);
#      |                                   ~~~~~~^~~
# 1545|       xevd_bsr_read1(bs, &sh->deblocking_filter_on);
# 1546|   
# 1547|->     xevd_bsr_read(bs, &sh->qp, 6);
# 1548|       if (sh->qp < 0 || sh->qp > 51)
# 1549|       {

Error: COMPILER_WARNING (CWE-563): [#def799]
xevd-0.5.0/src_base/xevd_eco.c: scope_hint: In function ‘xevd_eco_sei’
xevd-0.5.0/src_base/xevd_eco.c:1619:16: warning[-Wunused-but-set-variable]: variable ‘uuid_iso_iec_11578_out’ set but not used
# 1619 |             u8 uuid_iso_iec_11578_out[16];
#      |                ^~~~~~~~~~~~~~~~~~~~~~
# 1617|           for (u32 i = 0; i < ISO_IEC_11578_LEN; i++)
# 1618|           {
# 1619|->             u8 uuid_iso_iec_11578_out[16];
# 1620|               xevd_bsr_read(bs, &val, 8);
# 1621|               uuid_iso_iec_11578_out[i] = val;

Error: COMPILER_WARNING (CWE-563): [#def800]
xevd-0.5.0/src_base/xevd_ipred.c: scope_hint: In function ‘xevd_get_nbr_b’
xevd-0.5.0/src_base/xevd_ipred.c:45:10: warning[-Wunused-variable]: unused variable ‘tmp’
#   45 |     pel *tmp = src;
#      |          ^~~
#   43|       int  x_scu = PEL2SCU(ch_type == Y_C ? x : x << (XEVD_GET_CHROMA_W_SHIFT(chroma_format_idc)));
#   44|       int  y_scu = PEL2SCU(ch_type == Y_C ? y : y << (XEVD_GET_CHROMA_H_SHIFT(chroma_format_idc)));
#   45|->     pel *tmp = src;
#   46|       pel *left = nb[ch_type][0] + 2;
#   47|       pel *up = nb[ch_type][1] + cuh;

Error: COMPILER_WARNING (CWE-563): [#def801]
xevd-0.5.0/src_base/xevd_itdq.c:502:9: warning[-Wunused-but-set-variable]: variable ‘skip_w’ set but not used
#  502 |     int skip_w = 1 << log2_w;
#      |         ^~~~~~
#  500|       const int ns_shift = ((log2_w + log2_h) & 1) ? 8 : 0;
#  501|   
#  502|->     int skip_w = 1 << log2_w;
#  503|       int skip_h = 1 << log2_h;
#  504|       int max_x = 0;

Error: COMPILER_WARNING (CWE-563): [#def802]
xevd-0.5.0/src_base/xevd_itdq.c: scope_hint: In function ‘xevd_itdq’
xevd-0.5.0/src_base/xevd_itdq.c:503:9: warning[-Wunused-but-set-variable]: variable ‘skip_h’ set but not used
#  503 |     int skip_h = 1 << log2_h;
#      |         ^~~~~~
#  501|   
#  502|       int skip_w = 1 << log2_w;
#  503|->     int skip_h = 1 << log2_h;
#  504|       int max_x = 0;
#  505|       int max_y = 0;

Error: COMPILER_WARNING (CWE-563): [#def803]
xevd-0.5.0/src_base/xevd_mc.c:485:18: warning[-Wunused-variable]: unused variable ‘mv_refine’
#  485 |     s16          mv_refine[REFP_NUM][MV_D] = { { mv[REFP_0][MV_X], mv[REFP_0][MV_Y] },
#      |                  ^~~~~~~~~
#  483|       xevd_mv_clip(x, y, pic_w, pic_h, w, h, refi, mv, mv_t);
#  484|   
#  485|->     s16          mv_refine[REFP_NUM][MV_D] = { { mv[REFP_0][MV_X], mv[REFP_0][MV_Y] },
#  486|                                                  { mv[REFP_1][MV_X], mv[REFP_1][MV_Y] } };
#  487|       s16          inital_mv[REFP_NUM][MV_D] = { { mv[REFP_0][MV_X], mv[REFP_0][MV_Y] },

Error: COMPILER_WARNING (CWE-563): [#def804]
xevd-0.5.0/src_base/xevd_mc.c:487:18: warning[-Wunused-variable]: unused variable ‘inital_mv’
#  487 |     s16          inital_mv[REFP_NUM][MV_D] = { { mv[REFP_0][MV_X], mv[REFP_0][MV_Y] },
#      |                  ^~~~~~~~~
#  485|       s16          mv_refine[REFP_NUM][MV_D] = { { mv[REFP_0][MV_X], mv[REFP_0][MV_Y] },
#  486|                                                  { mv[REFP_1][MV_X], mv[REFP_1][MV_Y] } };
#  487|->     s16          inital_mv[REFP_NUM][MV_D] = { { mv[REFP_0][MV_X], mv[REFP_0][MV_Y] },
#  488|                                                  { mv[REFP_1][MV_X], mv[REFP_1][MV_Y] } };
#  489|       s16          mv_offsets[REFP_NUM][MV_D] = { { 0, }, };

Error: COMPILER_WARNING (CWE-563): [#def805]
xevd-0.5.0/src_base/xevd_mc.c:489:18: warning[-Wunused-variable]: unused variable ‘mv_offsets’
#  489 |     s16          mv_offsets[REFP_NUM][MV_D] = { { 0, }, };
#      |                  ^~~~~~~~~~
#  487|       s16          inital_mv[REFP_NUM][MV_D] = { { mv[REFP_0][MV_X], mv[REFP_0][MV_Y] },
#  488|                                                  { mv[REFP_1][MV_X], mv[REFP_1][MV_Y] } };
#  489|->     s16          mv_offsets[REFP_NUM][MV_D] = { { 0, }, };
#  490|       s32          center_point_avgs_l0_l1[2 * REFP_NUM] = { 0, 0, 0, 0 }; // center_point_avgs_l0_l1[2,3] for "A" and "B" current center point average
#  491|   

Error: COMPILER_WARNING (CWE-563): [#def806]
xevd-0.5.0/src_base/xevd_mc.c:490:18: warning[-Wunused-variable]: unused variable ‘center_point_avgs_l0_l1’
#  490 |     s32          center_point_avgs_l0_l1[2 * REFP_NUM] = { 0, 0, 0, 0 }; // center_point_avgs_l0_l1[2,3] for "A" and "B" current center point average
#      |                  ^~~~~~~~~~~~~~~~~~~~~~~
#  488|                                                  { mv[REFP_1][MV_X], mv[REFP_1][MV_Y] } };
#  489|       s16          mv_offsets[REFP_NUM][MV_D] = { { 0, }, };
#  490|->     s32          center_point_avgs_l0_l1[2 * REFP_NUM] = { 0, 0, 0, 0 }; // center_point_avgs_l0_l1[2,3] for "A" and "B" current center point average
#  491|   
#  492|   

Error: COMPILER_WARNING (CWE-563): [#def807]
xevd-0.5.0/src_base/xevd_mc.c:542:14: warning[-Wunused-variable]: unused variable ‘template_needs_update’
#  542 |         BOOL template_needs_update = FALSE;
#      |              ^~~~~~~~~~~~~~~~~~~~~
#  540|       if (bidx == 2)
#  541|       {
#  542|->         BOOL template_needs_update = FALSE;
#  543|           s32 center_cost[2] = { 1 << 30, 1 << 30 };
#  544|   

Error: COMPILER_WARNING (CWE-563): [#def808]
xevd-0.5.0/src_base/xevd_mc.c: scope_hint: In function ‘xevd_mc’
xevd-0.5.0/src_base/xevd_mc.c:543:13: warning[-Wunused-variable]: unused variable ‘center_cost’
#  543 |         s32 center_cost[2] = { 1 << 30, 1 << 30 };
#      |             ^~~~~~~~~~~
#  541|       {
#  542|           BOOL template_needs_update = FALSE;
#  543|->         s32 center_cost[2] = { 1 << 30, 1 << 30 };
#  544|   
#  545|           //only if the references are located on opposite sides of the current frame

Error: COMPILER_WARNING (CWE-563): [#def809]
xevd-0.5.0/src_base/xevd_picman.c: scope_hint: In function ‘picman_flush_pb’
xevd-0.5.0/src_base/xevd_picman.c:116:9: warning[-Wunused-variable]: unused variable ‘min_poc’
#  116 |     int min_poc = INT_MAX
#      |         ^~~~~~~
#  114|       int i;
#  115|       int max_poc = 0;
#  116|->     int min_poc = INT_MAX
#  117|   
#  118|       /* mark all frames unused */;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def810]
xevd-0.5.0/src_base/xevd_util.c:174:13: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘*<unknown>’
xevd-0.5.0/src_base/xevd_util.c:243:12: enter_function: entry to ‘xevd_picbuf_lc_alloc’
xevd-0.5.0/src_base/xevd_util.c:252:5: branch_false: following ‘false’ branch (when ‘pic’ is non-NULL)...
xevd-0.5.0/src_base/xevd_util.c:253:5: branch_false: ...to here
 branch_true: following ‘true’ branch...
 branch_true: ...to here
xevd-0.5.0/src_base/xevd_util.c:270:12: call_function: calling ‘xevd_imgb_create’ from ‘xevd_picbuf_lc_alloc’
#  172|               imgb->y[i] = 0;
#  173|   
#  174|->             a_size = (align != NULL)? align[i] : 0;
#  175|               p_size = (pad != NULL)? pad[i] : 0;
#  176|   

Error: CPPCHECK_WARNING (CWE-682): [#def811]
xevd-0.5.0/src_base/xevd_util.c:195: error[nullPointerArithmeticOutOfMemory]: If memory allocation fails: pointer addition with NULL pointer.
#  193|               imgb->baddr[i] = xevd_malloc(imgb->bsize[i]);
#  194|   
#  195|->             imgb->a[i] = ((u8*)imgb->baddr[i]) + imgb->padu[i]*imgb->s[i] +
#  196|                   imgb->padl[i]*bd;
#  197|   

Error: GCC_ANALYZER_WARNING (CWE-131): [#def812]
xevd-0.5.0/src_base/xevd_util.c:276:5: warning[-Wanalyzer-allocation-size]: allocated buffer size is not a multiple of the pointee's size
xevd-0.5.0/src_base/xevd_util.c:243:12: enter_function: entry to ‘xevd_picbuf_lc_alloc’
xevd-0.5.0/src_base/xevd_util.c:252:5: branch_false: following ‘false’ branch (when ‘pic’ is non-NULL)...
xevd-0.5.0/src_base/xevd_util.c:253:5: branch_false: ...to here
 branch_true: following ‘true’ branch...
 branch_true: ...to here
xevd-0.5.0/src_base/xevd_util.c:270:12: call_function: calling ‘xevd_imgb_create’ from ‘xevd_picbuf_lc_alloc’
xevd-0.5.0/src_base/xevd_util.c:270:12: return_function: returning to ‘xevd_picbuf_lc_alloc’ from ‘xevd_imgb_create’
xevd-0.5.0/src_base/xevd_util.c:273:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd_util.c:276:18: branch_false: ...to here
xevd-0.5.0/src_base/xevd_util.c:276:5: danger: assigned to ‘pel *’ {{aka ‘short int *’}} here; ‘sizeof (pel {{aka short int}})’ is ‘2’
#  274|   
#  275|       /* set XEVD_PIC */
#  276|->     pic->buf_y = imgb->baddr[0];
#  277|       pic->buf_u = imgb->baddr[1];
#  278|       pic->buf_v = imgb->baddr[2];

Error: GCC_ANALYZER_WARNING (CWE-401): [#def813]
xevd-0.5.0/src_base/xevd_util.c:323:9: warning[-Wanalyzer-malloc-leak]: leak of ‘<unknown>’
xevd-0.5.0/src_base/xevd_util.c:243:12: enter_function: entry to ‘xevd_picbuf_lc_alloc’
xevd-0.5.0/src_base/xevd_util.c:252:5: branch_false: following ‘false’ branch (when ‘pic’ is non-NULL)...
xevd-0.5.0/src_base/xevd_util.c:253:5: branch_false: ...to here
 branch_true: following ‘true’ branch...
 branch_true: ...to here
xevd-0.5.0/src_base/xevd_util.c:270:12: call_function: calling ‘xevd_imgb_create’ from ‘xevd_picbuf_lc_alloc’
xevd-0.5.0/src_base/xevd_util.c:270:12: return_function: returning to ‘xevd_picbuf_lc_alloc’ from ‘xevd_imgb_create’
xevd-0.5.0/src_base/xevd_util.c:273:5: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd_util.c:276:18: branch_false: ...to here
xevd-0.5.0/src_base/xevd_util.c:303:5: branch_true: following ‘true’ branch...
xevd-0.5.0/src_base/xevd_util.c:303:5: branch_true: ...to here
xevd-0.5.0/src_base/xevd_util.c:320:9: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd_util.c:322:9: branch_false: ...to here
xevd-0.5.0/src_base/xevd_util.c:322:9: branch_false: following ‘false’ branch...
xevd-0.5.0/src_base/xevd_util.c:323:9: branch_false: ...to here
xevd-0.5.0/src_base/xevd_util.c:323:9: danger: ‘<unknown>’ leaks here; was allocated at [(8)](sarif:/runs/0/results/3/codeFlows/0/threadFlows/0/locations/7)
#  321|   
#  322|           xevd_mfree(pic->map_refi);
#  323|->         xevd_mfree(pic);
#  324|       }
#  325|       if(err) *err = ret;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def814]
xevd-0.5.0/src_base/xevd_util.c:1007:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘scan’
xevd-0.5.0/src_base/xevd_util.c:1042:5: enter_function: entry to ‘xevd_scan_tbl_init’
xevd-0.5.0/src_base/xevd_util.c:1051:24: branch_true: following ‘true’ branch (when ‘scan_type != 3’)...
xevd-0.5.0/src_base/xevd_util.c:1053:12: branch_true: ...to here
xevd-0.5.0/src_base/xevd_util.c:1053:12: branch_false: following ‘false’ branch (when ‘scan_type == 0’)...
 branch_false: ...to here
xevd-0.5.0/src_base/xevd_util.c:1055:20: branch_true: following ‘true’ branch (when ‘y != 6’)...
xevd-0.5.0/src_base/xevd_util.c:1057:27: branch_true: ...to here
xevd-0.5.0/src_base/xevd_util.c:1058:24: branch_true: following ‘true’ branch (when ‘x != 6’)...
xevd-0.5.0/src_base/xevd_util.c:1060:31: branch_true: ...to here
xevd-0.5.0/src_base/xevd_util.c:1062:74: acquire_memory: this call could return NULL
xevd-0.5.0/src_base/xevd_util.c:1063:17: call_function: calling ‘init_scan’ from ‘xevd_scan_tbl_init’
# 1005|       {
# 1006|           /* starting point */
# 1007|->         scan[pos] = 0;
# 1008|           pos++;
# 1009|   

Error: COMPILER_WARNING (CWE-563): [#def815]
xevd-0.5.0/src_base/xevd_util.c:1523:14: warning[-Wunused-variable]: unused variable ‘j’
# 1523 |     int   i, j;
#      |              ^
# 1521|       int   scup;
# 1522|       int   w_scu;
# 1523|->     int   i, j;
# 1524|       int   flag;
# 1525|   

Error: COMPILER_WARNING (CWE-563): [#def816]
xevd-0.5.0/src_base/xevd_util.c:1542:9: warning[-Wunused-variable]: unused variable ‘temp1’
# 1542 |     u32 temp1, temp2;
#      |         ^~~~~
# 1540|   
# 1541|   
# 1542|->     u32 temp1, temp2;
# 1543|   
# 1544|       if (core->pred_mode == MODE_SKIP)

Error: COMPILER_WARNING (CWE-563): [#def817]
xevd-0.5.0/src_base/xevd_util.c: scope_hint: In function ‘xevd_set_dec_info’
xevd-0.5.0/src_base/xevd_util.c:1542:16: warning[-Wunused-variable]: unused variable ‘temp2’
# 1542 |     u32 temp1, temp2;
#      |                ^~~~~
# 1540|   
# 1541|   
# 1542|->     u32 temp1, temp2;
# 1543|   
# 1544|       if (core->pred_mode == MODE_SKIP)

Scan Properties

analyzer-version-clippy1.90.0
analyzer-version-cppcheck2.18.3
analyzer-version-gcc15.2.1
analyzer-version-gcc-analyzer16.0.0
analyzer-version-shellcheck0.11.0
analyzer-version-unicontrol0.0.2
enabled-pluginsclippy, cppcheck, gcc, shellcheck, unicontrol
exit-code0
hostip-172-16-1-108.us-west-2.compute.internal
known-false-positives/usr/share/csmock/known-false-positives.js
known-false-positives-rpmknown-false-positives-0.0.0.20250521.132812.g8eff701.main-1.el9.noarch
mock-configfedora-rawhide-gcc-latest-x86_64
project-namexevd-0.5.0-5.fc44
store-results-to/tmp/tmpxd8mb9a0/xevd-0.5.0-5.fc44.tar.xz
time-created2025-10-28 20:45:00
time-finished2025-10-28 20:47:42
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-gcc-latest-x86_64' '-t' 'gcc,cppcheck,shellcheck,clippy,unicontrol' '-o' '/tmp/tmpxd8mb9a0/xevd-0.5.0-5.fc44.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--install=gcc-latest' '--gcc-analyzer-bin=/opt/gcc-latest/bin/gcc' '/tmp/tmpxd8mb9a0/xevd-0.5.0-5.fc44.src.rpm'
tool-versioncsmock-3.8.3.20251027.143044.ge6b947b-1.el9