1  #include <arm_neon.h>
       2  #include "arm-neon-ref.h"
       3  #include "compute-ref-data.h"
       4  
       5  #define INSN_NAME vqdmlal_lane
       6  #define TEST_MSG "VQDMLAL_LANE"
       7  
       8  /* Expected results.  */
       9  VECT_VAR_DECL(expected,int,32,4) [] = { 0x7c1e, 0x7c1f, 0x7c20, 0x7c21 };
      10  VECT_VAR_DECL(expected,int,64,2) [] = { 0x7c1e, 0x7c1f };
      11  
      12  /* Expected values when multiplying with 0.  */
      13  VECT_VAR_DECL(expected2,int,32,4) [] = { 0xfffffff0, 0xfffffff1,
      14  					 0xfffffff2, 0xfffffff3 };
      15  VECT_VAR_DECL(expected2,int,64,2) [] = { 0xfffffffffffffff0,
      16  					 0xfffffffffffffff1 };
      17  
      18  /* Expected values when multiplication saturates.  */
      19  VECT_VAR_DECL(expected3,int,32,4) [] = { 0x7fffffef, 0x7ffffff0,
      20  					 0x7ffffff1, 0x7ffffff2 };
      21  VECT_VAR_DECL(expected3,int,64,2) [] = { 0x7fffffffffffffef,
      22  					 0x7ffffffffffffff0 };
      23  
      24  #include "vqdmlXl_lane.inc"