NEON函数大纲

来源:互联网 发布:java招聘信息 编辑:程序博客网 时间:2024/05/16 07:41
  1. #ifndef __ARM_NEON__  
  2. #error You must enable NEON instructions (e.g. -mfloat-abi=softfp -mfpu=neon) to use arm_neon.h  
  3. #endif  
  4.   
  5. /*(1)、正常指令:生成大小相同且类型通常与操作数向量相同的结果向量; 
  6. (2)、长指令:对双字向量操作数执行运算,生成四字向量的结果。所生成的元素一般是操作数元素宽度的两倍, 
  7. 并属于同一类型; 
  8. (3)、宽指令:一个双字向量操作数和一个四字向量操作数执行运算,生成四字向量结果。所生成的元素和第一个 
  9. 操作数的元素是第二个操作数元素宽度的两倍; 
  10. (4)、窄指令:四字向量操作数执行运算,并生成双字向量结果,所生成的元素一般是操作数元素宽度的一半; 
  11. (5)、饱和指令:当超过数据类型指定的范围则自动限制在该范围内。*/  
  12.   
  13. /******************************************************Addition*************************/  
  14. /*--1、Vector add(正常指令): vadd -> ri = ai + bi; r, a, b have equal lane sizes--*/  
  15. int8x8_t vadd_s8 (int8x8_t __a, int8x8_t __b);//_mm_add_epi8  
  16. int16x4_t vadd_s16 (int16x4_t __a, int16x4_t __b);//_mm_add_epi16  
  17. int32x2_t vadd_s32 (int32x2_t __a, int32x2_t __b);//_mm_add_epi32  
  18. int64x1_t vadd_s64 (int64x1_t __a, int64x1_t __b);//_mm_add_epi64  
  19. //_mm_add_ps, SSE, use only low 64 bits  
  20. float32x2_t vadd_f32 (float32x2_t __a, float32x2_t __b);  
  21. uint8x8_t vadd_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_add_epi8  
  22. uint16x4_t vadd_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_add_epi16  
  23. uint32x2_t vadd_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_add_epi32  
  24. uint64x1_t vadd_u64 (uint64x1_t __a, uint64x1_t __b);//_mm_add_epi64  
  25. int8x16_t vaddq_s8 (int8x16_t __a, int8x16_t __b);//_mm_add_epi8  
  26. int16x8_t vaddq_s16 (int16x8_t __a, int16x8_t __b);//_mm_add_epi16  
  27. int32x4_t vaddq_s32 (int32x4_t __a, int32x4_t __b);//_mm_add_epi32  
  28. int64x2_t vaddq_s64 (int64x2_t __a, int64x2_t __b);//_mm_add_epi64  
  29. float32x4_t vaddq_f32 (float32x4_t __a, float32x4_t __b);//_mm_add_ps  
  30. uint8x16_t vaddq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_add_epi8  
  31. uint16x8_t vaddq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_add_epi16  
  32. uint32x4_t vaddq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_add_epi32  
  33. uint64x2_t vaddq_u64 (uint64x2_t __a, uint64x2_t __b);//_mm_add_epi64  
  34. /*--2、Vector long add(长指令): vaddl -> ri = ai + bi; a, b have equal lane sizes,  
  35. result is a 128 bit vector of lanes that are twice the width--*/  
  36. int16x8_t vaddl_s8 (int8x8_t __a, int8x8_t __b);  
  37. int32x4_t vaddl_s16 (int16x4_t __a, int16x4_t __b);  
  38. int64x2_t vaddl_s32 (int32x2_t __a, int32x2_t __b);  
  39. uint16x8_t vaddl_u8 (uint8x8_t __a, uint8x8_t __b);  
  40. uint32x4_t vaddl_u16 (uint16x4_t __a, uint16x4_t __b);  
  41. uint64x2_t vaddl_u32 (uint32x2_t __a, uint32x2_t __b);  
  42. /*--3、Vector wide add(宽指令): vaddw -> ri = ai + bi--*/  
  43. int16x8_t vaddw_s8 (int16x8_t __a, int8x8_t __b);  
  44. int32x4_t vaddw_s16 (int32x4_t __a, int16x4_t __b);  
  45. int64x2_t vaddw_s32 (int64x2_t __a, int32x2_t __b);  
  46. uint16x8_t vaddw_u8 (uint16x8_t __a, uint8x8_t __b);  
  47. uint32x4_t vaddw_u16 (uint32x4_t __a, uint16x4_t __b);  
  48. uint64x2_t vaddw_u32 (uint64x2_t __a, uint32x2_t __b);  
  49. /*--4、Vector halving add: vhadd -> ri = (ai + bi) >> 1;  
  50. shifts each result right one bit, Results are truncated--*/  
  51. int8x8_t vhadd_s8 (int8x8_t __a, int8x8_t __b);  
  52. int16x4_t vhadd_s16 (int16x4_t __a, int16x4_t __b);  
  53. int32x2_t vhadd_s32 (int32x2_t __a, int32x2_t __b);  
  54. uint8x8_t vhadd_u8 (uint8x8_t __a, uint8x8_t __b);  
  55. uint16x4_t vhadd_u16 (uint16x4_t __a, uint16x4_t __b);  
  56. uint32x2_t vhadd_u32 (uint32x2_t __a, uint32x2_t __b);  
  57. int8x16_t vhaddq_s8 (int8x16_t __a, int8x16_t __b);  
  58. int16x8_t vhaddq_s16 (int16x8_t __a, int16x8_t __b)  
  59. int32x4_t vhaddq_s32 (int32x4_t __a, int32x4_t __b)  
  60. uint8x16_t vhaddq_u8 (uint8x16_t __a, uint8x16_t __b)  
  61. uint16x8_t vhaddq_u16 (uint16x8_t __a, uint16x8_t __b)  
  62. uint32x4_t vhaddq_u32 (uint32x4_t __a, uint32x4_t __b);  
  63. /*--5、Vector rounding halving add: vrhadd -> ri = (ai + bi + 1) >> 1;  
  64. shifts each result right one bit, Results are rounded(四舍五入)--*/  
  65. int8x8_t vrhadd_s8 (int8x8_t __a, int8x8_t __b);  
  66. int16x4_t vrhadd_s16 (int16x4_t __a, int16x4_t __b);  
  67. int32x2_t vrhadd_s32 (int32x2_t __a, int32x2_t __b);  
  68. uint8x8_t vrhadd_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_avg_epu8  
  69. uint16x4_t vrhadd_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_avg_epu16  
  70. uint32x2_t vrhadd_u32 (uint32x2_t __a, uint32x2_t __b);  
  71. int8x16_t vrhaddq_s8 (int8x16_t __a, int8x16_t __b);  
  72. int16x8_t vrhaddq_s16 (int16x8_t __a, int16x8_t __b);  
  73. int32x4_t vrhaddq_s32 (int32x4_t __a, int32x4_t __b);  
  74. uint8x16_t vrhaddq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_avg_epu8  
  75. uint16x8_t vrhaddq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_avg_epu16  
  76. uint32x4_t vrhaddq_u32 (uint32x4_t __a, uint32x4_t __b);  
  77. /*--6、Vector saturating add(饱和指令): vqadd -> ri = sat(ai + bi);  
  78. the results are saturated if they overflow--*/  
  79. int8x8_t vqadd_s8 (int8x8_t __a, int8x8_t __b);//_mm_adds_epi8  
  80. int16x4_t vqadd_s16 (int16x4_t __a, int16x4_t __b);//_mm_adds_epi16  
  81. int32x2_t vqadd_s32 (int32x2_t __a, int32x2_t __b);  
  82. int64x1_t vqadd_s64 (int64x1_t __a, int64x1_t __b);  
  83. uint8x8_t vqadd_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_adds_epu8  
  84. uint16x4_t vqadd_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_adds_epu16  
  85. uint32x2_t vqadd_u32 (uint32x2_t __a, uint32x2_t __b);  
  86. uint64x1_t vqadd_u64 (uint64x1_t __a, uint64x1_t __b);  
  87. int8x16_t vqaddq_s8 (int8x16_t __a, int8x16_t __b);//_mm_adds_epi8  
  88. int16x8_t vqaddq_s16 (int16x8_t __a, int16x8_t __b);//_mm_adds_epi16  
  89. int32x4_t vqaddq_s32 (int32x4_t __a, int32x4_t __b);  
  90. int64x2_t vqaddq_s64 (int64x2_t __a, int64x2_t __b);  
  91. uint8x16_t vqaddq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_adds_epu8  
  92. uint16x8_t vqaddq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_adds_epu16  
  93. uint32x4_t vqaddq_u32 (uint32x4_t __a, uint32x4_t __b);  
  94. uint64x2_t vqaddq_u64 (uint64x2_t __a, uint64x2_t __b);  
  95. /*--7、Vector add high half(窄指令): vaddhn -> ri = sat(ai + bi);  
  96. selecting High half, The results are truncated--*/  
  97. int8x8_t vaddhn_s16 (int16x8_t __a, int16x8_t __b);  
  98. int16x4_t vaddhn_s32 (int32x4_t __a, int32x4_t __b);  
  99. int32x2_t vaddhn_s64 (int64x2_t __a, int64x2_t __b);  
  100. uint8x8_t vaddhn_u16 (uint16x8_t __a, uint16x8_t __b);  
  101. uint16x4_t vaddhn_u32 (uint32x4_t __a, uint32x4_t __b);  
  102. uint32x2_t vaddhn_u64 (uint64x2_t __a, uint64x2_t __b);  
  103. /*--8、Vector rounding add high half(窄指令): vraddhn -> ri = ai + bi;  
  104. selecting High half, The results are rounded--*/  
  105. int8x8_t vraddhn_s16 (int16x8_t __a, int16x8_t __b);  
  106. int16x4_t vraddhn_s32 (int32x4_t __a, int32x4_t __b)  
  107. int32x2_t vraddhn_s64 (int64x2_t __a, int64x2_t __b)  
  108. uint8x8_t vraddhn_u16 (uint16x8_t __a, uint16x8_t __b)  
  109. uint16x4_t vraddhn_u32 (uint32x4_t __a, uint32x4_t __b)  
  110. uint32x2_t vraddhn_u64 (uint64x2_t __a, uint64x2_t __b);  
  111. /*******************************************Multiplication******************************/  
  112. /*--1、Vector multiply(正常指令): vmul -> ri = ai * bi;--*/  
  113. int8x8_t vmul_s8 (int8x8_t __a, int8x8_t __b);  
  114. int16x4_t vmul_s16 (int16x4_t __a, int16x4_t __b);//_mm_mullo_epi16  
  115. int32x2_t vmul_s32 (int32x2_t __a, int32x2_t __b);  
  116. float32x2_t vmul_f32 (float32x2_t __a, float32x2_t __b);//_mm_mul_ps  
  117. uint8x8_t vmul_u8 (uint8x8_t __a, uint8x8_t __b);  
  118. uint16x4_t vmul_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_mullo_epi16  
  119. uint32x2_t vmul_u32 (uint32x2_t __a, uint32x2_t __b);  
  120. poly8x8_t vmul_p8 (poly8x8_t __a, poly8x8_t __b);  
  121. int8x16_t vmulq_s8 (int8x16_t __a, int8x16_t __b);  
  122. int16x8_t vmulq_s16 (int16x8_t __a, int16x8_t __b);//_mm_mullo_epi16  
  123. int32x4_t vmulq_s32 (int32x4_t __a, int32x4_t __b);  
  124. float32x4_t vmulq_f32 (float32x4_t __a, float32x4_t __b);//_mm_mul_ps  
  125. uint8x16_t vmulq_u8 (uint8x16_t __a, uint8x16_t __b);  
  126. uint16x8_t vmulq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_mullo_epi16  
  127. uint32x4_t vmulq_u32 (uint32x4_t __a, uint32x4_t __b);  
  128. poly8x16_t vmulq_p8 (poly8x16_t __a, poly8x16_t __b);  
  129. /*--2、Vector multiply accumulate: vmla -> ri = ai + bi * ci; --*/  
  130. int8x8_t vmla_s8 (int8x8_t __a, int8x8_t __b, int8x8_t __c);  
  131. int16x4_t vmla_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c);  
  132. int32x2_t vmla_s32 (int32x2_t __a, int32x2_t __b, int32x2_t __c);  
  133. float32x2_t vmla_f32 (float32x2_t __a, float32x2_t __b, float32x2_t __c);  
  134. uint8x8_t vmla_u8 (uint8x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  135. uint16x4_t vmla_u16 (uint16x4_t __a, uint16x4_t __b, uint16x4_t __c);  
  136. uint32x2_t vmla_u32 (uint32x2_t __a, uint32x2_t __b, uint32x2_t __c);  
  137. int8x16_t vmlaq_s8 (int8x16_t __a, int8x16_t __b, int8x16_t __c);  
  138. int16x8_t vmlaq_s16 (int16x8_t __a, int16x8_t __b, int16x8_t __c);  
  139. int32x4_t vmlaq_s32 (int32x4_t __a, int32x4_t __b, int32x4_t __c);  
  140. float32x4_t vmlaq_f32 (float32x4_t __a, float32x4_t __b, float32x4_t __c);  
  141. uint8x16_t vmlaq_u8 (uint8x16_t __a, uint8x16_t __b, uint8x16_t __c);  
  142. uint16x8_t vmlaq_u16 (uint16x8_t __a, uint16x8_t __b, uint16x8_t __c);  
  143. uint32x4_t vmlaq_u32 (uint32x4_t __a, uint32x4_t __b, uint32x4_t __c);  
  144. /*--3、Vector multiply accumulate long: vmlal -> ri = ai + bi * ci --*/  
  145. int16x8_t vmlal_s8 (int16x8_t __a, int8x8_t __b, int8x8_t __c);  
  146. int32x4_t vmlal_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c);  
  147. int64x2_t vmlal_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c);  
  148. uint16x8_t vmlal_u8 (uint16x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  149. uint32x4_t vmlal_u16 (uint32x4_t __a, uint16x4_t __b, uint16x4_t __c);  
  150. uint64x2_t vmlal_u32 (uint64x2_t __a, uint32x2_t __b, uint32x2_t __c);  
  151. /*--4、Vector multiply subtract: vmls -> ri = ai - bi * ci --*/  
  152. int8x8_t vmls_s8 (int8x8_t __a, int8x8_t __b, int8x8_t __c);  
  153. int16x4_t vmls_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c);  
  154. int32x2_t vmls_s32 (int32x2_t __a, int32x2_t __b, int32x2_t __c);  
  155. float32x2_t vmls_f32 (float32x2_t __a, float32x2_t __b, float32x2_t __c);  
  156. uint8x8_t vmls_u8 (uint8x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  157. uint16x4_t vmls_u16 (uint16x4_t __a, uint16x4_t __b, uint16x4_t __c);  
  158. uint32x2_t vmls_u32 (uint32x2_t __a, uint32x2_t __b, uint32x2_t __c);  
  159. int8x16_t vmlsq_s8 (int8x16_t __a, int8x16_t __b, int8x16_t __c);  
  160. int16x8_t vmlsq_s16 (int16x8_t __a, int16x8_t __b, int16x8_t __c);  
  161. int32x4_t vmlsq_s32 (int32x4_t __a, int32x4_t __b, int32x4_t __c);  
  162. float32x4_t vmlsq_f32 (float32x4_t __a, float32x4_t __b, float32x4_t __c);  
  163. uint8x16_t vmlsq_u8 (uint8x16_t __a, uint8x16_t __b, uint8x16_t __c);  
  164. uint16x8_t vmlsq_u16 (uint16x8_t __a, uint16x8_t __b, uint16x8_t __c);  
  165. uint32x4_t vmlsq_u32 (uint32x4_t __a, uint32x4_t __b, uint32x4_t __c);  
  166. /*--5、Vector multiply subtract long:vmlsl -> ri = ai - bi * ci --*/  
  167. int16x8_t vmlsl_s8 (int16x8_t __a, int8x8_t __b, int8x8_t __c);  
  168. int32x4_t vmlsl_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c);  
  169. int64x2_t vmlsl_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c);  
  170. uint16x8_t vmlsl_u8 (uint16x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  171. uint32x4_t vmlsl_u16 (uint32x4_t __a, uint16x4_t __b, uint16x4_t __c);  
  172. uint64x2_t vmlsl_u32 (uint64x2_t __a, uint32x2_t __b, uint32x2_t __c);  
  173. /*--6、Vector saturating doubling multiply high: vqdmulh -> ri = sat(ai * bi);  
  174. doubles the results and returns only the high half of the truncated results--*/  
  175. int16x4_t vqdmulh_s16 (int16x4_t __a, int16x4_t __b);  
  176. int32x2_t vqdmulh_s32 (int32x2_t __a, int32x2_t __b);  
  177. int16x8_t vqdmulhq_s16 (int16x8_t __a, int16x8_t __b);  
  178. int32x4_t vqdmulhq_s32 (int32x4_t __a, int32x4_t __b);  
  179. /*--7、Vector saturating rounding doubling multiply high vqrdmulh -> ri = ai * bi:  
  180. doubles the results and returns only the high half of the rounded results.  
  181. The results are saturated if they overflow--*/  
  182. int16x4_t vqrdmulh_s16 (int16x4_t __a, int16x4_t __b);  
  183. int32x2_t vqrdmulh_s32 (int32x2_t __a, int32x2_t __b);  
  184. int16x8_t vqrdmulhq_s16 (int16x8_t __a, int16x8_t __b);  
  185. int32x4_t vqrdmulhq_s32 (int32x4_t __a, int32x4_t __b);  
  186. /*--8、Vector saturating doubling multiply accumulate long: vqdmlal -> ri = ai + bi * ci; 
  187. multiplies the elements in the second and third vectors, doubles the results and adds the 
  188. results to the values in the first vector. The results are saturated if they overflow--*/  
  189. int32x4_t vqdmlal_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c);  
  190. int64x2_t  vqdmlal_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c);  
  191. /*--9、Vector saturating doubling multiply subtract long: vqdmlsl -> ri = ai - bi * ci; 
  192. multiplies the elements in the second and third vectors, doubles the results and subtracts  
  193. the results from the elements in the first vector.  
  194. The results are saturated if they overflow--*/  
  195. int32x4_t vqdmlsl_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c);  
  196. int64x2_t vqdmlsl_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c);  
  197. /*--10、Vector long multiply(长指令): vmull -> ri = ai * bi;--*/  
  198. int16x8_t vmull_s8 (int8x8_t __a, int8x8_t __b);  
  199. int32x4_t vmull_s16 (int16x4_t __a, int16x4_t __b);  
  200. int64x2_t vmull_s32 (int32x2_t __a, int32x2_t __b);  
  201. uint16x8_t vmull_u8 (uint8x8_t __a, uint8x8_t __b);  
  202. uint32x4_t vmull_u16 (uint16x4_t __a, uint16x4_t __b);  
  203. uint64x2_t vmull_u32 (uint32x2_t __a, uint32x2_t __b);  
  204. poly16x8_t vmull_p8 (poly8x8_t __a, poly8x8_t __b);  
  205. /*--11、Vector saturating doubling long multiply: vqdmull -> ri = ai * bi; 
  206. If any of the results overflow, they are saturated--*/  
  207. int32x4_t vqdmull_s16 (int16x4_t __a, int16x4_t __b);  
  208. int64x2_t vqdmull_s32 (int32x2_t __a, int32x2_t __b);  
  209. /*--12、Fused multiply accumulate: vfma -> ri = ai + bi * ci;  
  210. The result of the multiply is not rounded before the accumulation--*/  
  211. float32x2_t vfma_f32 (float32x2_t __a, float32x2_t __b, float32x2_t __c)  
  212. float32x4_t vfmaq_f32 (float32x4_t __a, float32x4_t __b, float32x4_t __c);  
  213. /*--13、Fused multiply subtract: vfms -> ri = ai - bi * ci;  
  214. The result of the multiply is not rounded before the subtraction--*/  
  215. float32x2_t vfms_f32 (float32x2_t __a, float32x2_t __b, float32x2_t __c);  
  216. float32x4_t vfmsq_f32 (float32x4_t __a, float32x4_t __b, float32x4_t __c);  
  217. /******************************************************Round to integral****************/  
  218. /*--1、to nearest, ties to even--*/  
  219. float32x2_t vrndn_f32 (float32x2_t __a);  
  220. float32x4_t vrndqn_f32 (float32x4_t __a);  
  221. /*--2、to nearest, ties away from zero--*/  
  222. float32x2_t vrnda_f32 (float32x2_t __a);  
  223. float32x4_t vrndqa_f32 (float32x4_t __a);  
  224. /*--3、towards +Inf--*/  
  225. float32x2_t vrndp_f32 (float32x2_t __a);  
  226. float32x4_t vrndqp_f32 (float32x4_t __a);  
  227. /*--4、towards -Inf--*/  
  228. float32x2_t vrndm_f32 (float32x2_t __a);  
  229. float32x4_t vrndqm_f32 (float32x4_t __a);  
  230. /*--5、towards 0--*/  
  231. float32x2_t vrnd_f32 (float32x2_t __a);  
  232. float32x4_t vrndq_f32 (float32x4_t __a);  
  233. /**********************************************Subtraction******************************/  
  234. /*--1、Vector subtract(正常指令):vsub -> ri = ai - bi;--*/  
  235. int8x8_t vsub_s8 (int8x8_t __a, int8x8_t __b);//_mm_sub_epi8  
  236. int16x4_t vsub_s16 (int16x4_t __a, int16x4_t __b);//_mm_sub_epi16  
  237. int32x2_t vsub_s32 (int32x2_t __a, int32x2_t __b);//_mm_sub_epi32  
  238. int64x1_t vsub_s64 (int64x1_t __a, int64x1_t __b);//_mm_sub_epi64  
  239. float32x2_t vsub_f32 (float32x2_t __a, float32x2_t __b);//_mm_sub_ps  
  240. uint8x8_t vsub_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_sub_epi8  
  241. uint16x4_t vsub_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_sub_epi16  
  242. uint32x2_t vsub_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_sub_epi32  
  243. uint64x1_t vsub_u64 (uint64x1_t __a, uint64x1_t __b);//_mm_sub_epi64  
  244. int8x16_t vsubq_s8 (int8x16_t __a, int8x16_t __b);//_mm_sub_epi8  
  245. int16x8_t vsubq_s16 (int16x8_t __a, int16x8_t __b);//_mm_sub_epi16  
  246. int32x4_t vsubq_s32 (int32x4_t __a, int32x4_t __b);//_mm_sub_epi32  
  247. int64x2_t vsubq_s64 (int64x2_t __a, int64x2_t __b);//_mm_sub_epi64  
  248. float32x4_t vsubq_f32 (float32x4_t __a, float32x4_t __b);//_mm_sub_ps  
  249. uint8x16_t vsubq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_sub_epi8  
  250. uint16x8_t vsubq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_sub_epi16  
  251. uint32x4_t vsubq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_sub_epi32  
  252. uint64x2_t vsubq_u64 (uint64x2_t __a, uint64x2_t __b);//_mm_sub_epi64  
  253. /*--2、Vector long subtract(长指令): vsubl -> ri = ai - bi; --*/  
  254. int16x8_t vsubl_s8 (int8x8_t __a, int8x8_t __b);  
  255. int32x4_t vsubl_s16 (int16x4_t __a, int16x4_t __b);  
  256. int64x2_t vsubl_s32 (int32x2_t __a, int32x2_t __b);  
  257. uint16x8_t vsubl_u8 (uint8x8_t __a, uint8x8_t __b);  
  258. uint32x4_t vsubl_u16 (uint16x4_t __a, uint16x4_t __b);  
  259. uint64x2_t vsubl_u32 (uint32x2_t __a, uint32x2_t __b);  
  260. /*--3、Vector wide subtract(宽指令): vsubw -> ri = ai - bi;--*/  
  261. int16x8_t vsubw_s8 (int16x8_t __a, int8x8_t __b);  
  262. int32x4_t vsubw_s16 (int32x4_t __a, int16x4_t __b);  
  263. int64x2_t vsubw_s32 (int64x2_t __a, int32x2_t __b);  
  264. uint16x8_t vsubw_u8 (uint16x8_t __a, uint8x8_t __b);  
  265. uint32x4_t vsubw_u16 (uint32x4_t __a, uint16x4_t __b);  
  266. uint64x2_t vsubw_u32 (uint64x2_t __a, uint32x2_t __b);  
  267. /*--4、Vector saturating subtract(饱和指令): vqsub -> ri = sat(ai - bi); 
  268. If any of the results overflow, they are saturated--*/  
  269. int8x8_t vqsub_s8 (int8x8_t __a, int8x8_t __b);//_mm_subs_epi8  
  270. int16x4_t vqsub_s16 (int16x4_t __a, int16x4_t __b);//_mm_subs_epi16  
  271. int32x2_t vqsub_s32 (int32x2_t __a, int32x2_t __b);//_mm_subs_epi32  
  272. int64x1_t vqsub_s64 (int64x1_t __a, int64x1_t __b);  
  273. uint8x8_t vqsub_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_subs_epu8  
  274. uint16x4_t vqsub_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_subs_epu16  
  275. uint32x2_t vqsub_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_subs_epu32  
  276. uint64x1_t vqsub_u64 (uint64x1_t __a, uint64x1_t __b);  
  277. int8x16_t vqsubq_s8 (int8x16_t __a, int8x16_t __b);//_mm_subs_epi8  
  278. int16x8_t vqsubq_s16 (int16x8_t __a, int16x8_t __b);//_mm_subs_epi16  
  279. int32x4_t vqsubq_s32 (int32x4_t __a, int32x4_t __b);//_mm_subs_epi32  
  280. int64x2_t vqsubq_s64 (int64x2_t __a, int64x2_t __b);  
  281. uint8x16_t vqsubq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_subs_epu8  
  282. uint16x8_t vqsubq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_subs_epu16  
  283. uint32x4_t vqsubq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_subs_epu32  
  284. uint64x2_t vqsubq_u64 (uint64x2_t __a, uint64x2_t __b);  
  285. /*--5、Vector halving subtract: vhsub -> ri = (ai - bi) >> 1;  
  286. shifts each result right one bit, The results are truncated.--*/  
  287. int8x8_t vhsub_s8 (int8x8_t __a, int8x8_t __b);  
  288. int16x4_t vhsub_s16 (int16x4_t __a, int16x4_t __b);  
  289. int32x2_t vhsub_s32 (int32x2_t __a, int32x2_t __b);  
  290. uint8x8_t vhsub_u8 (uint8x8_t __a, uint8x8_t __b);  
  291. uint16x4_t vhsub_u16 (uint16x4_t __a, uint16x4_t __b);  
  292. uint32x2_t vhsub_u32 (uint32x2_t __a, uint32x2_t __b);  
  293. int8x16_t vhsubq_s8 (int8x16_t __a, int8x16_t __b);  
  294. int16x8_t vhsubq_s16 (int16x8_t __a, int16x8_t __b);  
  295. int32x4_t vhsubq_s32 (int32x4_t __a, int32x4_t __b);  
  296. uint8x16_t vhsubq_u8 (uint8x16_t __a, uint8x16_t __b);  
  297. uint16x8_t vhsubq_u16 (uint16x8_t __a, uint16x8_t __b);  
  298. uint32x4_t vhsubq_u32 (uint32x4_t __a, uint32x4_t __b);  
  299. /*--6、Vector subtract high half(窄指令): vsubhn -> ri = ai - bi; 
  300. It returns the most significant halves of the results. The results are truncated--*/  
  301. int8x8_t vsubhn_s16 (int16x8_t __a, int16x8_t __b);  
  302. int16x4_t vsubhn_s32 (int32x4_t __a, int32x4_t __b);  
  303. int32x2_t vsubhn_s64 (int64x2_t __a, int64x2_t __b);  
  304. uint8x8_t vsubhn_u16 (uint16x8_t __a, uint16x8_t __b);  
  305. uint16x4_t vsubhn_u32 (uint32x4_t __a, uint32x4_t __b);  
  306. uint32x2_t vsubhn_u64 (uint64x2_t __a, uint64x2_t __b);  
  307. /*--7、Vector rounding subtract high half(窄指令): vrsubhn -> ai - bi;  
  308. It returns the most significant halves of the results. The results are rounded--*/  
  309. int8x8_t vrsubhn_s16 (int16x8_t __a, int16x8_t __b);  
  310. int16x4_t vrsubhn_s32 (int32x4_t __a, int32x4_t __b);  
  311. int32x2_t vrsubhn_s64 (int64x2_t __a, int64x2_t __b)  
  312. uint8x8_t vrsubhn_u16 (uint16x8_t __a, uint16x8_t __b);  
  313. uint16x4_t vrsubhn_u32 (uint32x4_t __a, uint32x4_t __b);  
  314. uint32x2_t vrsubhn_u64 (uint64x2_t __a, uint64x2_t __b);  
  315. /******************************************************Comparison***********************/  
  316. /*--1、Vector compare equal(正常指令): vceq -> ri = ai == bi ? 1...1 : 0...0;  
  317. If they are equal, the corresponding element in the destination vector is set to all ones. 
  318. Otherwise, it is set to all zeros--*/  
  319. uint8x8_t vceq_s8 (int8x8_t __a, int8x8_t __b);//_mm_cmpeq_epi8  
  320. uint16x4_t vceq_s16 (int16x4_t __a, int16x4_t __b);//_mm_cmpeq_epi16  
  321. uint32x2_t vceq_s32 (int32x2_t __a, int32x2_t __b);//_mm_cmpeq_epi32  
  322. uint32x2_t vceq_f32 (float32x2_t __a, float32x2_t __b);  
  323. uint8x8_t vceq_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_cmpeq_epi8  
  324. uint16x4_t vceq_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_cmpeq_epi16  
  325. uint32x2_t vceq_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_cmpeq_epi32  
  326. uint8x8_t vceq_p8 (poly8x8_t __a, poly8x8_t __b);//_mm_cmpeq_epi8  
  327. uint8x16_t vceqq_s8 (int8x16_t __a, int8x16_t __b);//_mm_cmpeq_epi8  
  328. uint16x8_t vceqq_s16 (int16x8_t __a, int16x8_t __b);//_mm_cmpeq_epi16  
  329. uint32x4_t vceqq_s32 (int32x4_t __a, int32x4_t __b);//_mm_cmpeq_epi32  
  330. uint32x4_t vceqq_f32 (float32x4_t __a, float32x4_t __b);  
  331. uint8x16_t vceqq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_cmpeq_epi8  
  332. uint16x8_t vceqq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_cmpeq_epi16  
  333. uint32x4_t vceqq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_cmpeq_epi32  
  334. uint8x16_t vceqq_p8 (poly8x16_t __a, poly8x16_t __b);//_mm_cmpeq_epi8  
  335. /*--2、Vector compare greater-than or equal(正常指令): vcge-> ri = ai >= bi ? 1...1:0...0; 
  336. If it is greater than or equal to it, the corresponding element in the destination  
  337. vector is set to all ones. Otherwise, it is set to all zeros.--*/  
  338. uint8x8_t vcge_s8 (int8x8_t __a, int8x8_t __b);  
  339. uint16x4_t vcge_s16 (int16x4_t __a, int16x4_t __b);  
  340. uint32x2_t vcge_s32 (int32x2_t __a, int32x2_t __b);  
  341. uint32x2_t vcge_f32 (float32x2_t __a, float32x2_t __b);  
  342. uint8x8_t vcge_u8 (uint8x8_t __a, uint8x8_t __b);  
  343. uint16x4_t vcge_u16 (uint16x4_t __a, uint16x4_t __b);  
  344. uint32x2_t vcge_u32 (uint32x2_t __a, uint32x2_t __b);  
  345. uint8x16_t vcgeq_s8 (int8x16_t __a, int8x16_t __b);  
  346. uint16x8_t vcgeq_s16 (int16x8_t __a, int16x8_t __b);  
  347. uint32x4_t vcgeq_s32 (int32x4_t __a, int32x4_t __b);  
  348. uint32x4_t vcgeq_f32 (float32x4_t __a, float32x4_t __b);  
  349. uint8x16_t vcgeq_u8 (uint8x16_t __a, uint8x16_t __b);  
  350. uint16x8_t vcgeq_u16 (uint16x8_t __a, uint16x8_t __b);  
  351. uint32x4_t vcgeq_u32 (uint32x4_t __a, uint32x4_t __b);  
  352. /*--3、Vector compare less-than or equal(正常指令): vcle -> ri = ai <= bi ? 1...1:0...0; 
  353. If it is less than or equal to it, the corresponding element in the destination vector  
  354. is set to all ones. Otherwise, it is set to all zeros.--*/  
  355. uint8x8_t vcle_s8 (int8x8_t __a, int8x8_t __b);  
  356. uint16x4_t vcle_s16 (int16x4_t __a, int16x4_t __b);  
  357. uint32x2_t vcle_s32 (int32x2_t __a, int32x2_t __b);  
  358. uint32x2_t vcle_f32 (float32x2_t __a, float32x2_t __b);  
  359. uint8x8_t vcle_u8 (uint8x8_t __a, uint8x8_t __b);  
  360. uint16x4_t vcle_u16 (uint16x4_t __a, uint16x4_t __b);  
  361. uint32x2_t vcle_u32 (uint32x2_t __a, uint32x2_t __b);  
  362. uint8x16_t vcleq_s8 (int8x16_t __a, int8x16_t __b);  
  363. uint16x8_t vcleq_s16 (int16x8_t __a, int16x8_t __b);  
  364. uint32x4_t vcleq_s32 (int32x4_t __a, int32x4_t __b);  
  365. uint32x4_t vcleq_f32 (float32x4_t __a, float32x4_t __b);  
  366. uint8x16_t vcleq_u8 (uint8x16_t __a, uint8x16_t __b);  
  367. uint16x8_t vcleq_u16 (uint16x8_t __a, uint16x8_t __b);  
  368. uint32x4_t vcleq_u32 (uint32x4_t __a, uint32x4_t __b);  
  369. /*--4、Vector compare greater-than(正常指令): vcgt -> ri = ai > bi ? 1...1:0...0; 
  370. If it is greater than it, the corresponding element in the destination vector is 
  371. set to all ones. Otherwise, it is set to all zeros--*/  
  372. uint8x8_t vcgt_s8 (int8x8_t __a, int8x8_t __b);  
  373. uint16x4_t vcgt_s16 (int16x4_t __a, int16x4_t __b);  
  374. uint32x2_t vcgt_s32 (int32x2_t __a, int32x2_t __b);  
  375. uint32x2_t vcgt_f32 (float32x2_t __a, float32x2_t __b);  
  376. uint8x8_t vcgt_u8 (uint8x8_t __a, uint8x8_t __b);  
  377. uint16x4_t vcgt_u16 (uint16x4_t __a, uint16x4_t __b);  
  378. uint32x2_t vcgt_u32 (uint32x2_t __a, uint32x2_t __b);  
  379. uint8x16_t vcgtq_s8 (int8x16_t __a, int8x16_t __b);  
  380. uint16x8_t vcgtq_s16 (int16x8_t __a, int16x8_t __b);  
  381. uint32x4_t vcgtq_s32 (int32x4_t __a, int32x4_t __b);  
  382. uint32x4_t vcgtq_f32 (float32x4_t __a, float32x4_t __b);  
  383. uint8x16_t vcgtq_u8 (uint8x16_t __a, uint8x16_t __b);  
  384. uint16x8_t vcgtq_u16 (uint16x8_t __a, uint16x8_t __b);  
  385. uint32x4_t vcgtq_u32 (uint32x4_t __a, uint32x4_t __b);  
  386. /*--5、Vector compare less-than(正常指令): vclt -> ri = ai < bi ? 1...1:0...0; 
  387. If it is less than it, the corresponding element in the destination vector is set  
  388. to all ones.Otherwise, it is set to all zeros--*/  
  389. uint8x8_t vclt_s8 (int8x8_t __a, int8x8_t __b);  
  390. uint16x4_t vclt_s16 (int16x4_t __a, int16x4_t __b);  
  391. uint32x2_t vclt_s32 (int32x2_t __a, int32x2_t __b);  
  392. uint32x2_t vclt_f32 (float32x2_t __a, float32x2_t __b);  
  393. uint8x8_t vclt_u8 (uint8x8_t __a, uint8x8_t __b);  
  394. uint16x4_t vclt_u16 (uint16x4_t __a, uint16x4_t __b);  
  395. uint32x2_t vclt_u32 (uint32x2_t __a, uint32x2_t __b);  
  396. uint8x16_t vcltq_s8 (int8x16_t __a, int8x16_t __b);  
  397. uint16x8_t vcltq_s16 (int16x8_t __a, int16x8_t __b);  
  398. uint32x4_t vcltq_s32 (int32x4_t __a, int32x4_t __b);  
  399. uint32x4_t vcltq_f32 (float32x4_t __a, float32x4_t __b);  
  400. uint8x16_t vcltq_u8 (uint8x16_t __a, uint8x16_t __b);  
  401. uint16x8_t vcltq_u16 (uint16x8_t __a, uint16x8_t __b);  
  402. uint32x4_t vcltq_u32 (uint32x4_t __a, uint32x4_t __b);  
  403. /*--6、Vector compare absolute greater-than or equal(正常指令):  
  404. vcage -> ri = |ai| >= |bi| ? 1...1:0...0; 
  405. compares the absolute value of each element in a vector with the absolute value of the  
  406. corresponding element of a second vector. If it is greater than or equal to it,  
  407. the corresponding element in the destination vector is set to all ones. 
  408. Otherwise, it is set to all zeros.--*/  
  409. uint32x2_t vcage_f32 (float32x2_t __a, float32x2_t __b);  
  410. uint32x4_t vcageq_f32 (float32x4_t __a, float32x4_t __b);  
  411. /*--7、Vector compare absolute less-than or equal(正常指令): 
  412. vcale -> ri = |ai| <= |bi| ? 1...1:0...0; 
  413. compares the absolute value of each element in a vector with the absolute value of the  
  414. corresponding element of a second vector. If it is less than or equal to it,  
  415. the corresponding element in the destination vector is set to all ones. 
  416. Otherwise, it is set to all zeros--*/  
  417. uint32x2_t vcale_f32 (float32x2_t __a, float32x2_t __b);  
  418. uint32x4_t vcaleq_f32 (float32x4_t __a, float32x4_t __b);  
  419. /*--8、Vector compare absolute greater-than(正常指令): 
  420. vcage -> ri = |ai| > |bi| ? 1...1:0...0; 
  421. compares the absolute value of each element in a vector with the absolute value of the 
  422. corresponding element of a second vector. If it is greater than it,  
  423. the corresponding element in the destination vector is set to all ones.  
  424. Otherwise, it is set to all zeros.--*/  
  425. uint32x2_t vcagt_f32 (float32x2_t __a, float32x2_t __b);  
  426. uint32x4_t vcagtq_f32 (float32x4_t __a, float32x4_t __b);  
  427. /*--9、Vector compare absolute less-than(正常指令): 
  428. vcalt -> ri = |ai| < |bi| ? 1...1:0...0; 
  429. compares the absolute value of each element in a vector with the absolute value of the 
  430. corresponding element of a second vector.If it is less than it, the corresponding  
  431. element in the destination vector is set to all ones. Otherwise,it is set to all zeros--*/  
  432. uint32x2_t vcalt_f32 (float32x2_t __a, float32x2_t __b);  
  433. uint32x4_t vcaltq_f32 (float32x4_t __a, float32x4_t __b);  
  434. /**********************************************Vector test bits*************************/  
  435. /*--正常指令,vtst -> ri = (ai & bi != 0) ? 1...1:0...0; 
  436. bitwise logical ANDs each element in a vector with the corresponding element of a second  
  437. vector.If the result is not zero, the corresponding element in the destination vector  
  438. is set to all ones. Otherwise, it is set to all zeros--*/  
  439. uint8x8_t vtst_s8 (int8x8_t __a, int8x8_t __b);  
  440. uint16x4_t vtst_s16 (int16x4_t __a, int16x4_t __b);  
  441. uint32x2_t vtst_s32 (int32x2_t __a, int32x2_t __b);  
  442. uint8x8_t vtst_u8 (uint8x8_t __a, uint8x8_t __b);  
  443. uint16x4_t vtst_u16 (uint16x4_t __a, uint16x4_t __b);  
  444. uint32x2_t vtst_u32 (uint32x2_t __a, uint32x2_t __b);  
  445. uint8x8_t vtst_p8 (poly8x8_t __a, poly8x8_t __b);  
  446. uint8x16_t vtstq_s8 (int8x16_t __a, int8x16_t __b);  
  447. uint16x8_t vtstq_s16 (int16x8_t __a, int16x8_t __b);  
  448. uint32x4_t vtstq_s32 (int32x4_t __a, int32x4_t __b);  
  449. uint8x16_t vtstq_u8 (uint8x16_t __a, uint8x16_t __b);  
  450. uint16x8_t vtstq_u16 (uint16x8_t __a, uint16x8_t __b);  
  451. uint32x4_t vtstq_u32 (uint32x4_t __a, uint32x4_t __b);  
  452. uint8x16_t vtstq_p8 (poly8x16_t __a, poly8x16_t __b);  
  453. /**********************************************Absolute difference**********************/  
  454. /*--1、Absolute difference between the arguments(正常指令): vabd -> ri = |ai - bi|; 
  455. returns the absolute values of the results--*/  
  456. int8x8_t vabd_s8 (int8x8_t __a, int8x8_t __b);  
  457. int16x4_t vabd_s16 (int16x4_t __a, int16x4_t __b);  
  458. int32x2_t vabd_s32 (int32x2_t __a, int32x2_t __b);  
  459. float32x2_t vabd_f32 (float32x2_t __a, float32x2_t __b);  
  460. uint8x8_t vabd_u8 (uint8x8_t __a, uint8x8_t __b);  
  461. uint16x4_t vabd_u16 (uint16x4_t __a, uint16x4_t __b);  
  462. uint32x2_t vabd_u32 (uint32x2_t __a, uint32x2_t __b);  
  463. int8x16_t vabdq_s8 (int8x16_t __a, int8x16_t __b);  
  464. int16x8_t vabdq_s16 (int16x8_t __a, int16x8_t __b);  
  465. int32x4_t vabdq_s32 (int32x4_t __a, int32x4_t __b);  
  466. float32x4_t vabdq_f32 (float32x4_t __a, float32x4_t __b);  
  467. uint8x16_t vabdq_u8 (uint8x16_t __a, uint8x16_t __b);  
  468. uint16x8_t vabdq_u16 (uint16x8_t __a, uint16x8_t __b);  
  469. uint32x4_t vabdq_u32 (uint32x4_t __a, uint32x4_t __b);  
  470. /*--2、Absolute difference - long(长指令): vabdl -> ri = |ai - bi|;  
  471. The elements in the result vector are wider--*/  
  472. int16x8_t vabdl_s8 (int8x8_t __a, int8x8_t __b);  
  473. int32x4_t vabdl_s16 (int16x4_t __a, int16x4_t __b);  
  474. int64x2_t vabdl_s32 (int32x2_t __a, int32x2_t __b);  
  475. uint16x8_t vabdl_u8 (uint8x8_t __a, uint8x8_t __b);  
  476. uint32x4_t vabdl_u16 (uint16x4_t __a, uint16x4_t __b);  
  477. uint64x2_t vabdl_u32 (uint32x2_t __a, uint32x2_t __b);  
  478. /*--3、Absolute difference and accumulate: vaba -> ri = ai + |bi - ci|;--*/  
  479. int8x8_t vaba_s8 (int8x8_t __a, int8x8_t __b, int8x8_t __c);  
  480. int16x4_t vaba_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c);  
  481. int32x2_t vaba_s32 (int32x2_t __a, int32x2_t __b, int32x2_t __c);  
  482. uint8x8_t vaba_u8 (uint8x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  483. uint16x4_t vaba_u16 (uint16x4_t __a, uint16x4_t __b, uint16x4_t __c);  
  484. uint32x2_t vaba_u32 (uint32x2_t __a, uint32x2_t __b, uint32x2_t __c);  
  485. int8x16_t vabaq_s8 (int8x16_t __a, int8x16_t __b, int8x16_t __c);  
  486. int16x8_t vabaq_s16 (int16x8_t __a, int16x8_t __b, int16x8_t __c);  
  487. int32x4_t vabaq_s32 (int32x4_t __a, int32x4_t __b, int32x4_t __c);  
  488. uint8x16_t vabaq_u8 (uint8x16_t __a, uint8x16_t __b, uint8x16_t __c);  
  489. uint16x8_t vabaq_u16 (uint16x8_t __a, uint16x8_t __b, uint16x8_t __c);  
  490. uint32x4_t vabaq_u32 (uint32x4_t __a, uint32x4_t __b, uint32x4_t __c);  
  491. /*--4、Absolute difference and accumulate - long: vabal -> ri = ai + |bi - ci|;  
  492. The elements in the result are wider--*/  
  493. int16x8_t vabal_s8 (int16x8_t __a, int8x8_t __b, int8x8_t __c);  
  494. int32x4_t vabal_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c);  
  495. int64x2_t vabal_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c);  
  496. uint16x8_t vabal_u8 (uint16x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  497. uint32x4_t vabal_u16 (uint32x4_t __a, uint16x4_t __b, uint16x4_t __c);  
  498. uint64x2_t vabal_u32 (uint64x2_t __a, uint32x2_t __b, uint32x2_t __c);  
  499. /***********************************************Max*************************************/  
  500. /*--正常指令, vmax -> ri = ai >= bi ? ai : bi; returns the larger of each pair--*/  
  501. int8x8_t vmax_s8 (int8x8_t __a, int8x8_t __b);//_mm_max_epi8  
  502. int16x4_t vmax_s16 (int16x4_t __a, int16x4_t __b);//_mm_max_epi16  
  503. int32x2_t vmax_s32 (int32x2_t __a, int32x2_t __b);//_mm_max_epi32  
  504. float32x2_t vmax_f32 (float32x2_t __a, float32x2_t __b);//_mm_max_ps  
  505. uint8x8_t vmax_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_max_epu8  
  506. uint16x4_t vmax_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_max_epu16  
  507. uint32x2_t vmax_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_max_epu32  
  508. int8x16_t vmaxq_s8 (int8x16_t __a, int8x16_t __b);//_mm_max_epi8  
  509. int16x8_t vmaxq_s16 (int16x8_t __a, int16x8_t __b);//_mm_max_epi16  
  510. int32x4_t vmaxq_s32 (int32x4_t __a, int32x4_t __b);//_mm_max_epi32  
  511. float32x4_t vmaxq_f32 (float32x4_t __a, float32x4_t __b);//_mm_max_ps  
  512. uint8x16_t vmaxq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_max_epu8  
  513. uint16x8_t vmaxq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_max_epu16  
  514. uint32x4_t vmaxq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_max_epu32  
  515. /****************************************************Min********************************/  
  516. /*--正常指令, vmin -> ri = ai >= bi ? bi : ai; returns the smaller of each pair--*/  
  517. int8x8_t vmin_s8 (int8x8_t __a, int8x8_t __b);//_mm_min_epi8  
  518. int16x4_t vmin_s16 (int16x4_t __a, int16x4_t __b);//_mm_min_epi16  
  519. int32x2_t vmin_s32 (int32x2_t __a, int32x2_t __b);//_mm_min_epi32  
  520. float32x2_t vmin_f32 (float32x2_t __a, float32x2_t __b);//_mm_min_ps  
  521. uint8x8_t vmin_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_min_epu8  
  522. uint16x4_t vmin_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_min_epu16  
  523. uint32x2_t vmin_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_min_epu32  
  524. int8x16_t vminq_s8 (int8x16_t __a, int8x16_t __b);//_mm_min_epi8  
  525. int16x8_t vminq_s16 (int16x8_t __a, int16x8_t __b);//_mm_min_epi16  
  526. int32x4_t vminq_s32 (int32x4_t __a, int32x4_t __b);//_mm_min_epi32  
  527. float32x4_t vminq_f32 (float32x4_t __a, float32x4_t __b);//_mm_min_ps  
  528. uint8x16_t vminq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_min_epu8  
  529. uint16x8_t vminq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_min_epu16  
  530. uint32x4_t vminq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_min_epu32  
  531. /*******************************************Pairwise addition***************************/  
  532. /*--1、Pairwise add(正常指令):  
  533. vpadd -> r0 = a0 + a1, ..., r3 = a6 + a7, r4 = b0 + b1, ..., r7 = b6 + b7 
  534. adds adjacent pairs of elements of two vectors,  
  535. and places the results in the destination vector.--*/  
  536. //r0 = a0 + a1, ...,r3 = a6 + a7, r4 = b0 + b1, ...,r7 = b6 + b7  
  537. int8x8_t vpadd_s8 (int8x8_t __a, int8x8_t __b);  
  538. int16x4_t vpadd_s16 (int16x4_t __a, int16x4_t __b);  
  539. int32x2_t vpadd_s32 (int32x2_t __a, int32x2_t __b);  
  540. float32x2_t vpadd_f32 (float32x2_t __a, float32x2_t __b);  
  541. uint8x8_t vpadd_u8 (uint8x8_t __a, uint8x8_t __b);  
  542. uint16x4_t vpadd_u16 (uint16x4_t __a, uint16x4_t __b);  
  543. uint32x2_t vpadd_u32 (uint32x2_t __a, uint32x2_t __b);  
  544. /*--2、Long pairwise add: vpaddl vpaddl -> r0 = a0 + a1, ..., r3 = a6 + a7; 
  545. adds adjacent pairs of elements of a vector, sign extends or zero extends the results to  
  546. twice their original width, and places the final results in the destination vector--*/  
  547. int16x4_t vpaddl_s8 (int8x8_t __a);  
  548. int32x2_t vpaddl_s16 (int16x4_t __a);  
  549. int64x1_t vpaddl_s32 (int32x2_t __a);  
  550. uint16x4_t vpaddl_u8 (uint8x8_t __a);  
  551. uint32x2_t vpaddl_u16 (uint16x4_t __a);  
  552. uint64x1_t vpaddl_u32 (uint32x2_t __a);  
  553. int16x8_t vpaddlq_s8 (int8x16_t __a);  
  554. int32x4_t vpaddlq_s16 (int16x8_t __a);  
  555. int64x2_t vpaddlq_s32 (int32x4_t __a);  
  556. uint16x8_t vpaddlq_u8 (uint8x16_t __a);  
  557. uint32x4_t vpaddlq_u16 (uint16x8_t __a);  
  558. uint64x2_t vpaddlq_u32 (uint32x4_t __a);  
  559. /*--3、Long pairwise add and accumulate:  
  560. vpadal -> r0 = a0 + (b0 + b1), ..., r3 = a3 + (b6 + b7); 
  561. adds adjacent pairs of elements in the second vector, sign extends or zero extends the 
  562. results to twice the original width.  It then accumulates this with the corresponding  
  563. element in the first vector and places the final results in the destination vector--*/  
  564. int16x4_t vpadal_s8 (int16x4_t __a, int8x8_t __b);  
  565. int32x2_t vpadal_s16 (int32x2_t __a, int16x4_t __b);  
  566. int64x1_t vpadal_s32 (int64x1_t __a, int32x2_t __b);  
  567. uint16x4_t vpadal_u8 (uint16x4_t __a, uint8x8_t __b);  
  568. uint32x2_t vpadal_u16 (uint32x2_t __a, uint16x4_t __b);  
  569. uint64x1_t vpadal_u32 (uint64x1_t __a, uint32x2_t __b);  
  570. int16x8_t vpadalq_s8 (int16x8_t __a, int8x16_t __b);  
  571. int32x4_t vpadalq_s16 (int32x4_t __a, int16x8_t __b);  
  572. int64x2_t vpadalq_s32 (int64x2_t __a, int32x4_t __b);  
  573. uint16x8_t vpadalq_u8 (uint16x8_t __a, uint8x16_t __b);  
  574. uint32x4_t vpadalq_u16 (uint32x4_t __a, uint16x8_t __b);  
  575. uint64x2_t vpadalq_u32 (uint64x2_t __a, uint32x4_t __b);  
  576. /**********************************************Folding maximum**************************/  
  577. /*--饱和指令, vpmax -> vpmax r0 = a0 >= a1 ? a0 : a1, ..., r4 = b0 >= b1 ? b0 : b1, ...; 
  578. compares adjacent pairs of elements, and copies the larger of each pair into the  
  579. destination vector.The maximums from each pair of the first input vector are stored in  
  580. the lower half of the destination vector. The maximums from each pair of the second input  
  581. vector are stored in the higher half of the destination vector--*/  
  582. int8x8_t vpmax_s8 (int8x8_t __a, int8x8_t __b);  
  583. int16x4_t vpmax_s16 (int16x4_t __a, int16x4_t __b);  
  584. int32x2_t vpmax_s32 (int32x2_t __a, int32x2_t __b);  
  585. float32x2_t vpmax_f32 (float32x2_t __a, float32x2_t __b);  
  586. uint8x8_t vpmax_u8 (uint8x8_t __a, uint8x8_t __b);  
  587. uint16x4_t vpmax_u16 (uint16x4_t __a, uint16x4_t __b);  
  588. uint32x2_t vpmax_u32 (uint32x2_t __a, uint32x2_t __b);  
  589. /***************************************************Folding minimum*********************/  
  590. /*--饱和指令, vpmin -> r0 = a0 >= a1 ? a1 : a0, ..., r4 = b0 >= b1 ? b1 : b0, ...; 
  591. compares adjacent pairs of elements, and copies the smaller of each pair into the  
  592. destination vector.The minimums from each pair of the first input vector are stored in  
  593. the lower half of the destination vector. The minimums from each pair of the second  
  594. input vector are stored in the higher half of the destination vector.--*/  
  595. int8x8_t vpmin_s8 (int8x8_t __a, int8x8_t __b);  
  596. int16x4_t vpmin_s16 (int16x4_t __a, int16x4_t __b);  
  597. int32x2_t vpmin_s32 (int32x2_t __a, int32x2_t __b);  
  598. float32x2_t vpmin_f32 (float32x2_t __a, float32x2_t __b);  
  599. uint8x8_t vpmin_u8 (uint8x8_t __a, uint8x8_t __b);  
  600. uint16x4_t vpmin_u16 (uint16x4_t __a, uint16x4_t __b);  
  601. uint32x2_t vpmin_u32 (uint32x2_t __a, uint32x2_t __b);  
  602. /***************************************************Reciprocal**************************/  
  603. /*--1、饱和指令, Newton-Raphson iteration(牛顿 - 拉夫逊迭代) 
  604. performs a Newton-Raphson step for finding the reciprocal. It multiplies the elements of 
  605. one vector by the corresponding elements of another vector, subtracts each of the results 
  606. from 2, and places the final results into the elements of the destination vector--*/  
  607. float32x2_t vrecps_f32 (float32x2_t __a, float32x2_t __b);  
  608. float32x4_t vrecpsq_f32 (float32x4_t __a, float32x4_t __b);  
  609. /*--2、饱和指令,performs a Newton-Raphson step for finding the reciprocal square root.  
  610. It multiplies the elements of one vector by the corresponding elements of another vector,  
  611. subtracts each of the results from 3, divides these results by two, and places  
  612. the final results into the elements of the destination vector--*/  
  613. float32x2_t vrsqrts_f32 (float32x2_t __a, float32x2_t __b);  
  614. float32x4_t vrsqrtsq_f32 (float32x4_t __a, float32x4_t __b);  
  615. /************************************************Shifts by signed variable**************/  
  616. /*--1、Vector shift left(饱和指令): vshl -> ri = ai << bi; (negative values shift right) 
  617. left shifts each element in a vector by an amount specified in the corresponding element  
  618. in the second input vector. The shift amount is the signed integer value of the least  
  619. significant byte of the element in the second input vector. The bits shifted out of each 
  620. element are lost.If the signed integer value is negative, it results in a right shift--*/  
  621. int8x8_t vshl_s8 (int8x8_t __a, int8x8_t __b);  
  622. int16x4_t vshl_s16 (int16x4_t __a, int16x4_t __b);  
  623. int32x2_t vshl_s32 (int32x2_t __a, int32x2_t __b);  
  624. int64x1_t vshl_s64 (int64x1_t __a, int64x1_t __b);  
  625. uint8x8_t vshl_u8 (uint8x8_t __a, int8x8_t __b);  
  626. uint16x4_t vshl_u16 (uint16x4_t __a, int16x4_t __b);  
  627. uint32x2_t vshl_u32 (uint32x2_t __a, int32x2_t __b);  
  628. uint64x1_t vshl_u64 (uint64x1_t __a, int64x1_t __b);  
  629. int8x16_t vshlq_s8 (int8x16_t __a, int8x16_t __b);  
  630. int16x8_t vshlq_s16 (int16x8_t __a, int16x8_t __b);  
  631. int32x4_t vshlq_s32 (int32x4_t __a, int32x4_t __b);  
  632. int64x2_t vshlq_s64 (int64x2_t __a, int64x2_t __b);  
  633. uint8x16_t vshlq_u8 (uint8x16_t __a, int8x16_t __b);  
  634. uint16x8_t vshlq_u16 (uint16x8_t __a, int16x8_t __b);  
  635. uint32x4_t vshlq_u32 (uint32x4_t __a, int32x4_t __b);  
  636. uint64x2_t vshlq_u64 (uint64x2_t __a, int64x2_t __b);  
  637. /*--2、Vector saturating shift left(饱和指令):  
  638. vqshl -> ri = ai << bi;(negative values shift right) 
  639. If the shift value is positive, the operation is a left shift. Otherwise, it is a  
  640. truncating right shift. left shifts each element in a vector of integers and places 
  641. the results in the destination vector. It is similar to VSHL.  
  642. The difference is that the sticky QC flag is set if saturation occurs--*/  
  643. int8x8_t vqshl_s8 (int8x8_t __a, int8x8_t __b);  
  644. int16x4_t vqshl_s16 (int16x4_t __a, int16x4_t __b);  
  645. int32x2_t vqshl_s32 (int32x2_t __a, int32x2_t __b);  
  646. int64x1_t vqshl_s64 (int64x1_t __a, int64x1_t __b);  
  647. uint8x8_t vqshl_u8 (uint8x8_t __a, int8x8_t __b);  
  648. uint16x4_t vqshl_u16 (uint16x4_t __a, int16x4_t __b);  
  649. uint32x2_t vqshl_u32 (uint32x2_t __a, int32x2_t __b);  
  650. uint64x1_t vqshl_u64 (uint64x1_t __a, int64x1_t __b);  
  651. int8x16_t vqshlq_s8 (int8x16_t __a, int8x16_t __b);  
  652. int16x8_t vqshlq_s16 (int16x8_t __a, int16x8_t __b);  
  653. int32x4_t vqshlq_s32 (int32x4_t __a, int32x4_t __b);  
  654. int64x2_t vqshlq_s64 (int64x2_t __a, int64x2_t __b);  
  655. uint8x16_t vqshlq_u8 (uint8x16_t __a, int8x16_t __b);  
  656. uint16x8_t vqshlq_u16 (uint16x8_t __a, int16x8_t __b);  
  657. uint32x4_t vqshlq_u32 (uint32x4_t __a, int32x4_t __b);  
  658. uint64x2_t vqshlq_u64 (uint64x2_t __a, int64x2_t __b);  
  659. /*--3、Vector rounding shift left(饱和指令):  
  660. vrshl -> ri = ai << bi;(negative values shift right) 
  661. If the shift value is positive, the operation is a left shift. Otherwise, it is a 
  662. rounding right shift. left shifts each element in a vector of integers and places 
  663. the results in the destination vector. It is similar to VSHL.  
  664. The difference is that the shifted value is then rounded.--*/  
  665. int8x8_t vrshl_s8 (int8x8_t __a, int8x8_t __b);  
  666. int16x4_t vrshl_s16 (int16x4_t __a, int16x4_t __b);  
  667. int32x2_t vrshl_s32 (int32x2_t __a, int32x2_t __b);  
  668. int64x1_t vrshl_s64 (int64x1_t __a, int64x1_t __b);  
  669. uint8x8_t vrshl_u8 (uint8x8_t __a, int8x8_t __b);  
  670. uint16x4_t vrshl_u16 (uint16x4_t __a, int16x4_t __b);  
  671. uint32x2_t vrshl_u32 (uint32x2_t __a, int32x2_t __b);  
  672. uint64x1_t vrshl_u64 (uint64x1_t __a, int64x1_t __b);  
  673. int8x16_t vrshlq_s8 (int8x16_t __a, int8x16_t __b);  
  674. int16x8_t vrshlq_s16 (int16x8_t __a, int16x8_t __b);  
  675. int32x4_t vrshlq_s32 (int32x4_t __a, int32x4_t __b);  
  676. int64x2_t vrshlq_s64 (int64x2_t __a, int64x2_t __b);  
  677. uint8x16_t vrshlq_u8 (uint8x16_t __a, int8x16_t __b);  
  678. uint16x8_t vrshlq_u16 (uint16x8_t __a, int16x8_t __b);  
  679. uint32x4_t vrshlq_u32 (uint32x4_t __a, int32x4_t __b);  
  680. uint64x2_t vrshlq_u64 (uint64x2_t __a, int64x2_t __b);  
  681. /*--4、Vector saturating rounding shift left(饱和指令): 
  682. vqrshl -> ri = ai << bi;(negative values shift right) 
  683. left shifts each element in a vector of integers and places the results in the  
  684. destination vector.It is similar to VSHL. The difference is that the shifted value 
  685. is rounded, and the sticky QC flag is set if saturation occurs.--*/  
  686. int8x8_t vqrshl_s8 (int8x8_t __a, int8x8_t __b);  
  687. int16x4_t vqrshl_s16 (int16x4_t __a, int16x4_t __b);  
  688. int32x2_t vqrshl_s32 (int32x2_t __a, int32x2_t __b);  
  689. int64x1_t vqrshl_s64 (int64x1_t __a, int64x1_t __b);  
  690. uint8x8_t vqrshl_u8 (uint8x8_t __a, int8x8_t __b);  
  691. uint16x4_t vqrshl_u16 (uint16x4_t __a, int16x4_t __b);  
  692. uint32x2_t vqrshl_u32 (uint32x2_t __a, int32x2_t __b);  
  693. uint64x1_t vqrshl_u64 (uint64x1_t __a, int64x1_t __b);  
  694. int8x16_t vqrshlq_s8 (int8x16_t __a, int8x16_t __b);  
  695. int16x8_t vqrshlq_s16 (int16x8_t __a, int16x8_t __b);  
  696. int32x4_t vqrshlq_s32 (int32x4_t __a, int32x4_t __b);  
  697. int64x2_t vqrshlq_s64 (int64x2_t __a, int64x2_t __b);  
  698. uint8x16_t vqrshlq_u8 (uint8x16_t __a, int8x16_t __b);  
  699. uint16x8_t vqrshlq_u16 (uint16x8_t __a, int16x8_t __b);  
  700. uint32x4_t vqrshlq_u32 (uint32x4_t __a, int32x4_t __b);  
  701. uint64x2_t vqrshlq_u64 (uint64x2_t __a, int64x2_t __b);  
  702. /****************************************Shifts by a constant***************************/  
  703. /*--1、Vector shift right by constant: vshr -> ri = ai >> b;The results are truncated. 
  704. right shifts each element in a vector by an immediate value,  
  705. and places the results in the destination vector.--*/  
  706. int8x8_t vshr_n_s8 (int8x8_t __a, const int __b);  
  707. int16x4_t vshr_n_s16 (int16x4_t __a, const int __b);  
  708. int32x2_t vshr_n_s32 (int32x2_t __a, const int __b);  
  709. int64x1_t vshr_n_s64 (int64x1_t __a, const int __b);  
  710. uint8x8_t vshr_n_u8 (uint8x8_t __a, const int __b);  
  711. uint16x4_t vshr_n_u16 (uint16x4_t __a, const int __b);  
  712. uint32x2_t vshr_n_u32 (uint32x2_t __a, const int __b);  
  713. uint64x1_t vshr_n_u64 (uint64x1_t __a, const int __b);  
  714. int8x16_t vshrq_n_s8 (int8x16_t __a, const int __b);  
  715. int16x8_t vshrq_n_s16 (int16x8_t __a, const int __b);  
  716. int32x4_t vshrq_n_s32 (int32x4_t __a, const int __b);  
  717. int64x2_t vshrq_n_s64 (int64x2_t __a, const int __b);  
  718. uint8x16_t vshrq_n_u8 (uint8x16_t __a, const int __b);  
  719. uint16x8_t vshrq_n_u16 (uint16x8_t __a, const int __b);  
  720. uint32x4_t vshrq_n_u32 (uint32x4_t __a, const int __b);  
  721. uint64x2_t vshrq_n_u64 (uint64x2_t __a, const int __b);  
  722. /*--2、Vector shift left by constant: vshl -> ri = ai << b; 
  723. left shifts each element in a vector by an immediate value, and places the results in the  
  724. destination vector. The bits shifted out of the left of each element are lost--*/  
  725. int8x8_t vshl_n_s8 (int8x8_t __a, const int __b);  
  726. int16x4_t vshl_n_s16 (int16x4_t __a, const int __b);  
  727. int32x2_t vshl_n_s32 (int32x2_t __a, const int __b);  
  728. int64x1_t vshl_n_s64 (int64x1_t __a, const int __b);  
  729. uint8x8_t vshl_n_u8 (uint8x8_t __a, const int __b);  
  730. uint16x4_t vshl_n_u16 (uint16x4_t __a, const int __b);  
  731. uint32x2_t vshl_n_u32 (uint32x2_t __a, const int __b);  
  732. uint64x1_t vshl_n_u64 (uint64x1_t __a, const int __b);  
  733. int8x16_t vshlq_n_s8 (int8x16_t __a, const int __b);  
  734. int16x8_t vshlq_n_s16 (int16x8_t __a, const int __b);  
  735. int32x4_t vshlq_n_s32 (int32x4_t __a, const int __b);  
  736. int64x2_t vshlq_n_s64 (int64x2_t __a, const int __b);  
  737. uint8x16_t vshlq_n_u8 (uint8x16_t __a, const int __b);  
  738. uint16x8_t vshlq_n_u16 (uint16x8_t __a, const int __b);  
  739. uint32x4_t vshlq_n_u32 (uint32x4_t __a, const int __b);  
  740. uint64x2_t vshlq_n_u64 (uint64x2_t __a, const int __b);  
  741. /*--3、Vector rounding shift right by constant: vrshr -> ri = ai >> b; 
  742. right shifts each element in a vector by an immediate value, and places the results 
  743. in the destination vector. The shifted values are rounded.--*/  
  744. int8x8_t vrshr_n_s8 (int8x8_t __a, const int __b);  
  745. int16x4_t vrshr_n_s16 (int16x4_t __a, const int __b);  
  746. int32x2_t vrshr_n_s32 (int32x2_t __a, const int __b);  
  747. int64x1_t vrshr_n_s64 (int64x1_t __a, const int __b);  
  748. uint8x8_t vrshr_n_u8 (uint8x8_t __a, const int __b);  
  749. uint16x4_t vrshr_n_u16 (uint16x4_t __a, const int __b);  
  750. uint32x2_t vrshr_n_u32 (uint32x2_t __a, const int __b);  
  751. uint64x1_t vrshr_n_u64 (uint64x1_t __a, const int __b);  
  752. int8x16_t vrshrq_n_s8 (int8x16_t __a, const int __b);  
  753. int16x8_t vrshrq_n_s16 (int16x8_t __a, const int __b);  
  754. int32x4_t vrshrq_n_s32 (int32x4_t __a, const int __b);  
  755. int64x2_t vrshrq_n_s64 (int64x2_t __a, const int __b);  
  756. uint8x16_t vrshrq_n_u8 (uint8x16_t __a, const int __b);  
  757. uint16x8_t vrshrq_n_u16 (uint16x8_t __a, const int __b);  
  758. uint32x4_t vrshrq_n_u32 (uint32x4_t __a, const int __b);  
  759. uint64x2_t vrshrq_n_u64 (uint64x2_t __a, const int __b);  
  760. /*--4、Vector shift right by constant and accumulate: vsra -> ri = (ai >> c) + (bi >> c);  
  761. The results are truncated. right shifts each element in a vector by an immediate value,  
  762. and accumulates the results into the destination vector.--*/  
  763. int8x8_t vsra_n_s8 (int8x8_t __a, int8x8_t __b, const int __c);  
  764. int16x4_t vsra_n_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  765. int32x2_t vsra_n_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  766. int64x1_t vsra_n_s64 (int64x1_t __a, int64x1_t __b, const int __c);  
  767. uint8x8_t vsra_n_u8 (uint8x8_t __a, uint8x8_t __b, const int __c);  
  768. uint16x4_t vsra_n_u16 (uint16x4_t __a, uint16x4_t __b, const int __c);  
  769. uint32x2_t vsra_n_u32 (uint32x2_t __a, uint32x2_t __b, const int __c);  
  770. uint64x1_t vsra_n_u64 (uint64x1_t __a, uint64x1_t __b, const int __c);  
  771. int8x16_t vsraq_n_s8 (int8x16_t __a, int8x16_t __b, const int __c);  
  772. int16x8_t vsraq_n_s16 (int16x8_t __a, int16x8_t __b, const int __c);  
  773. int32x4_t vsraq_n_s32 (int32x4_t __a, int32x4_t __b, const int __c);  
  774. int64x2_t vsraq_n_s64 (int64x2_t __a, int64x2_t __b, const int __c);  
  775. uint8x16_t vsraq_n_u8 (uint8x16_t __a, uint8x16_t __b, const int __c);  
  776. uint16x8_t vsraq_n_u16 (uint16x8_t __a, uint16x8_t __b, const int __c);  
  777. uint32x4_t vsraq_n_u32 (uint32x4_t __a, uint32x4_t __b, const int __c);  
  778. uint64x2_t vsraq_n_u64 (uint64x2_t __a, uint64x2_t __b, const int __c);  
  779. /*--5、Vector rounding shift right by constant and accumulate:  
  780. vrsra -> ri = (ai >> c) + (bi >> c); 
  781. The results are rounded.right shifts each element in a vector by an immediate value,  
  782. and accumulates the rounded results into the destination vector.--*/  
  783. int8x8_t vrsra_n_s8 (int8x8_t __a, int8x8_t __b, const int __c);  
  784. int16x4_t vrsra_n_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  785. int32x2_t vrsra_n_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  786. int64x1_t vrsra_n_s64 (int64x1_t __a, int64x1_t __b, const int __c);  
  787. uint8x8_t vrsra_n_u8 (uint8x8_t __a, uint8x8_t __b, const int __c);  
  788. uint16x4_t vrsra_n_u16 (uint16x4_t __a, uint16x4_t __b, const int __c);  
  789. uint32x2_t vrsra_n_u32 (uint32x2_t __a, uint32x2_t __b, const int __c);  
  790. uint64x1_t vrsra_n_u64 (uint64x1_t __a, uint64x1_t __b, const int __c);  
  791. int8x16_t vrsraq_n_s8 (int8x16_t __a, int8x16_t __b, const int __c);  
  792. int16x8_t vrsraq_n_s16 (int16x8_t __a, int16x8_t __b, const int __c);  
  793. int32x4_t vrsraq_n_s32 (int32x4_t __a, int32x4_t __b, const int __c);  
  794. int64x2_t vrsraq_n_s64 (int64x2_t __a, int64x2_t __b, const int __c);  
  795. uint8x16_t vrsraq_n_u8 (uint8x16_t __a, uint8x16_t __b, const int __c);  
  796. uint16x8_t vrsraq_n_u16 (uint16x8_t __a, uint16x8_t __b, const int __c);  
  797. uint32x4_t vrsraq_n_u32 (uint32x4_t __a, uint32x4_t __b, const int __c);  
  798. uint64x2_t vrsraq_n_u64 (uint64x2_t __a, uint64x2_t __b, const int __c);  
  799. /*--6、Vector saturating shift left by constant: vqshl -> ri = sat(ai << b);  
  800. left shifts each element in a vector of integers by an immediate value, and places the  
  801. results in the destination vector,and the sticky QC flag is set if saturation occurs.--*/  
  802. int8x8_t vqshl_n_s8 (int8x8_t __a, const int __b);  
  803. int16x4_t vqshl_n_s16 (int16x4_t __a, const int __b);  
  804. int32x2_t vqshl_n_s32 (int32x2_t __a, const int __b);  
  805. int64x1_t vqshl_n_s64 (int64x1_t __a, const int __b);  
  806. uint8x8_t vqshl_n_u8 (uint8x8_t __a, const int __b);  
  807. uint16x4_t vqshl_n_u16 (uint16x4_t __a, const int __b);  
  808. uint32x2_t vqshl_n_u32 (uint32x2_t __a, const int __b);  
  809. uint64x1_t vqshl_n_u64 (uint64x1_t __a, const int __b);  
  810. int8x16_t vqshlq_n_s8 (int8x16_t __a, const int __b);  
  811. int16x8_t vqshlq_n_s16 (int16x8_t __a, const int __b);  
  812. int32x4_t vqshlq_n_s32 (int32x4_t __a, const int __b);  
  813. int64x2_t vqshlq_n_s64 (int64x2_t __a, const int __b);  
  814. uint8x16_t vqshlq_n_u8 (uint8x16_t __a, const int __b);  
  815. uint16x8_t vqshlq_n_u16 (uint16x8_t __a, const int __b);  
  816. uint32x4_t vqshlq_n_u32 (uint32x4_t __a, const int __b);  
  817. uint64x2_t vqshlq_n_u64 (uint64x2_t __a, const int __b);  
  818. /*--7、Vector signed->unsigned saturating shift left by constant: vqshlu -> ri = ai << b;  
  819. left shifts each element in a vector of integers by an immediate value, places the  
  820. results in the destination vector, the sticky QC flag is set if saturation occurs,  
  821. and indicates that the results are unsigned even though the operands are signed.--*/  
  822. uint8x8_t vqshlu_n_s8 (int8x8_t __a, const int __b);  
  823. uint16x4_t vqshlu_n_s16 (int16x4_t __a, const int __b);  
  824. uint32x2_t vqshlu_n_s32 (int32x2_t __a, const int __b);  
  825. uint64x1_t vqshlu_n_s64 (int64x1_t __a, const int __b);  
  826. uint8x16_t vqshluq_n_s8 (int8x16_t __a, const int __b);  
  827. uint16x8_t vqshluq_n_s16 (int16x8_t __a, const int __b);  
  828. uint32x4_t vqshluq_n_s32 (int32x4_t __a, const int __b);  
  829. uint64x2_t vqshluq_n_s64 (int64x2_t __a, const int __b);  
  830. /*--8、Vector narrowing shift right by constant: vshrn -> ri = ai >> b; 
  831. The results are truncated.right shifts each element in the input vector by an  
  832. immediate value. It then narrows the result by storing only the least significant 
  833. half of each element into the destination vector.--*/  
  834. int8x8_t vshrn_n_s16 (int16x8_t __a, const int __b);  
  835. int16x4_t vshrn_n_s32 (int32x4_t __a, const int __b);  
  836. int32x2_t vshrn_n_s64 (int64x2_t __a, const int __b);  
  837. uint8x8_t vshrn_n_u16 (uint16x8_t __a, const int __b);  
  838. uint16x4_t vshrn_n_u32 (uint32x4_t __a, const int __b);  
  839. uint32x2_t vshrn_n_u64 (uint64x2_t __a, const int __b);  
  840. /*--9、Vector signed->unsigned narrowing saturating shift right by constant:  
  841. vqshrun -> ri = ai >> b;  
  842. Results are truncated. right shifts each element in a quadword vector of integers by an 
  843. immediate value, and places the results in a doubleword vector. The results are unsigned,  
  844. although the operands are signed. The sticky QC flag is set if saturation occurs.--*/  
  845. uint8x8_t vqshrun_n_s16 (int16x8_t __a, const int __b);  
  846. uint16x4_t vqshrun_n_s32 (int32x4_t __a, const int __b);  
  847. uint32x2_t vqshrun_n_s64 (int64x2_t __a, const int __b);  
  848. /*--10、Vector signed->unsigned rounding narrowing saturating shift right by constant:  
  849. vqrshrun -> ri = ai >> b; Results are rounded. right shifts each element in a quadword  
  850. vector of integers by an immediate value, and places the rounded results in a doubleword  
  851. vector. The results are unsigned, although the operands are signed.--*/  
  852. uint8x8_t vqrshrun_n_s16 (int16x8_t __a, const int __b);  
  853. uint16x4_t vqrshrun_n_s32 (int32x4_t __a, const int __b);  
  854. uint32x2_t vqrshrun_n_s64 (int64x2_t __a, const int __b);  
  855. /*--11、Vector narrowing saturating shift right by constant: vqshrn -> ri = ai >> b;  
  856. Results are truncated. right shifts each element in a quadword vector of integers by an  
  857. immediate value, and places the results in a doubleword vector,  
  858. and the sticky QC flag is set if saturation occurs.--*/  
  859. int8x8_t vqshrn_n_s16 (int16x8_t __a, const int __b);  
  860. int16x4_t vqshrn_n_s32 (int32x4_t __a, const int __b);  
  861. int32x2_t vqshrn_n_s64 (int64x2_t __a, const int __b);  
  862. uint8x8_t vqshrn_n_u16 (uint16x8_t __a, const int __b);  
  863. uint16x4_t vqshrn_n_u32 (uint32x4_t __a, const int __b);  
  864. uint32x2_t vqshrn_n_u64 (uint64x2_t __a, const int __b);  
  865. /*--12、Vector rounding narrowing shift right by constant: vrshrn -> ri = ai >> b;  
  866. The results are rounded. right shifts each element in a vector by an immediate value, 
  867. and places the rounded,narrowed results in the destination vector.--*/  
  868. int8x8_t vrshrn_n_s16 (int16x8_t __a, const int __b);  
  869. int16x4_t vrshrn_n_s32 (int32x4_t __a, const int __b);  
  870. int32x2_t vrshrn_n_s64 (int64x2_t __a, const int __b);  
  871. uint8x8_t vrshrn_n_u16 (uint16x8_t __a, const int __b);  
  872. uint16x4_t vrshrn_n_u32 (uint32x4_t __a, const int __b);  
  873. uint32x2_t vrshrn_n_u64 (uint64x2_t __a, const int __b);  
  874. /*--13、Vector rounding narrowing saturating shift right by constant: 
  875. vqrshrn -> ri = ai >> b; 
  876. Results are rounded. right shifts each element in a quadword vector of integers by an  
  877. immediate value,and places the rounded,narrowed results in a doubleword vector.  
  878. The sticky QC flag is set if saturation occurs.--*/  
  879. int8x8_t vqrshrn_n_s16 (int16x8_t __a, const int __b);  
  880. int16x4_t vqrshrn_n_s32 (int32x4_t __a, const int __b);  
  881. int32x2_t vqrshrn_n_s64 (int64x2_t __a, const int __b);  
  882. uint8x8_t vqrshrn_n_u16 (uint16x8_t __a, const int __b);  
  883. uint16x4_t vqrshrn_n_u32 (uint32x4_t __a, const int __b);  
  884. uint32x2_t vqrshrn_n_u64 (uint64x2_t __a, const int __b);  
  885. /*--14、Vector widening shift left by constant: vshll -> ri = ai << b;  
  886. left shifts each element in a vector of integers by an immediate value,  
  887. and place the results in the destination vector. Bits shifted out of the left of each 
  888. element are lost and values are sign extended or zero extended.--*/  
  889. int16x8_t vshll_n_s8 (int8x8_t __a, const int __b);  
  890. int32x4_t vshll_n_s16 (int16x4_t __a, const int __b);  
  891. int64x2_t vshll_n_s32 (int32x2_t __a, const int __b);  
  892. uint16x8_t vshll_n_u8 (uint8x8_t __a, const int __b);  
  893. uint32x4_t vshll_n_u16 (uint16x4_t __a, const int __b);  
  894. uint64x2_t vshll_n_u32 (uint32x2_t __a, const int __b);  
  895. /********************************************Shifts with insert*************************/  
  896. /*--1、Vector shift right and insert: vsri -> ; The two most significant bits in the  
  897. destination vector are unchanged. right shifts each element in the second input vector  
  898. by an immediate value, and inserts the results in the destination vector. It does not  
  899. affect the highest n significant bits of the elements in the destination register. 
  900. Bits shifted out of the right of each element are lost.The first input vector holds 
  901. the elements of the destination vector before the operation is performed.--*/  
  902. int8x8_t vsri_n_s8 (int8x8_t __a, int8x8_t __b, const int __c);  
  903. int16x4_t vsri_n_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  904. int32x2_t vsri_n_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  905. int64x1_t vsri_n_s64 (int64x1_t __a, int64x1_t __b, const int __c);  
  906. uint8x8_t vsri_n_u8 (uint8x8_t __a, uint8x8_t __b, const int __c);  
  907. uint16x4_t vsri_n_u16 (uint16x4_t __a, uint16x4_t __b, const int __c);  
  908. uint32x2_t vsri_n_u32 (uint32x2_t __a, uint32x2_t __b, const int __c);  
  909. uint64x1_t vsri_n_u64 (uint64x1_t __a, uint64x1_t __b, const int __c);  
  910. poly8x8_t vsri_n_p8 (poly8x8_t __a, poly8x8_t __b, const int __c);  
  911. poly16x4_t vsri_n_p16 (poly16x4_t __a, poly16x4_t __b, const int __c);  
  912. int8x16_t vsriq_n_s8 (int8x16_t __a, int8x16_t __b, const int __c);  
  913. int16x8_t vsriq_n_s16 (int16x8_t __a, int16x8_t __b, const int __c);  
  914. int32x4_t vsriq_n_s32 (int32x4_t __a, int32x4_t __b, const int __c);  
  915. int64x2_t vsriq_n_s64 (int64x2_t __a, int64x2_t __b, const int __c);  
  916. uint8x16_t vsriq_n_u8 (uint8x16_t __a, uint8x16_t __b, const int __c);  
  917. uint16x8_t vsriq_n_u16 (uint16x8_t __a, uint16x8_t __b, const int __c);  
  918. uint32x4_t vsriq_n_u32 (uint32x4_t __a, uint32x4_t __b, const int __c);  
  919. uint64x2_t vsriq_n_u64 (uint64x2_t __a, uint64x2_t __b, const int __c);  
  920. poly8x16_t vsriq_n_p8 (poly8x16_t __a, poly8x16_t __b, const int __c);  
  921. poly16x8_t vsriq_n_p16 (poly16x8_t __a, poly16x8_t __b, const int __c);  
  922. /*--2、Vector shift left and insert: vsli ->; The least significant bit in each element 
  923. in the destination vector is unchanged. left shifts each element in the second input  
  924. vector by an immediate value, and inserts the results in the destination vector. 
  925. It does not affect the lowest n significant bits of the elements in the destination  
  926. register. Bits shifted out of the left of each element are lost. The first input vector 
  927. holds the elements of the destination vector before the operation is performed.--*/  
  928. int8x8_t vsli_n_s8 (int8x8_t __a, int8x8_t __b, const int __c);  
  929. int16x4_t vsli_n_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  930. int32x2_t vsli_n_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  931. int64x1_t vsli_n_s64 (int64x1_t __a, int64x1_t __b, const int __c);  
  932. uint8x8_t vsli_n_u8 (uint8x8_t __a, uint8x8_t __b, const int __c);  
  933. uint16x4_t vsli_n_u16 (uint16x4_t __a, uint16x4_t __b, const int __c);  
  934. uint32x2_t vsli_n_u32 (uint32x2_t __a, uint32x2_t __b, const int __c);  
  935. uint64x1_t vsli_n_u64 (uint64x1_t __a, uint64x1_t __b, const int __c);  
  936. poly8x8_t vsli_n_p8 (poly8x8_t __a, poly8x8_t __b, const int __c);  
  937. poly16x4_t vsli_n_p16 (poly16x4_t __a, poly16x4_t __b, const int __c);  
  938. int8x16_t vsliq_n_s8 (int8x16_t __a, int8x16_t __b, const int __c);  
  939. int16x8_t vsliq_n_s16 (int16x8_t __a, int16x8_t __b, const int __c);  
  940. int32x4_t vsliq_n_s32 (int32x4_t __a, int32x4_t __b, const int __c);  
  941. int64x2_t vsliq_n_s64 (int64x2_t __a, int64x2_t __b, const int __c);  
  942. uint8x16_t vsliq_n_u8 (uint8x16_t __a, uint8x16_t __b, const int __c);  
  943. uint16x8_t vsliq_n_u16 (uint16x8_t __a, uint16x8_t __b, const int __c);  
  944. uint32x4_t vsliq_n_u32 (uint32x4_t __a, uint32x4_t __b, const int __c);  
  945. uint64x2_t vsliq_n_u64 (uint64x2_t __a, uint64x2_t __b, const int __c);  
  946. poly8x16_t vsliq_n_p8 (poly8x16_t __a, poly8x16_t __b, const int __c);  
  947. poly16x8_t vsliq_n_p16 (poly16x8_t __a, poly16x8_t __b, const int __c);  
  948. /*****************************************Absolute value********************************/  
  949. /*--1、Absolute(正常指令): vabs -> ri = |ai|; 
  950. returns the absolute value of each element in a vector.--*/  
  951. int8x8_t vabs_s8 (int8x8_t __a);//_mm_abs_epi8  
  952. int16x4_t vabs_s16 (int16x4_t __a);//_mm_abs_epi16  
  953. int32x2_t vabs_s32 (int32x2_t __a);//_mm_abs_epi32  
  954. float32x2_t vabs_f32 (float32x2_t __a);  
  955. int8x16_t vabsq_s8 (int8x16_t __a);//_mm_abs_epi8  
  956. int16x8_t vabsq_s16 (int16x8_t __a);//_mm_abs_epi16  
  957. int32x4_t vabsq_s32 (int32x4_t __a);//_mm_abs_epi32  
  958. float32x4_t vabsq_f32 (float32x4_t __a);  
  959. /*--2、Saturating absolute(饱和指令): vqabs -> ri = sat(|ai|); 
  960. returns the absolute value of each element in a vector. If any of the results overflow, 
  961. they are saturated and the sticky QC flag is set.--*/  
  962. int8x8_t vqabs_s8 (int8x8_t __a);  
  963. int16x4_t vqabs_s16 (int16x4_t __a);  
  964. int32x2_t vqabs_s32 (int32x2_t __a);  
  965. int8x16_t vqabsq_s8 (int8x16_t __a);  
  966. int16x8_t vqabsq_s16 (int16x8_t __a);  
  967. int32x4_t vqabsq_s32 (int32x4_t __a);  
  968. /***************************************************Negation****************************/  
  969. /*--1、Negate(正常指令): vneg -> ri = -ai; negates each element in a vector.--*/  
  970. int8x8_t vneg_s8 (int8x8_t __a);  
  971. int16x4_t vneg_s16 (int16x4_t __a);  
  972. int32x2_t vneg_s32 (int32x2_t __a);  
  973. float32x2_t vneg_f32 (float32x2_t __a);  
  974. int8x16_t vnegq_s8 (int8x16_t __a);  
  975. int16x8_t vnegq_s16 (int16x8_t __a);  
  976. int32x4_t vnegq_s32 (int32x4_t __a);  
  977. float32x4_t vnegq_f32 (float32x4_t __a);  
  978. /*--2、Saturating Negate: vqneg -> ri = sat(-ai); 
  979. negates each element in a vector. If any of the results overflow,  
  980. they are saturated and the sticky QC flag is set.--*/  
  981. int8x8_t vqneg_s8 (int8x8_t __a);  
  982. int16x4_t vqneg_s16 (int16x4_t __a);  
  983. int32x2_t vqneg_s32 (int32x2_t __a);  
  984. int8x16_t vqnegq_s8 (int8x16_t __a);  
  985. int16x8_t vqnegq_s16 (int16x8_t __a);  
  986. int32x4_t vqnegq_s32 (int32x4_t __a);  
  987. /********************************************Logical operations*************************/  
  988. /*--1、Bitwise not(正常指令): vmvn -> ri = ~ai;  
  989. performs a bitwise inversion of each element from the input vector.--*/  
  990. int8x8_t vmvn_s8 (int8x8_t __a);  
  991. int16x4_t vmvn_s16 (int16x4_t __a);  
  992. int32x2_t vmvn_s32 (int32x2_t __a);  
  993. uint8x8_t vmvn_u8 (uint8x8_t __a);  
  994. uint16x4_t vmvn_u16 (uint16x4_t __a);  
  995. uint32x2_t vmvn_u32 (uint32x2_t __a);  
  996. poly8x8_t vmvn_p8 (poly8x8_t __a);  
  997. int8x16_t vmvnq_s8 (int8x16_t __a);  
  998. int16x8_t vmvnq_s16 (int16x8_t __a);  
  999. int32x4_t vmvnq_s32 (int32x4_t __a);  
  1000. uint8x16_t vmvnq_u8 (uint8x16_t __a);  
  1001. uint16x8_t vmvnq_u16 (uint16x8_t __a);  
  1002. uint32x4_t vmvnq_u32 (uint32x4_t __a);  
  1003. poly8x16_t vmvnq_p8 (poly8x16_t __a);  
  1004. /*--2、Bitwise and(正常指令): vand -> ri = ai & bi; performs a bitwise AND between  
  1005. corresponding elements of the input vectors.--*/  
  1006. int8x8_t vand_s8 (int8x8_t __a, int8x8_t __b);//_mm_and_si128  
  1007. int16x4_t vand_s16 (int16x4_t __a, int16x4_t __b);//_mm_and_si128  
  1008. int32x2_t vand_s32 (int32x2_t __a, int32x2_t __b);//_mm_and_si128  
  1009. uint8x8_t vand_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_and_si128  
  1010. uint16x4_t vand_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_and_si128  
  1011. uint32x2_t vand_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_and_si128  
  1012. int64x1_t vand_s64 (int64x1_t __a, int64x1_t __b);//_mm_and_si128  
  1013. uint64x1_t vand_u64 (uint64x1_t __a, uint64x1_t __b);//_mm_and_si128  
  1014. int8x16_t vandq_s8 (int8x16_t __a, int8x16_t __b);//_mm_and_si128  
  1015. int16x8_t vandq_s16 (int16x8_t __a, int16x8_t __b);//_mm_and_si128  
  1016. int32x4_t vandq_s32 (int32x4_t __a, int32x4_t __b);//_mm_and_si128  
  1017. int64x2_t vandq_s64 (int64x2_t __a, int64x2_t __b);//_mm_and_si128  
  1018. uint8x16_t vandq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_and_si128  
  1019. uint16x8_t vandq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_and_si128  
  1020. uint32x4_t vandq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_and_si128  
  1021. uint64x2_t vandq_u64 (uint64x2_t __a, uint64x2_t __b);//_mm_and_si128  
  1022. /*--3、Bitwise or(正常指令): vorr -> ri = ai | bi; performs a bitwise OR between 
  1023. corresponding elements of the input vectors.--*/  
  1024. int8x8_t vorr_s8 (int8x8_t __a, int8x8_t __b);//_mm_or_si128  
  1025. int16x4_t vorr_s16 (int16x4_t __a, int16x4_t __b);//_mm_or_si128  
  1026. int32x2_t vorr_s32 (int32x2_t __a, int32x2_t __b);//_mm_or_si128  
  1027. uint8x8_t vorr_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_or_si128  
  1028. uint16x4_t vorr_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_or_si128  
  1029. uint32x2_t vorr_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_or_si128  
  1030. int64x1_t vorr_s64 (int64x1_t __a, int64x1_t __b);//_mm_or_si128  
  1031. uint64x1_t vorr_u64 (uint64x1_t __a, uint64x1_t __b);//_mm_or_si128  
  1032. int8x16_t vorrq_s8 (int8x16_t __a, int8x16_t __b);//_mm_or_si128  
  1033. int16x8_t vorrq_s16 (int16x8_t __a, int16x8_t __b);//_mm_or_si128  
  1034. int32x4_t vorrq_s32 (int32x4_t __a, int32x4_t __b);//_mm_or_si128  
  1035. int64x2_t vorrq_s64 (int64x2_t __a, int64x2_t __b);//_mm_or_si128  
  1036. uint8x16_t vorrq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_or_si128  
  1037. uint16x8_t vorrq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_or_si128  
  1038. uint32x4_t vorrq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_or_si128  
  1039. uint64x2_t vorrq_u64 (uint64x2_t __a, uint64x2_t __b);//_mm_or_si128  
  1040. /*--4、Bitwise exclusive or (EOR or XOR)(正常指令): veor -> ri = ai ^ bi;  
  1041. performs a bitwise exclusive-OR between corresponding elements of the input vectors.--*/  
  1042. int8x8_t veor_s8 (int8x8_t __a, int8x8_t __b);//_mm_xor_si128  
  1043. int16x4_t veor_s16 (int16x4_t __a, int16x4_t __b);//_mm_xor_si128  
  1044. int32x2_t veor_s32 (int32x2_t __a, int32x2_t __b);//_mm_xor_si128  
  1045. uint8x8_t veor_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_xor_si128  
  1046. uint16x4_t veor_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_xor_si128  
  1047. uint32x2_t veor_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_xor_si128  
  1048. int64x1_t veor_s64 (int64x1_t __a, int64x1_t __b);//_mm_xor_si128  
  1049. uint64x1_t veor_u64 (uint64x1_t __a, uint64x1_t __b);//_mm_xor_si128  
  1050. int8x16_t veorq_s8 (int8x16_t __a, int8x16_t __b);//_mm_xor_si128  
  1051. int16x8_t veorq_s16 (int16x8_t __a, int16x8_t __b);//_mm_xor_si128  
  1052. int32x4_t veorq_s32 (int32x4_t __a, int32x4_t __b);//_mm_xor_si128  
  1053. int64x2_t veorq_s64 (int64x2_t __a, int64x2_t __b);//_mm_xor_si128  
  1054. uint8x16_t veorq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_xor_si128  
  1055. uint16x8_t veorq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_xor_si128  
  1056. uint32x4_t veorq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_xor_si128  
  1057. uint64x2_t veorq_u64 (uint64x2_t __a, uint64x2_t __b);//_mm_xor_si128  
  1058. /*--5、Bit Clear(正常指令): vbic -> ri = ~ai & bi; 
  1059. VBIC (Vector Bitwise Clear) performs a bitwise logical AND complement operation between 
  1060. values in two registers, and places the results in the destination register.--*/  
  1061. int8x8_t vbic_s8 (int8x8_t __a, int8x8_t __b);//_mm_andnot_si128  
  1062. int16x4_t vbic_s16 (int16x4_t __a, int16x4_t __b);//_mm_andnot_si128  
  1063. int32x2_t vbic_s32 (int32x2_t __a, int32x2_t __b);//_mm_andnot_si128  
  1064. uint8x8_t vbic_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_andnot_si128  
  1065. uint16x4_t vbic_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_andnot_si128  
  1066. uint32x2_t vbic_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_andnot_si128  
  1067. int64x1_t vbic_s64 (int64x1_t __a, int64x1_t __b);//_mm_andnot_si128  
  1068. uint64x1_t vbic_u64 (uint64x1_t __a, uint64x1_t __b);//_mm_andnot_si128  
  1069. int8x16_t vbicq_s8 (int8x16_t __a, int8x16_t __b);//_mm_andnot_si128  
  1070. int16x8_t vbicq_s16 (int16x8_t __a, int16x8_t __b);//_mm_andnot_si128  
  1071. int32x4_t vbicq_s32 (int32x4_t __a, int32x4_t __b);//_mm_andnot_si128  
  1072. int64x2_t vbicq_s64 (int64x2_t __a, int64x2_t __b);//_mm_andnot_si128  
  1073. uint8x16_t vbicq_u8 (uint8x16_t __a, uint8x16_t __b);//_mm_andnot_si128  
  1074. uint16x8_t vbicq_u16 (uint16x8_t __a, uint16x8_t __b);//_mm_andnot_si128  
  1075. uint32x4_t vbicq_u32 (uint32x4_t __a, uint32x4_t __b);//_mm_andnot_si128  
  1076. uint64x2_t vbicq_u64 (uint64x2_t __a, uint64x2_t __b);//_mm_andnot_si128  
  1077. /*--6、Bitwise OR complement(正常指令): vorn -> ri = ai | (~bi);  
  1078. performs a bitwise logical OR NOT operation  
  1079. between values in two registers, and places the results in the destination register.--*/  
  1080. int8x8_t vorn_s8 (int8x8_t __a, int8x8_t __b);  
  1081. int16x4_t vorn_s16 (int16x4_t __a, int16x4_t __b);  
  1082. int32x2_t vorn_s32 (int32x2_t __a, int32x2_t __b);  
  1083. uint8x8_t vorn_u8 (uint8x8_t __a, uint8x8_t __b);  
  1084. uint16x4_t vorn_u16 (uint16x4_t __a, uint16x4_t __b);  
  1085. uint32x2_t vorn_u32 (uint32x2_t __a, uint32x2_t __b);  
  1086. int64x1_t vorn_s64 (int64x1_t __a, int64x1_t __b);  
  1087. uint64x1_t vorn_u64 (uint64x1_t __a, uint64x1_t __b);  
  1088. int8x16_t vornq_s8 (int8x16_t __a, int8x16_t __b);  
  1089. int16x8_t vornq_s16 (int16x8_t __a, int16x8_t __b);  
  1090. int32x4_t vornq_s32 (int32x4_t __a, int32x4_t __b);  
  1091. int64x2_t vornq_s64 (int64x2_t __a, int64x2_t __b);  
  1092. uint8x16_t vornq_u8 (uint8x16_t __a, uint8x16_t __b);  
  1093. uint16x8_t vornq_u16 (uint16x8_t __a, uint16x8_t __b);  
  1094. uint32x4_t vornq_u32 (uint32x4_t __a, uint32x4_t __b);  
  1095. uint64x2_t vornq_u64 (uint64x2_t __a, uint64x2_t __b);  
  1096. /****************************************Count leading sign bits************************/  
  1097. /*--正常指令, vcls -> ; counts the number of consecutive bits, starting from the most  
  1098. significant bit,that are the same as the most significant bit, in each element in a  
  1099. vector, and places the count in the result vector.--*/  
  1100. int8x8_t vcls_s8 (int8x8_t __a);  
  1101. int16x4_t vcls_s16 (int16x4_t __a);  
  1102. int32x2_t vcls_s32 (int32x2_t __a);  
  1103. int8x16_t vclsq_s8 (int8x16_t __a);  
  1104. int16x8_t vclsq_s16 (int16x8_t __a);  
  1105. int32x4_t vclsq_s32 (int32x4_t __a);  
  1106. /*******************************************Count leading zeros*************************/  
  1107. /*--正常指令, vclz -> ; counts the number of consecutive zeros, starting from the most 
  1108. significant bit, in each element in a vector, and places the count in result vector.--*/  
  1109. int8x8_t vclz_s8 (int8x8_t __a);  
  1110. int16x4_t vclz_s16 (int16x4_t __a);  
  1111. int32x2_t vclz_s32 (int32x2_t __a);  
  1112. uint8x8_t vclz_u8 (uint8x8_t __a);  
  1113. uint16x4_t vclz_u16 (uint16x4_t __a);  
  1114. uint32x2_t vclz_u32 (uint32x2_t __a);  
  1115. int8x16_t vclzq_s8 (int8x16_t __a);  
  1116. int16x8_t vclzq_s16 (int16x8_t __a);  
  1117. int32x4_t vclzq_s32 (int32x4_t __a);  
  1118. uint8x16_t vclzq_u8 (uint8x16_t __a);  
  1119. uint16x8_t vclzq_u16 (uint16x8_t __a);  
  1120. uint32x4_t vclzq_u32 (uint32x4_t __a);  
  1121. /*******************************************Count number of set bits********************/  
  1122. /*--正常指令, vcnt -> counts the number of bits that are one in each element in a vector,  
  1123. and places the count in the result vector.--*/  
  1124. int8x8_t vcnt_s8 (int8x8_t __a);  
  1125. uint8x8_t vcnt_u8 (uint8x8_t __a);  
  1126. poly8x8_t vcnt_p8 (poly8x8_t __a);  
  1127. int8x16_t vcntq_s8 (int8x16_t __a);  
  1128. uint8x16_t vcntq_u8 (uint8x16_t __a);  
  1129. poly8x16_t vcntq_p8 (poly8x16_t __a);  
  1130. /*****************************************Reciprocal estimate***************************/  
  1131. /*--正常指令, vrecpe -> ; finds an approximate reciprocal of each element in a vector,  
  1132. and places it in the result vector.--*/  
  1133. float32x2_t vrecpe_f32 (float32x2_t __a);  
  1134. uint32x2_t vrecpe_u32 (uint32x2_t __a);  
  1135. float32x4_t vrecpeq_f32 (float32x4_t __a);  
  1136. uint32x4_t vrecpeq_u32 (uint32x4_t __a);  
  1137. /****************************************Reciprocal square-root estimate****************/  
  1138. /*--正常指令, vrsqrte -> ; finds an approximate reciprocal square root of each element 
  1139. in a vector, and places it in the return vector.--*/  
  1140. float32x2_t vrsqrte_f32 (float32x2_t __a);  
  1141. uint32x2_t vrsqrte_u32 (uint32x2_t __a);  
  1142. float32x4_t vrsqrteq_f32 (float32x4_t __a);  
  1143. uint32x4_t vrsqrteq_u32 (uint32x4_t __a);  
  1144. /*******************************************Get lanes from a vector*********************/  
  1145. /*--vmov -> r = a[b]; returns the value from the specified lane of a vector. 
  1146. Extract lanes from a vector and put into a register.  
  1147. These intrinsics extract a single lane (element) from a vector.--*/  
  1148. int8_t vget_lane_s8 (int8x8_t __a, const int __b);//_mm_extract_epi8  
  1149. int16_t vget_lane_s16 (int16x4_t __a, const int __b);//_mm_extract_epi16  
  1150. int32_t vget_lane_s32 (int32x2_t __a, const int __b);//_mm_extract_epi32  
  1151. float32_t vget_lane_f32 (float32x2_t __a, const int __b);  
  1152. uint8_t vget_lane_u8 (uint8x8_t __a, const int __b);//_mm_extract_epi8  
  1153. uint16_t vget_lane_u16 (uint16x4_t __a, const int __b);//_mm_extract_epi16  
  1154. uint32_t vget_lane_u32 (uint32x2_t __a, const int __b);//_mm_extract_epi32  
  1155. poly8_t vget_lane_p8 (poly8x8_t __a, const int __b);//_mm_extract_epi8  
  1156. poly16_t vget_lane_p16 (poly16x4_t __a, const int __b);//_mm_extract_epi16  
  1157. int64_t vget_lane_s64 (int64x1_t __a, const int __b);//_mm_extract_epi64  
  1158. uint64_t vget_lane_u64 (uint64x1_t __a, const int __b);//_mm_extract_epi64  
  1159. int8_t vgetq_lane_s8 (int8x16_t __a, const int __b);//_mm_extract_epi8  
  1160. int16_t vgetq_lane_s16 (int16x8_t __a, const int __b);//_mm_extract_epi16  
  1161. int32_t vgetq_lane_s32 (int32x4_t __a, const int __b);//_mm_extract_epi32  
  1162. float32_t vgetq_lane_f32 (float32x4_t __a, const int __b);  
  1163. uint8_t vgetq_lane_u8 (uint8x16_t __a, const int __b);//_mm_extract_epi8  
  1164. uint16_t vgetq_lane_u16 (uint16x8_t __a, const int __b);//_mm_extract_epi16  
  1165. uint32_t vgetq_lane_u32 (uint32x4_t __a, const int __b);//_mm_extract_epi32  
  1166. poly8_t vgetq_lane_p8 (poly8x16_t __a, const int __b);//_mm_extract_epi8  
  1167. poly16_t vgetq_lane_p16 (poly16x8_t __a, const int __b);//_mm_extract_epi16  
  1168. int64_t vgetq_lane_s64 (int64x2_t __a, const int __b);//_mm_extract_epi64  
  1169. uint64_t vgetq_lane_u64 (uint64x2_t __a, const int __b);//_mm_extract_epi64  
  1170. /*********************************************Set lanes in a vector********************/  
  1171. /*--vmov -> ; sets the value of the specified lane of a vector. It returns the vector  
  1172. with the new value.Load a single lane of a vector from a literal. These intrinsics set  
  1173. a single lane (element) within a vector.--*/  
  1174. int8x8_t vset_lane_s8 (int8_t __a, int8x8_t __b, const int __c);  
  1175. int16x4_t vset_lane_s16 (int16_t __a, int16x4_t __b, const int __c);  
  1176. int32x2_t vset_lane_s32 (int32_t __a, int32x2_t __b, const int __c);  
  1177. float32x2_t vset_lane_f32 (float32_t __a, float32x2_t __b, const int __c);  
  1178. uint8x8_t vset_lane_u8 (uint8_t __a, uint8x8_t __b, const int __c);  
  1179. uint16x4_t vset_lane_u16 (uint16_t __a, uint16x4_t __b, const int __c);  
  1180. uint32x2_t vset_lane_u32 (uint32_t __a, uint32x2_t __b, const int __c);  
  1181. poly8x8_t vset_lane_p8 (poly8_t __a, poly8x8_t __b, const int __c);  
  1182. poly16x4_t vset_lane_p16 (poly16_t __a, poly16x4_t __b, const int __c);  
  1183. int64x1_t vset_lane_s64 (int64_t __a, int64x1_t __b, const int __c);  
  1184. uint64x1_t vset_lane_u64 (uint64_t __a, uint64x1_t __b, const int __c);  
  1185. int8x16_t vsetq_lane_s8 (int8_t __a, int8x16_t __b, const int __c);  
  1186. int16x8_t vsetq_lane_s16 (int16_t __a, int16x8_t __b, const int __c);  
  1187. int32x4_t vsetq_lane_s32 (int32_t __a, int32x4_t __b, const int __c);  
  1188. float32x4_t vsetq_lane_f32 (float32_t __a, float32x4_t __b, const int __c);  
  1189. uint8x16_t vsetq_lane_u8 (uint8_t __a, uint8x16_t __b, const int __c);  
  1190. uint16x8_t vsetq_lane_u16 (uint16_t __a, uint16x8_t __b, const int __c);  
  1191. uint32x4_t vsetq_lane_u32 (uint32_t __a, uint32x4_t __b, const int __c);  
  1192. poly8x16_t vsetq_lane_p8 (poly8_t __a, poly8x16_t __b, const int __c);  
  1193. poly16x8_t vsetq_lane_p16 (poly16_t __a, poly16x8_t __b, const int __c);  
  1194. int64x2_t vsetq_lane_s64 (int64_t __a, int64x2_t __b, const int __c);  
  1195. uint64x2_t vsetq_lane_u64 (uint64_t __a, uint64x2_t __b, const int __c);  
  1196. /****************************************Create vector from literal bit pattern*********/  
  1197. /*--vmov -> ; creates a vector from a 64-bit pattern.  
  1198. Initialize a vector from a literal bit pattern.--*/  
  1199. int8x8_t vcreate_s8 (uint64_t __a);//_mm_loadl_epi64  
  1200. int16x4_t vcreate_s16 (uint64_t __a);//_mm_loadl_epi64  
  1201. int32x2_t vcreate_s32 (uint64_t __a);//_mm_loadl_epi64  
  1202. int64x1_t vcreate_s64 (uint64_t __a);//_mm_loadl_epi64  
  1203. float32x2_t vcreate_f32 (uint64_t __a);  
  1204. uint8x8_t vcreate_u8 (uint64_t __a);//_mm_loadl_epi64  
  1205. uint16x4_t vcreate_u16 (uint64_t __a);//_mm_loadl_epi64  
  1206. uint32x2_t vcreate_u32 (uint64_t __a);//_mm_loadl_epi64  
  1207. uint64x1_t vcreate_u64 (uint64_t __a);//_mm_loadl_epi64  
  1208. poly8x8_t vcreate_p8 (uint64_t __a);//_mm_loadl_epi64  
  1209. poly16x4_t vcreate_p16 (uint64_t __a);//_mm_loadl_epi64  
  1210. /*****************************************Set all lanes to the same value***************/  
  1211. /*--1、Load all lanes of vector to the same literal value: vdup/vmov -> ri = a;  
  1212. duplicates a scalar into every element of the destination vector.  
  1213. Load all lanes of vector to the same literal value--*/  
  1214. int8x8_t vdup_n_s8 (int8_t __a);//_mm_set1_epi8  
  1215. int16x4_t vdup_n_s16 (int16_t __a);//_mm_set1_epi16  
  1216. int32x2_t vdup_n_s32 (int32_t __a);//_mm_set1_epi32  
  1217. float32x2_t vdup_n_f32 (float32_t __a);//_mm_set1_ps  
  1218. uint8x8_t vdup_n_u8 (uint8_t __a);//_mm_set1_epi8  
  1219. uint16x4_t vdup_n_u16 (uint16_t __a);//_mm_set1_epi16  
  1220. uint32x2_t vdup_n_u32 (uint32_t __a);//_mm_set1_epi32  
  1221. poly8x8_t vdup_n_p8 (poly8_t __a);//_mm_set1_epi8  
  1222. poly16x4_t vdup_n_p16 (poly16_t __a);//_mm_set1_epi16  
  1223. int64x1_t vdup_n_s64 (int64_t __a);  
  1224. uint64x1_t vdup_n_u64 (uint64_t __a);  
  1225. int8x16_t vdupq_n_s8 (int8_t __a);//_mm_set1_epi8  
  1226. int16x8_t vdupq_n_s16 (int16_t __a);//_mm_set1_epi16  
  1227. int32x4_t vdupq_n_s32 (int32_t __a);//_mm_set1_epi32  
  1228. float32x4_t vdupq_n_f32 (float32_t __a);//_mm_set1_ps  
  1229. uint8x16_t vdupq_n_u8 (uint8_t __a);//_mm_set1_epi8  
  1230. uint16x8_t vdupq_n_u16 (uint16_t __a);//_mm_set1_epi16  
  1231. uint32x4_t vdupq_n_u32 (uint32_t __a);//_mm_set1_epi32  
  1232. poly8x16_t vdupq_n_p8 (poly8_t __a);//_mm_set1_epi8  
  1233. poly16x8_t vdupq_n_p16 (poly16_t __a);//_mm_set1_epi16  
  1234. int64x2_t vdupq_n_s64 (int64_t __a);  
  1235. uint64x2_t vdupq_n_u64 (uint64_t __a);  
  1236. int8x8_t vmov_n_s8 (int8_t __a);//_mm_set1_epi8  
  1237. int16x4_t vmov_n_s16 (int16_t __a);//_mm_set1_epi16  
  1238. int32x2_t vmov_n_s32 (int32_t __a);//_mm_set1_epi32  
  1239. float32x2_t vmov_n_f32 (float32_t __a);//_mm_set1_ps  
  1240. uint8x8_t vmov_n_u8 (uint8_t __a);//_mm_set1_epi8  
  1241. uint16x4_t vmov_n_u16 (uint16_t __a);//_mm_set1_epi16  
  1242. uint32x2_t vmov_n_u32 (uint32_t __a);//_mm_set1_epi32  
  1243. poly8x8_t vmov_n_p8 (poly8_t __a);//_mm_set1_epi8  
  1244. poly16x4_t vmov_n_p16 (poly16_t __a);//_mm_set1_epi16  
  1245. int64x1_t vmov_n_s64 (int64_t __a);  
  1246. uint64x1_t vmov_n_u64 (uint64_t __a);  
  1247. int8x16_t vmovq_n_s8 (int8_t __a);//_mm_set1_epi8  
  1248. int16x8_t vmovq_n_s16 (int16_t __a);//_mm_set1_epi16  
  1249. int32x4_t vmovq_n_s32 (int32_t __a);//_mm_set1_epi32  
  1250. float32x4_t vmovq_n_f32 (float32_t __a);//_mm_set1_ps  
  1251. uint8x16_t vmovq_n_u8 (uint8_t __a);//_mm_set1_epi8  
  1252. uint16x8_t vmovq_n_u16 (uint16_t __a);//_mm_set1_epi16  
  1253. uint32x4_t vmovq_n_u32 (uint32_t __a);//_mm_set1_epi32  
  1254. poly8x16_t vmovq_n_p8 (poly8_t __a);//_mm_set1_epi8  
  1255. poly16x8_t vmovq_n_p16 (poly16_t __a);//_mm_set1_epi16  
  1256. int64x2_t vmovq_n_s64 (int64_t __a);  
  1257. uint64x2_t vmovq_n_u64 (uint64_t __a);  
  1258. /*--2、Load all lanes of the vector to the value of a lane of a vector:  
  1259. vdup/vmov -> ri = a[b]; 
  1260. duplicates a scalar into every element of the destination vector.--*/  
  1261. int8x8_t vdup_lane_s8 (int8x8_t __a, const int __b);  
  1262. int16x4_t vdup_lane_s16 (int16x4_t __a, const int __b);  
  1263. int32x2_t vdup_lane_s32 (int32x2_t __a, const int __b);  
  1264. float32x2_t vdup_lane_f32 (float32x2_t __a, const int __b);  
  1265. uint8x8_t vdup_lane_u8 (uint8x8_t __a, const int __b);  
  1266. uint16x4_t vdup_lane_u16 (uint16x4_t __a, const int __b);  
  1267. uint32x2_t vdup_lane_u32 (uint32x2_t __a, const int __b);  
  1268. poly8x8_t vdup_lane_p8 (poly8x8_t __a, const int __b);  
  1269. poly16x4_t vdup_lane_p16 (poly16x4_t __a, const int __b);  
  1270. int64x1_t vdup_lane_s64 (int64x1_t __a, const int __b);  
  1271. uint64x1_t vdup_lane_u64 (uint64x1_t __a, const int __b);  
  1272. int8x16_t vdupq_lane_s8 (int8x8_t __a, const int __b);  
  1273. int16x8_t vdupq_lane_s16 (int16x4_t __a, const int __b);  
  1274. int32x4_t vdupq_lane_s32 (int32x2_t __a, const int __b);  
  1275. float32x4_t vdupq_lane_f32 (float32x2_t __a, const int __b);  
  1276. uint8x16_t vdupq_lane_u8 (uint8x8_t __a, const int __b);  
  1277. uint16x8_t vdupq_lane_u16 (uint16x4_t __a, const int __b);  
  1278. uint32x4_t vdupq_lane_u32 (uint32x2_t __a, const int __b);  
  1279. poly8x16_t vdupq_lane_p8 (poly8x8_t __a, const int __b);  
  1280. poly16x8_t vdupq_lane_p16 (poly16x4_t __a, const int __b);  
  1281. int64x2_t vdupq_lane_s64 (int64x1_t __a, const int __b);//_mm_unpacklo_epi64  
  1282. uint64x2_t vdupq_lane_u64 (uint64x1_t __a, const int __b);//_mm_unpacklo_epi64  
  1283. /********************************************Combining vectors**************************/  
  1284. /*--长指令, -> r0 = a0, ..., r7 = a7, r8 = b0, ..., r15 = b7; 
  1285. joins two 64-bit vectors into a single 128-bit vector.  
  1286. The output vector contains twice the number of elements as each input vector.  
  1287. The lower half of the output vector contains the elements of the first input vector.--*/  
  1288. int8x16_t vcombine_s8 (int8x8_t __a, int8x8_t __b);//_mm_unpacklo_epi64  
  1289. int16x8_t vcombine_s16 (int16x4_t __a, int16x4_t __b);//_mm_unpacklo_epi64  
  1290. int32x4_t vcombine_s32 (int32x2_t __a, int32x2_t __b);//_mm_unpacklo_epi64  
  1291. int64x2_t vcombine_s64 (int64x1_t __a, int64x1_t __b);//_mm_unpacklo_epi64  
  1292. float32x4_t vcombine_f32 (float32x2_t __a, float32x2_t __b);  
  1293. uint8x16_t vcombine_u8 (uint8x8_t __a, uint8x8_t __b);//_mm_unpacklo_epi64  
  1294. uint16x8_t vcombine_u16 (uint16x4_t __a, uint16x4_t __b);//_mm_unpacklo_epi64  
  1295. uint32x4_t vcombine_u32 (uint32x2_t __a, uint32x2_t __b);//_mm_unpacklo_epi64  
  1296. uint64x2_t vcombine_u64 (uint64x1_t __a, uint64x1_t __b);//_mm_unpacklo_epi64  
  1297. poly8x16_t vcombine_p8 (poly8x8_t __a, poly8x8_t __b);//_mm_unpacklo_epi64  
  1298. poly16x8_t vcombine_p16 (poly16x4_t __a, poly16x4_t __b);//_mm_unpacklo_epi64  
  1299. /***************************************Splitting vectors*******************************/  
  1300. /*--1、窄指令, -> ri = a(i+4); returns the higher half of the 128-bit input vector. The 
  1301. output is a 64-bit vector that has half the number of elements as the input vector.--*/  
  1302. int8x8_t vget_high_s8 (int8x16_t __a);//_mm_unpackhi_epi64  
  1303. int16x4_t vget_high_s16 (int16x8_t __a);//_mm_unpackhi_epi64  
  1304. int32x2_t vget_high_s32 (int32x4_t __a);//_mm_unpackhi_epi64  
  1305. int64x1_t vget_high_s64 (int64x2_t __a);//_mm_unpackhi_epi64  
  1306. float32x2_t vget_high_f32 (float32x4_t __a);  
  1307. uint8x8_t vget_high_u8 (uint8x16_t __a);//_mm_unpackhi_epi64  
  1308. uint16x4_t vget_high_u16 (uint16x8_t __a);//_mm_unpackhi_epi64  
  1309. uint32x2_t vget_high_u32 (uint32x4_t __a);//_mm_unpackhi_epi64  
  1310. uint64x1_t vget_high_u64 (uint64x2_t __a);//_mm_unpackhi_epi64  
  1311. poly8x8_t vget_high_p8 (poly8x16_t __a);//_mm_unpackhi_epi64  
  1312. poly16x4_t vget_high_p16 (poly16x8_t __a);//_mm_unpackhi_epi64  
  1313. /*--2、窄指令, -> ri = ai; returns the lower half of the 128-bit input vector. The 
  1314. output is a 64-bit vector that has half the number of elements as the input vector.--*/  
  1315. int8x8_t vget_low_s8 (int8x16_t __a);  
  1316. int16x4_t vget_low_s16 (int16x8_t __a);  
  1317. int32x2_t vget_low_s32 (int32x4_t __a);  
  1318. float32x2_t vget_low_f32 (float32x4_t __a);  
  1319. uint8x8_t vget_low_u8 (uint8x16_t __a);  
  1320. uint16x4_t vget_low_u16 (uint16x8_t __a);  
  1321. uint32x2_t vget_low_u32 (uint32x4_t __a);  
  1322. poly8x8_t vget_low_p8 (poly8x16_t __a);  
  1323. poly16x4_t vget_low_p16 (poly16x8_t __a);  
  1324. int64x1_t vget_low_s64 (int64x2_t __a);  
  1325. uint64x1_t vget_low_u64 (uint64x2_t __a);  
  1326. /****************************************************Conversions************************/  
  1327. /*--1、Convert from float: vcvt ->, convert from floating-point to integer.--*/  
  1328. int32x2_t vcvt_s32_f32 (float32x2_t __a);  
  1329. uint32x2_t vcvt_u32_f32 (float32x2_t __a);  
  1330. int32x4_t vcvtq_s32_f32 (float32x4_t __a);  
  1331. uint32x4_t vcvtq_u32_f32 (float32x4_t __a);  
  1332. int32x2_t vcvt_n_s32_f32 (float32x2_t __a, const int __b);  
  1333. uint32x2_t vcvt_n_u32_f32 (float32x2_t __a, const int __b);  
  1334. int32x4_t vcvtq_n_s32_f32 (float32x4_t __a, const int __b);  
  1335. uint32x4_t vcvtq_n_u32_f32 (float32x4_t __a, const int __b);  
  1336. /*--2、Convert to float: vcvt ->, convert from integer to floating-point.--*/  
  1337. float32x2_t vcvt_f32_s32 (int32x2_t __a);  
  1338. float32x2_t vcvt_f32_u32 (uint32x2_t __a);  
  1339. float32x4_t vcvtq_f32_s32 (int32x4_t __a);  
  1340. float32x4_t vcvtq_f32_u32 (uint32x4_t __a);  
  1341. float32x2_t vcvt_n_f32_s32 (int32x2_t __a, const int __b);  
  1342. float32x2_t vcvt_n_f32_u32 (uint32x2_t __a, const int __b);  
  1343. float32x4_t vcvtq_n_f32_s32 (int32x4_t __a, const int __b);  
  1344. float32x4_t vcvtq_n_f32_u32 (uint32x4_t __a, const int __b);  
  1345. /*--3、between single-precision and double-precision numbers: vcvt ->--*/  
  1346. float16x4_t vcvt_f16_f32(float32x4_t a);  
  1347. float32x4_t vcvt_f32_f16(float16x4_t a);  
  1348. /*************************************************Move**********************************/  
  1349. /*--1、Vector narrow integer(窄指令): vmovn -> ri = ai[0...8]; copies the least  
  1350. significant half of each element of a quadword vector into  
  1351. the corresponding elements of a doubleword vector.--*/  
  1352. int8x8_t vmovn_s16 (int16x8_t __a);  
  1353. int16x4_t vmovn_s32 (int32x4_t __a);  
  1354. int32x2_t vmovn_s64 (int64x2_t __a);  
  1355. uint8x8_t vmovn_u16 (uint16x8_t __a);  
  1356. uint16x4_t vmovn_u32 (uint32x4_t __a);  
  1357. uint32x2_t vmovn_u64 (uint64x2_t __a);  
  1358. /*--2、Vector long move(长指令): vmovl -> sign extends or zero extends each element 
  1359. in a doubleword vector to twice its original length, 
  1360. and places the results in a quadword vector.--*/  
  1361. int16x8_t vmovl_s8 (int8x8_t __a);//_mm_cvtepi8_epi16  
  1362. int32x4_t vmovl_s16 (int16x4_t __a);//_mm_cvtepi16_epi32  
  1363. int64x2_t vmovl_s32 (int32x2_t __a);//_mm_cvtepi32_epi64  
  1364. uint16x8_t vmovl_u8 (uint8x8_t __a);//_mm_cvtepu8_epi16  
  1365. uint32x4_t vmovl_u16 (uint16x4_t __a);//_mm_cvtepu16_epi32  
  1366. uint64x2_t vmovl_u32 (uint32x2_t __a);////_mm_cvtepu32_epi64  
  1367. /*--3、Vector saturating narrow integer(窄指令): vqmovn -> copies each element of the 
  1368. operand vector to the corresponding element of the destination vector.  
  1369. The result element is half the width of  
  1370. the operand element, and values are saturated to the result width. 
  1371. The results are the same type as the operands.--*/  
  1372. int8x8_t vqmovn_s16 (int16x8_t __a);//_mm_packs_epi16  
  1373. int16x4_t vqmovn_s32 (int32x4_t __a);//_mm_packs_epi32  
  1374. int32x2_t vqmovn_s64 (int64x2_t __a);  
  1375. uint8x8_t vqmovn_u16 (uint16x8_t __a);  
  1376. uint16x4_t vqmovn_u32 (uint32x4_t __a);  
  1377. uint32x2_t vqmovn_u64 (uint64x2_t __a);  
  1378. /*--4、Vector saturating narrow integer signed->unsigned(窄指令): copies each element of 
  1379. the operand vector to the corresponding element of the destination vector. 
  1380. The result element is half the width of the operand element, 
  1381. and values are saturated to the result width. 
  1382. The elements in the operand are signed and the elements in the result are unsigned.--*/  
  1383. uint8x8_t vqmovun_s16 (int16x8_t __a);//_mm_packus_epi16  
  1384. uint16x4_t vqmovun_s32 (int32x4_t __a);//_mm_packus_epi32  
  1385. uint32x2_t vqmovun_s64 (int64x2_t __a);  
  1386. /******************************************************Table lookup*********************/  
  1387. /*--1、Table lookup: vtbl -> uses byte indexes in a control vector to look up byte  
  1388. values in a table and generate a new vector. Indexes out of range return 0.  
  1389. The table is in Vector1 and uses one(or two or three or four)D registers.--*/  
  1390. int8x8_t vtbl1_s8 (int8x8_t __a, int8x8_t __b);  
  1391. uint8x8_t vtbl1_u8 (uint8x8_t __a, uint8x8_t __b);  
  1392. poly8x8_t vtbl1_p8 (poly8x8_t __a, uint8x8_t __b);  
  1393. int8x8_t vtbl2_s8 (int8x8x2_t __a, int8x8_t __b);  
  1394. uint8x8_t vtbl2_u8 (uint8x8x2_t __a, uint8x8_t __b);  
  1395. poly8x8_t vtbl2_p8 (poly8x8x2_t __a, uint8x8_t __b);  
  1396. int8x8_t vtbl3_s8 (int8x8x3_t __a, int8x8_t __b);  
  1397. uint8x8_t vtbl3_u8 (uint8x8x3_t __a, uint8x8_t __b);  
  1398. poly8x8_t vtbl3_p8 (poly8x8x3_t __a, uint8x8_t __b);  
  1399. int8x8_t vtbl4_s8 (int8x8x4_t __a, int8x8_t __b);  
  1400. uint8x8_t vtbl4_u8 (uint8x8x4_t __a, uint8x8_t __b);  
  1401. poly8x8_t vtbl4_p8 (poly8x8x4_t __a, uint8x8_t __b);  
  1402. /*--2、Extended table lookup: vtbx -> uses byte indexes in a control vector to look up 
  1403. byte values in a table and generate a new vector. Indexes out of range leave the  
  1404. destination element unchanged.The table is in Vector2 and uses one(or two or three or 
  1405. four) D register. Vector1 contains the elements of the destination vector.--*/  
  1406. int8x8_t vtbx1_s8 (int8x8_t __a, int8x8_t __b, int8x8_t __c);  
  1407. uint8x8_t vtbx1_u8 (uint8x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  1408. poly8x8_t vtbx1_p8 (poly8x8_t __a, poly8x8_t __b, uint8x8_t __c);  
  1409. int8x8_t vtbx2_s8 (int8x8_t __a, int8x8x2_t __b, int8x8_t __c);  
  1410. uint8x8_t vtbx2_u8 (uint8x8_t __a, uint8x8x2_t __b, uint8x8_t __c);  
  1411. poly8x8_t vtbx2_p8 (poly8x8_t __a, poly8x8x2_t __b, uint8x8_t __c);  
  1412. int8x8_t vtbx3_s8 (int8x8_t __a, int8x8x3_t __b, int8x8_t __c);  
  1413. uint8x8_t vtbx3_u8 (uint8x8_t __a, uint8x8x3_t __b, uint8x8_t __c);  
  1414. poly8x8_t vtbx3_p8 (poly8x8_t __a, poly8x8x3_t __b, uint8x8_t __c);  
  1415. int8x8_t vtbx4_s8 (int8x8_t __a, int8x8x4_t __b, int8x8_t __c);  
  1416. uint8x8_t vtbx4_u8 (uint8x8_t __a, uint8x8x4_t __b, uint8x8_t __c);  
  1417. poly8x8_t vtbx4_p8 (poly8x8_t __a, poly8x8x4_t __b, uint8x8_t __c);  
  1418. /***************************************Multiply, scalar, lane**************************/  
  1419. /*--1、Vector multiply by scalar: vmul -> ri = ai * b;  
  1420. multiplies each element in a vector by a scalar,  
  1421. and places the results in the destination vector.--*/  
  1422. int16x4_t vmul_n_s16 (int16x4_t __a, int16_t __b);  
  1423. int32x2_t vmul_n_s32 (int32x2_t __a, int32_t __b);  
  1424. float32x2_t vmul_n_f32 (float32x2_t __a, float32_t __b);  
  1425. uint16x4_t vmul_n_u16 (uint16x4_t __a, uint16_t __b);  
  1426. uint32x2_t vmul_n_u32 (uint32x2_t __a, uint32_t __b);  
  1427. int16x8_t vmulq_n_s16 (int16x8_t __a, int16_t __b);  
  1428. int32x4_t vmulq_n_s32 (int32x4_t __a, int32_t __b);  
  1429. float32x4_t vmulq_n_f32 (float32x4_t __a, float32_t __b);  
  1430. uint16x8_t vmulq_n_u16 (uint16x8_t __a, uint16_t __b);  
  1431. uint32x4_t vmulq_n_u32 (uint32x4_t __a, uint32_t __b);  
  1432. /*--2、Vector multiply by scalar: -> ri = ai * b[c];  
  1433. multiplies the first vector by a scalar.  
  1434. The scalar is the element in the second vector with index c.--*/  
  1435. int16x4_t vmul_lane_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  1436. int32x2_t vmul_lane_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  1437. float32x2_t vmul_lane_f32 (float32x2_t __a, float32x2_t __b, const int __c);  
  1438. uint16x4_t vmul_lane_u16 (uint16x4_t __a, uint16x4_t __b, const int __c);  
  1439. uint32x2_t vmul_lane_u32 (uint32x2_t __a, uint32x2_t __b, const int __c);  
  1440. int16x8_t vmulq_lane_s16 (int16x8_t __a, int16x4_t __b, const int __c);  
  1441. int32x4_t vmulq_lane_s32 (int32x4_t __a, int32x2_t __b, const int __c);  
  1442. float32x4_t vmulq_lane_f32 (float32x4_t __a, float32x2_t __b, const int __c);  
  1443. uint16x8_t vmulq_lane_u16 (uint16x8_t __a, uint16x4_t __b, const int __c);  
  1444. uint32x4_t vmulq_lane_u32 (uint32x4_t __a, uint32x2_t __b, const int __c);  
  1445. /*--3、Vector long multiply with scalar: vmull ->  ri = ai * b; 
  1446. multiplies a vector by a scalar.  
  1447. Elements in the result are wider than elements in input vector.--*/  
  1448. int32x4_t vmull_n_s16 (int16x4_t __a, int16_t __b);  
  1449. int64x2_t vmull_n_s32 (int32x2_t __a, int32_t __b);  
  1450. uint32x4_t vmull_n_u16 (uint16x4_t __a, uint16_t __b);  
  1451. uint64x2_t vmull_n_u32 (uint32x2_t __a, uint32_t __b);  
  1452. /*--4、Vector long multiply by scalar: vmull -> ri = ai * b[c]; 
  1453. multiplies the first vector by a scalar.  
  1454. The scalar is the element in the second vector with index c.  
  1455. The elements in the result are wider than the elements in input vector.--*/  
  1456. int32x4_t vmull_lane_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  1457. int64x2_t vmull_lane_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  1458. uint32x4_t vmull_lane_u16 (uint16x4_t __a, uint16x4_t __b, const int __c);  
  1459. uint64x2_t vmull_lane_u32 (uint32x2_t __a, uint32x2_t __b, const int __c);  
  1460. /*--5、Vector saturating doubling long multiply with scalar: vqdmull -> ri = sat(ai * b); 
  1461. multiplies the elements in the vector by a scalar, and doubles the results.  
  1462. If any of the results overflow, they are saturated and the sticky QC flag is set.--*/  
  1463. int32x4_t vqdmull_n_s16 (int16x4_t __a, int16_t __b);  
  1464. int64x2_t vqdmull_n_s32 (int32x2_t __a, int32_t __b);  
  1465. /*--6、Vector saturating doubling long multiply by scalar: vqdmull -> ri = sat(ai * b[c]); 
  1466. multiplies the elements in the first vector by a scalar, and doubles the results.  
  1467. The scalar has index c in the second vector. If any of the results overflow,  
  1468. they are saturated and the sticky QC flagis set.--*/  
  1469. int32x4_t vqdmull_lane_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  1470. int64x2_t vqdmull_lane_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  1471. /*--7、Vector saturating doubling multiply high with scalar: vqdmulh -> ri = sat(ai * b) 
  1472. multiplies the elements of the vector by a scalar, and doubles the results. 
  1473. It then returns only the high half of the results. 
  1474. If any of the results overflow, they are saturated and the sticky QC flag is set.--*/  
  1475. int16x4_t vqdmulh_n_s16 (int16x4_t __a, int16_t __b);  
  1476. int32x2_t vqdmulh_n_s32 (int32x2_t __a, int32_t __b);  
  1477. int16x8_t vqdmulhq_n_s16 (int16x8_t __a, int16_t __b);  
  1478. int32x4_t vqdmulhq_n_s32 (int32x4_t __a, int32_t __b);  
  1479. /*--8、Vector saturating doubling multiply high by scalar:  
  1480. vqdmulh -> ri = sat(ai * b[c]); 
  1481. multiplies the elements of the first vector by a scalar, and doubles the results. It then 
  1482. returns only the high half of the results. The scalar has index n in the second vector. 
  1483. If any of the results overflow, they are saturated and the sticky QC flag is set.--*/  
  1484. int16x4_t vqdmulh_lane_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  1485. int32x2_t vqdmulh_lane_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  1486. int16x8_t vqdmulhq_lane_s16 (int16x8_t __a, int16x4_t __b, const int __c);  
  1487. int32x4_t vqdmulhq_lane_s32 (int32x4_t __a, int32x2_t __b, const int __c);  
  1488. /*--9、Vector saturating rounding doubling multiply high with scalar:  
  1489. vqqrdmulh -> ri = sat(ai * b); 
  1490. multiplies the elements of the vector by a scalar and doubles the results.  
  1491. It then returns only the high half of the rounded results.  
  1492. If any of the results overflow, they are saturated and the sticky QC flag is set.--*/  
  1493. int16x4_t vqrdmulh_n_s16 (int16x4_t __a, int16_t __b);  
  1494. int32x2_t vqrdmulh_n_s32 (int32x2_t __a, int32_t __b);  
  1495. int16x8_t vqrdmulhq_n_s16 (int16x8_t __a, int16_t __b);  
  1496. int32x4_t vqrdmulhq_n_s32 (int32x4_t __a, int32_t __b);  
  1497. /*--10、Vector rounding saturating doubling multiply high by scalar:  
  1498. vqrdmulh -> ri = sat(ai * b[c]); 
  1499. multiplies the elements of the first vector by a scalar and doubles the results. 
  1500. It then returns only the high half of the rounded results. 
  1501. The scalar has index n in the second vector. If any of the results overflow,  
  1502. they are saturated and the sticky QC flag is set.--*/  
  1503. int16x4_t vqrdmulh_lane_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  1504. int32x2_t vqrdmulh_lane_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  1505. int16x8_t vqrdmulhq_lane_s16 (int16x8_t __a, int16x4_t __b, const int __c);  
  1506. int32x4_t vqrdmulhq_lane_s32 (int32x4_t __a, int32x2_t __b, const int __c);  
  1507. /*--11、Vector multiply accumulate with scalar: vmla -> ri = ai + bi * c; 
  1508. multiplies each element in the second vector by a scalar,  
  1509. and adds the results to the corresponding elements of the first vector.--*/  
  1510. int16x4_t vmla_n_s16 (int16x4_t __a, int16x4_t __b, int16_t __c);  
  1511. int32x2_t vmla_n_s32 (int32x2_t __a, int32x2_t __b, int32_t __c);  
  1512. float32x2_t vmla_n_f32 (float32x2_t __a, float32x2_t __b, float32_t __c);  
  1513. uint16x4_t vmla_n_u16 (uint16x4_t __a, uint16x4_t __b, uint16_t __c);  
  1514. uint32x2_t vmla_n_u32 (uint32x2_t __a, uint32x2_t __b, uint32_t __c);  
  1515. int16x8_t vmlaq_n_s16 (int16x8_t __a, int16x8_t __b, int16_t __c);  
  1516. int32x4_t vmlaq_n_s32 (int32x4_t __a, int32x4_t __b, int32_t __c);  
  1517. float32x4_t vmlaq_n_f32 (float32x4_t __a, float32x4_t __b, float32_t __c);  
  1518. uint16x8_t vmlaq_n_u16 (uint16x8_t __a, uint16x8_t __b, uint16_t __c);  
  1519. uint32x4_t vmlaq_n_u32 (uint32x4_t __a, uint32x4_t __b, uint32_t __c);  
  1520. /*--12、Vector multiply accumulate by scalar: vmla -> ri = ai + bi * c[d]; 
  1521. multiplies each element in the second vector by a scalar,  
  1522. and adds the results to the corresponding elements of the first vector.  
  1523. The scalar has index d in the third vector.--*/  
  1524. int16x4_t vmla_lane_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c, const int __d);  
  1525. int32x2_t vmla_lane_s32 (int32x2_t __a, int32x2_t __b, int32x2_t __c, const int __d);  
  1526. float32x2_t vmla_lane_f32 (float32x2_t __a, float32x2_t __b, float32x2_t __c,  
  1527.     const int __d);  
  1528. uint16x4_t vmla_lane_u16 (uint16x4_t __a, uint16x4_t __b, uint16x4_t __c, const int __d);  
  1529. uint32x2_t vmla_lane_u32 (uint32x2_t __a, uint32x2_t __b, uint32x2_t __c, const int __d);  
  1530. int16x8_t vmlaq_lane_s16 (int16x8_t __a, int16x8_t __b, int16x4_t __c, const int __d);  
  1531. int32x4_t vmlaq_lane_s32 (int32x4_t __a, int32x4_t __b, int32x2_t __c, const int __d);  
  1532. float32x4_t vmlaq_lane_f32 (float32x4_t __a, float32x4_t __b, float32x2_t __c,  
  1533.     const int __d);  
  1534. uint16x8_t vmlaq_lane_u16 (uint16x8_t __a, uint16x8_t __b, uint16x4_t __c, const int __d);  
  1535. uint32x4_t vmlaq_lane_u32 (uint32x4_t __a, uint32x4_t __b, uint32x2_t __c, const int __d);  
  1536. /*--13、Vector widening multiply accumulate with scalar: vmlal -> ri = ai + bi * c; 
  1537. multiplies each element in the second vector by a scalar, and adds the results into the  
  1538. corresponding elements of the first vector.  
  1539. The scalar has index n in the third vector. The elements in the result are wider.--*/  
  1540. int32x4_t vmlal_n_s16 (int32x4_t __a, int16x4_t __b, int16_t __c);  
  1541. int64x2_t vmlal_n_s32 (int64x2_t __a, int32x2_t __b, int32_t __c);  
  1542. uint32x4_t vmlal_n_u16 (uint32x4_t __a, uint16x4_t __b, uint16_t __c);  
  1543. uint64x2_t vmlal_n_u32 (uint64x2_t __a, uint32x2_t __b, uint32_t __c);  
  1544. /*--14、Vector widening multiply accumulate by scalar: vmlal -> ri = ai + bi * c[d]; 
  1545. multiplies each element in the second vector by a scalar, and adds the results to the  
  1546. corresponding elements of the first vector. The scalar has index d in the third vector. 
  1547. The elements in the result are wider.--*/  
  1548. int32x4_t vmlal_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d);  
  1549. int64x2_t vmlal_lane_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c, const int __d);  
  1550. uint32x4_t vmlal_lane_u16 (uint32x4_t __a, uint16x4_t __b, uint16x4_t __c, const int __d);  
  1551. uint64x2_t vmlal_lane_u32 (uint64x2_t __a, uint32x2_t __b, uint32x2_t __c, const int __d);  
  1552. /*--15、Vector widening saturating doubling multiply accumulate with scalar:  
  1553. vqdmlal -> ri = sat(ai + bi * c); 
  1554. multiplies the elements in the second vector by a scalar, and doubles the results.  
  1555. It then adds the results to the elements in the first vector. 
  1556. If any of the results overflow, they are saturated and the sticky QC flag is set.--*/  
  1557. int32x4_t vqdmlal_n_s16 (int32x4_t __a, int16x4_t __b, int16_t __c);  
  1558. int64x2_t vqdmlal_n_s32 (int64x2_t __a, int32x2_t __b, int32_t __c);  
  1559. /*--16、Vector widening saturating doubling multiply accumulate by scalar:  
  1560. vqdmlal -> ri = sat(ai + bi * c[d]) 
  1561. multiplies each element in the second vector by a scalar, doubles the results and adds  
  1562. them to the corresponding elements of the first vector. The scalar has index d in the  
  1563. third vector. If any of the results overflow, 
  1564. they are saturated and the sticky QC flag is set.--*/  
  1565. int32x4_t vqdmlal_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d);  
  1566. int64x2_t vqdmlal_lane_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c, const int __d);  
  1567. /*--17、Vector multiply subtract with scalar: vmls -> ri = ai - bi * c; 
  1568. multiplies each element in a vector by a scalar, subtracts the results from the  
  1569. corresponding elements of the destination vector,  
  1570. and places the final results in the destination vector.--*/  
  1571. int16x4_t vmls_n_s16 (int16x4_t __a, int16x4_t __b, int16_t __c);  
  1572. int32x2_t vmls_n_s32 (int32x2_t __a, int32x2_t __b, int32_t __c);  
  1573. float32x2_t vmls_n_f32 (float32x2_t __a, float32x2_t __b, float32_t __c);  
  1574. uint16x4_t vmls_n_u16 (uint16x4_t __a, uint16x4_t __b, uint16_t __c);  
  1575. uint32x2_t vmls_n_u32 (uint32x2_t __a, uint32x2_t __b, uint32_t __c);  
  1576. int16x8_t vmlsq_n_s16 (int16x8_t __a, int16x8_t __b, int16_t __c);  
  1577. int32x4_t vmlsq_n_s32 (int32x4_t __a, int32x4_t __b, int32_t __c);  
  1578. float32x4_t vmlsq_n_f32 (float32x4_t __a, float32x4_t __b, float32_t __c);  
  1579. uint16x8_t vmlsq_n_u16 (uint16x8_t __a, uint16x8_t __b, uint16_t __c);  
  1580. uint32x4_t vmlsq_n_u32 (uint32x4_t __a, uint32x4_t __b, uint32_t __c);  
  1581. /*--18、Vector multiply subtract by scalar: vmls -> ri = ai - bi * c[d]; 
  1582. multiplies each element in the second vector by a scalar, and subtracts them from the 
  1583. corresponding elements of the first vector. 
  1584. The scalar has index d in the third vector.--*/  
  1585. int16x4_t vmls_lane_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c, const int __d);  
  1586. int32x2_t vmls_lane_s32 (int32x2_t __a, int32x2_t __b, int32x2_t __c, const int __d);  
  1587. float32x2_t vmls_lane_f32 (float32x2_t __a, float32x2_t __b, float32x2_t __c,  
  1588.     const int __d);  
  1589. uint16x4_t vmls_lane_u16 (uint16x4_t __a, uint16x4_t __b, uint16x4_t __c, const int __d);  
  1590. uint32x2_t vmls_lane_u32 (uint32x2_t __a, uint32x2_t __b, uint32x2_t __c, const int __d);  
  1591. int16x8_t vmlsq_lane_s16 (int16x8_t __a, int16x8_t __b, int16x4_t __c, const int __d);  
  1592. int32x4_t vmlsq_lane_s32 (int32x4_t __a, int32x4_t __b, int32x2_t __c, const int __d);  
  1593. float32x4_t vmlsq_lane_f32 (float32x4_t __a, float32x4_t __b, float32x2_t __c,  
  1594.     const int __d);  
  1595. uint16x8_t vmlsq_lane_u16 (uint16x8_t __a, uint16x8_t __b, uint16x4_t __c, const int __d);  
  1596. uint32x4_t vmlsq_lane_u32 (uint32x4_t __a, uint32x4_t __b, uint32x2_t __c, const int __d);  
  1597. /*--19、Vector widening multiply subtract with scalar: vmlsl -> ri = ai - bi * c; 
  1598. multiplies the elements in the second vector by a scalar, then subtracts the results from 
  1599. the elements in the first vector. The elements of the result are wider.--*/  
  1600. int32x4_t vmlsl_n_s16 (int32x4_t __a, int16x4_t __b, int16_t __c);  
  1601. int64x2_t vmlsl_n_s32 (int64x2_t __a, int32x2_t __b, int32_t __c);  
  1602. uint32x4_t vmlsl_n_u16 (uint32x4_t __a, uint16x4_t __b, uint16_t __c);  
  1603. uint64x2_t vmlsl_n_u32 (uint64x2_t __a, uint32x2_t __b, uint32_t __c);  
  1604. /*--20、Vector widening multiply subtract by scalar: vmlsl -> ri = ai - bi * c[d]; 
  1605. multiplies each element in the second vector by a scalar,  
  1606. and subtracts them from the corresponding elements of the first vector.  
  1607. The scalar has index d in the third vector. The elements in the result are wider.--*/  
  1608. int32x4_t vmlsl_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d);  
  1609. int64x2_t vmlsl_lane_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c, const int __d);  
  1610. uint32x4_t vmlsl_lane_u16 (uint32x4_t __a, uint16x4_t __b, uint16x4_t __c, const int __d)  
  1611. uint64x2_t vmlsl_lane_u32 (uint64x2_t __a, uint32x2_t __b, uint32x2_t __c, const int __d);  
  1612. /*--21、Vector widening saturating doubling multiply subtract with scalar:  
  1613. vqdmlsl -> ri = sat(ai - bi * c); 
  1614. multiplies the elements of the second vector with a scalar and doubles the results.  
  1615. It then subtracts the results from the elements in the first vector. 
  1616. If any of the results overflow, they are saturated and the sticky QC flag is set.--*/  
  1617. int32x4_t vqdmlsl_n_s16 (int32x4_t __a, int16x4_t __b, int16_t __c);  
  1618. int64x2_t vqdmlsl_n_s32 (int64x2_t __a, int32x2_t __b, int32_t __c);  
  1619. /*--22、Vector widening saturating doubling multiply subtract by scalar: 
  1620. vqdmlsl -> ri = sat(ai - bi * c[[d]); 
  1621. multiplies each element in the second vector by a scalar, doubles the results and subtracts 
  1622. them from the corresponding elements of the first vector. The scalar has index n in the  
  1623. third vector.If any of the results overflow,  
  1624. they are saturated and the sticky QC flag is set.--*/  
  1625. int32x4_t vqdmlsl_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d);  
  1626. int64x2_t vqdmlsl_lane_s32 (int64x2_t __a, int32x2_t __b, int32x2_t __c, const int __d);  
  1627. /*****************************************************Vector extract********************/  
  1628. /*--Vector extract: vext -> extracts n elements from the lower end of the second operand 
  1629. vector and the remaining elements from the higher end of the first, and combines them to 
  1630. form the result vector. The elements from the second operand are placed in the most  
  1631. significant part of the result vector.The elements from the first operand are placed in 
  1632. the least significant part of the result vector.This intrinsic cycles the elements 
  1633. through the lanes if the two input vectors are the same.--*/  
  1634. int8x8_t vext_s8 (int8x8_t __a, int8x8_t __b, const int __c);  
  1635. int16x4_t vext_s16 (int16x4_t __a, int16x4_t __b, const int __c);  
  1636. int32x2_t vext_s32 (int32x2_t __a, int32x2_t __b, const int __c);  
  1637. int64x1_t vext_s64 (int64x1_t __a, int64x1_t __b, const int __c);  
  1638. float32x2_t vext_f32 (float32x2_t __a, float32x2_t __b, const int __c);  
  1639. uint8x8_t vext_u8 (uint8x8_t __a, uint8x8_t __b, const int __c);  
  1640. uint16x4_t vext_u16 (uint16x4_t __a, uint16x4_t __b, const int __c);  
  1641. uint32x2_t vext_u32 (uint32x2_t __a, uint32x2_t __b, const int __c);  
  1642. uint64x1_t vext_u64 (uint64x1_t __a, uint64x1_t __b, const int __c);  
  1643. poly8x8_t vext_p8 (poly8x8_t __a, poly8x8_t __b, const int __c);  
  1644. poly16x4_t vext_p16 (poly16x4_t __a, poly16x4_t __b, const int __c);  
  1645. int8x16_t vextq_s8 (int8x16_t __a, int8x16_t __b, const int __c);//_mm_alignr_epi8   
  1646. int16x8_t vextq_s16 (int16x8_t __a, int16x8_t __b, const int __c);//_mm_alignr_epi8   
  1647. int32x4_t vextq_s32 (int32x4_t __a, int32x4_t __b, const int __c);//_mm_alignr_epi8  
  1648. int64x2_t vextq_s64 (int64x2_t __a, int64x2_t __b, const int __c);//_mm_alignr_epi8  
  1649. float32x4_t vextq_f32 (float32x4_t __a, float32x4_t __b, const int __c);//_mm_alignr_epi8  
  1650. uint8x16_t vextq_u8 (uint8x16_t __a, uint8x16_t __b, const int __c);//_mm_alignr_epi8  
  1651. uint16x8_t vextq_u16 (uint16x8_t __a, uint16x8_t __b, const int __c);//_mm_alignr_epi8  
  1652. uint32x4_t vextq_u32 (uint32x4_t __a, uint32x4_t __b, const int __c);//_mm_alignr_epi8  
  1653. uint64x2_t vextq_u64 (uint64x2_t __a, uint64x2_t __b, const int __c);//_mm_alignr_epi8  
  1654. poly8x16_t vextq_p8 (poly8x16_t __a, poly8x16_t __b, const int __c);//_mm_alignr_epi8  
  1655. poly16x8_t vextq_p16 (poly16x8_t __a, poly16x8_t __b, const int __c);//_mm_alignr_epi8  
  1656. /****************************************************Reverse elements*******************/  
  1657. /*--1、Reverse vector elements (swap endianness): vrev64 -> reverses the order of 8-bit,  
  1658. 16-bit, or 32-bit elements within each doubleword of the vector,  
  1659. and places the result in the corresponding destination vector.--*/  
  1660. int8x8_t vrev64_s8 (int8x8_t __a);  
  1661. int16x4_t vrev64_s16 (int16x4_t __a);  
  1662. int32x2_t vrev64_s32 (int32x2_t __a);  
  1663. float32x2_t vrev64_f32 (float32x2_t __a);//_mm_shuffle_ps  
  1664. uint8x8_t vrev64_u8 (uint8x8_t __a);  
  1665. uint16x4_t vrev64_u16 (uint16x4_t __a);  
  1666. uint32x2_t vrev64_u32 (uint32x2_t __a);  
  1667. poly8x8_t vrev64_p8 (poly8x8_t __a);  
  1668. poly16x4_t vrev64_p16 (poly16x4_t __a);  
  1669. int8x16_t vrev64q_s8 (int8x16_t __a);  
  1670. int16x8_t vrev64q_s16 (int16x8_t __a);  
  1671. int32x4_t vrev64q_s32 (int32x4_t __a);  
  1672. float32x4_t vrev64q_f32 (float32x4_t __a);//_mm_shuffle_ps  
  1673. uint8x16_t vrev64q_u8 (uint8x16_t __a);  
  1674. uint16x8_t vrev64q_u16 (uint16x8_t __a);  
  1675. uint32x4_t vrev64q_u32 (uint32x4_t __a);  
  1676. poly8x16_t vrev64q_p8 (poly8x16_t __a);  
  1677. poly16x8_t vrev64q_p16 (poly16x8_t __a);  
  1678. /*--2、Reverse vector elements (swap endianness): vrev32 -> reverses the order of 8-bit  
  1679. or 16-bit elements within each word of the vector,  
  1680. and places the result in the corresponding destination vector.--*/  
  1681. int8x8_t vrev32_s8 (int8x8_t __a);  
  1682. int16x4_t vrev32_s16 (int16x4_t __a);  
  1683. uint8x8_t vrev32_u8 (uint8x8_t __a);  
  1684. uint16x4_t vrev32_u16 (uint16x4_t __a);  
  1685. poly8x8_t vrev32_p8 (poly8x8_t __a);  
  1686. poly16x4_t vrev32_p16 (poly16x4_t __a);  
  1687. int8x16_t vrev32q_s8 (int8x16_t __a);  
  1688. int16x8_t vrev32q_s16 (int16x8_t __a);  
  1689. uint8x16_t vrev32q_u8 (uint8x16_t __a);  
  1690. uint16x8_t vrev32q_u16 (uint16x8_t __a);  
  1691. poly8x16_t vrev32q_p8 (poly8x16_t __a);  
  1692. poly16x8_t vrev32q_p16 (poly16x8_t __a);  
  1693. /*--3、Reverse vector elements (swap endianness): vrev16 -> reverses the order  
  1694. of 8-bit elements within each halfword of the vector,  
  1695. and places the result in the corresponding destination vector.--*/  
  1696. int8x8_t vrev16_s8 (int8x8_t __a);  
  1697. uint8x8_t vrev16_u8 (uint8x8_t __a);  
  1698. poly8x8_t vrev16_p8 (poly8x8_t __a);  
  1699. int8x16_t vrev16q_s8 (int8x16_t __a);  
  1700. uint8x16_t vrev16q_u8 (uint8x16_t __a);  
  1701. poly8x16_t vrev16q_p8 (poly8x16_t __a);  
  1702. /**********************************************************Bitwise Select***************/  
  1703. /*--Bitwise Select: vbsl -> selects each bit for the destination from the first operand  
  1704. if the corresponding bit of the destination is 1,  
  1705. or from the second operand if the corresponding bit of the destination is 0.--*/  
  1706. int8x8_t vbsl_s8 (uint8x8_t __a, int8x8_t __b, int8x8_t __c);  
  1707. int16x4_t vbsl_s16 (uint16x4_t __a, int16x4_t __b, int16x4_t __c);  
  1708. int32x2_t vbsl_s32 (uint32x2_t __a, int32x2_t __b, int32x2_t __c);  
  1709. int64x1_t vbsl_s64 (uint64x1_t __a, int64x1_t __b, int64x1_t __c);  
  1710. float32x2_t vbsl_f32 (uint32x2_t __a, float32x2_t __b, float32x2_t __c);  
  1711. uint8x8_t vbsl_u8 (uint8x8_t __a, uint8x8_t __b, uint8x8_t __c);  
  1712. uint16x4_t vbsl_u16 (uint16x4_t __a, uint16x4_t __b, uint16x4_t __c);  
  1713. uint32x2_t vbsl_u32 (uint32x2_t __a, uint32x2_t __b, uint32x2_t __c);  
  1714. uint64x1_t vbsl_u64 (uint64x1_t __a, uint64x1_t __b, uint64x1_t __c);  
  1715. poly8x8_t vbsl_p8 (uint8x8_t __a, poly8x8_t __b, poly8x8_t __c);  
  1716. poly16x4_t vbsl_p16 (uint16x4_t __a, poly16x4_t __b, poly16x4_t __c);  
  1717. int8x16_t vbslq_s8 (uint8x16_t __a, int8x16_t __b, int8x16_t __c);  
  1718. int16x8_t vbslq_s16 (uint16x8_t __a, int16x8_t __b, int16x8_t __c);  
  1719. int32x4_t vbslq_s32 (uint32x4_t __a, int32x4_t __b, int32x4_t __c);  
  1720. int64x2_t vbslq_s64 (uint64x2_t __a, int64x2_t __b, int64x2_t __c);  
  1721. float32x4_t vbslq_f32 (uint32x4_t __a, float32x4_t __b, float32x4_t __c);  
  1722. uint8x16_t vbslq_u8 (uint8x16_t __a, uint8x16_t __b, uint8x16_t __c);  
  1723. uint16x8_t vbslq_u16 (uint16x8_t __a, uint16x8_t __b, uint16x8_t __c);  
  1724. uint32x4_t vbslq_u32 (uint32x4_t __a, uint32x4_t __b, uint32x4_t __c);  
  1725. uint64x2_t vbslq_u64 (uint64x2_t __a, uint64x2_t __b, uint64x2_t __c);  
  1726. poly8x16_t vbslq_p8 (uint8x16_t __a, poly8x16_t __b, poly8x16_t __c);  
  1727. poly16x8_t vbslq_p16 (uint16x8_t __a, poly16x8_t __b, poly16x8_t __c);  
  1728. /************************************Transposition operations***************************/  
  1729. /*--1、Transpose elements: vtrn -> treats the elements of its input vectors as elements 
  1730. of 2 x 2 matrices, and transposes the matrices. Essentially, it exchanges the elements  
  1731. with odd indices from Vector1 with the elements with even indices from Vector2.--*/  
  1732. int8x8x2_t vtrn_s8 (int8x8_t __a, int8x8_t __b);  
  1733. int16x4x2_t vtrn_s16 (int16x4_t __a, int16x4_t __b);  
  1734. uint8x8x2_t vtrn_u8 (uint8x8_t __a, uint8x8_t __b);  
  1735. uint16x4x2_t vtrn_u16 (uint16x4_t __a, uint16x4_t __b);  
  1736. poly8x8x2_t vtrn_p8 (poly8x8_t __a, poly8x8_t __b);  
  1737. poly16x4x2_t vtrn_p16 (poly16x4_t __a, poly16x4_t __b);  
  1738. int32x2x2_t vtrn_s32 (int32x2_t __a, int32x2_t __b)  
  1739. float32x2x2_t vtrn_f32 (float32x2_t __a, float32x2_t __b)  
  1740. uint32x2x2_t vtrn_u32 (uint32x2_t __a, uint32x2_t __b)  
  1741. int8x16x2_t vtrnq_s8 (int8x16_t __a, int8x16_t __b)  
  1742. int16x8x2_t vtrnq_s16 (int16x8_t __a, int16x8_t __b)  
  1743. int32x4x2_t vtrnq_s32 (int32x4_t __a, int32x4_t __b)  
  1744. float32x4x2_t vtrnq_f32 (float32x4_t __a, float32x4_t __b)  
  1745. uint8x16x2_t vtrnq_u8 (uint8x16_t __a, uint8x16_t __b)  
  1746. uint16x8x2_t vtrnq_u16 (uint16x8_t __a, uint16x8_t __b)  
  1747. uint32x4x2_t vtrnq_u32 (uint32x4_t __a, uint32x4_t __b);  
  1748. poly8x16x2_t vtrnq_p8 (poly8x16_t __a, poly8x16_t __b);  
  1749. poly16x8x2_t vtrnq_p16 (poly16x8_t __a, poly16x8_t __b);  
  1750. /*--2、Interleave elements(Zip elements):  
  1751. vzip ->  (Vector Zip) interleaves the elements of two vectors.--*/  
  1752. int8x8x2_t vzip_s8 (int8x8_t __a, int8x8_t __b);  
  1753. int16x4x2_t vzip_s16 (int16x4_t __a, int16x4_t __b);  
  1754. uint8x8x2_t vzip_u8 (uint8x8_t __a, uint8x8_t __b);  
  1755. uint16x4x2_t vzip_u16 (uint16x4_t __a, uint16x4_t __b);  
  1756. poly8x8x2_t vzip_p8 (poly8x8_t __a, poly8x8_t __b);  
  1757. poly16x4x2_t vzip_p16 (poly16x4_t __a, poly16x4_t __b);  
  1758. int32x2x2_t vzip_s32 (int32x2_t __a, int32x2_t __b);  
  1759. float32x2x2_t vzip_f32 (float32x2_t __a, float32x2_t __b);  
  1760. uint32x2x2_t vzip_u32 (uint32x2_t __a, uint32x2_t __b);  
  1761. int8x16x2_t vzipq_s8 (int8x16_t __a, int8x16_t __b);  
  1762. int16x8x2_t vzipq_s16 (int16x8_t __a, int16x8_t __b);  
  1763. int32x4x2_t vzipq_s32 (int32x4_t __a, int32x4_t __b);  
  1764. float32x4x2_t vzipq_f32 (float32x4_t __a, float32x4_t __b);  
  1765. uint8x16x2_t vzipq_u8 (uint8x16_t __a, uint8x16_t __b);  
  1766. uint16x8x2_t vzipq_u16 (uint16x8_t __a, uint16x8_t __b);  
  1767. uint32x4x2_t vzipq_u32 (uint32x4_t __a, uint32x4_t __b);  
  1768. poly8x16x2_t vzipq_p8 (poly8x16_t __a, poly8x16_t __b);  
  1769. poly16x8x2_t vzipq_p16 (poly16x8_t __a, poly16x8_t __b);  
  1770. /*--3、De-Interleave elements(Unzip elements):  
  1771. vuzp -> (Vector Unzip) de-interleaves the elements of two vectors. 
  1772. De-interleaving is the inverse process of interleaving.--*/  
  1773. int8x8x2_t vuzp_s8 (int8x8_t __a, int8x8_t __b);  
  1774. int16x4x2_t vuzp_s16 (int16x4_t __a, int16x4_t __b);  
  1775. int32x2x2_t vuzp_s32 (int32x2_t __a, int32x2_t __b);  
  1776. float32x2x2_t vuzp_f32 (float32x2_t __a, float32x2_t __b);  
  1777. uint8x8x2_t vuzp_u8 (uint8x8_t __a, uint8x8_t __b);  
  1778. uint16x4x2_t vuzp_u16 (uint16x4_t __a, uint16x4_t __b);  
  1779. uint32x2x2_t vuzp_u32 (uint32x2_t __a, uint32x2_t __b);  
  1780. poly8x8x2_t vuzp_p8 (poly8x8_t __a, poly8x8_t __b);  
  1781. poly16x4x2_t vuzp_p16 (poly16x4_t __a, poly16x4_t __b);  
  1782. int8x16x2_t vuzpq_s8 (int8x16_t __a, int8x16_t __b);  
  1783. int16x8x2_t vuzpq_s16 (int16x8_t __a, int16x8_t __b);  
  1784. int32x4x2_t vuzpq_s32 (int32x4_t __a, int32x4_t __b);  
  1785. float32x4x2_t vuzpq_f32 (float32x4_t __a, float32x4_t __b);  
  1786. uint8x16x2_t vuzpq_u8 (uint8x16_t __a, uint8x16_t __b);  
  1787. uint16x8x2_t vuzpq_u16 (uint16x8_t __a, uint16x8_t __b);  
  1788. uint32x4x2_t vuzpq_u32 (uint32x4_t __a, uint32x4_t __b);  
  1789. poly8x16x2_t vuzpq_p8 (poly8x16_t __a, poly8x16_t __b);  
  1790. poly16x8x2_t vuzpq_p16 (poly16x8_t __a, poly16x8_t __b);  
  1791. /*********************************************************Load**************************/  
  1792. /*--1、Load a single vector from memory: vld1 -> loads a vector from memory.--*/  
  1793. int8x8_t vld1_s8 (const int8_t * __a);  
  1794. int16x4_t vld1_s16 (const int16_t * __a);  
  1795. int32x2_t vld1_s32 (const int32_t * __a);  
  1796. int64x1_t vld1_s64 (const int64_t * __a);  
  1797. float32x2_t vld1_f32 (const float32_t * __a);  
  1798. uint8x8_t vld1_u8 (const uint8_t * __a);//_mm_loadl_epi64  
  1799. uint16x4_t vld1_u16 (const uint16_t * __a);//_mm_loadl_epi64  
  1800. uint32x2_t vld1_u32 (const uint32_t * __a);//_mm_loadl_epi64  
  1801. uint64x1_t vld1_u64 (const uint64_t * __a);//_mm_loadl_epi64  
  1802. poly8x8_t vld1_p8 (const poly8_t * __a);  
  1803. poly16x4_t vld1_p16 (const poly16_t * __a);  
  1804. int8x16_t vld1q_s8 (const int8_t * __a);  
  1805. int16x8_t vld1q_s16 (const int16_t * __a);  
  1806. int32x4_t vld1q_s32 (const int32_t * __a);  
  1807. int64x2_t vld1q_s64 (const int64_t * __a);  
  1808. float32x4_t vld1q_f32 (const float32_t * __a);  
  1809. uint8x16_t vld1q_u8 (const uint8_t * __a);  
  1810. uint16x8_t vld1q_u16 (const uint16_t * __a);  
  1811. uint32x4_t vld1q_u32 (const uint32_t * __a);  
  1812. uint64x2_t vld1q_u64 (const uint64_t * __a);  
  1813. poly8x16_t vld1q_p8 (const poly8_t * __a);  
  1814. poly16x8_t vld1q_p16 (const poly16_t * __a);  
  1815. /*--2、Load a single lane from memory: vld1 -> loads one element of the input vector  
  1816. from memory and returns this in the result vector. Elements of the vector that are not 
  1817. loaded are returned in the result vector unaltered.  
  1818. c is the index of the element to load.--*/  
  1819. int8x8_t vld1_lane_s8 (const int8_t * __a, int8x8_t __b, const int __c);//_mm_insert_epi8  
  1820. int16x4_t vld1_lane_s16 (const int16_t * __a, int16x4_t __b,  
  1821.     const int __c);//_mm_insert_epi16  
  1822. int32x2_t vld1_lane_s32 (const int32_t * __a, int32x2_t __b,   
  1823.     const int __c);//_mm_insert_epi32  
  1824. float32x2_t vld1_lane_f32 (const float32_t * __a, float32x2_t __b, const int __c);  
  1825. uint8x8_t vld1_lane_u8 (const uint8_t * __a, uint8x8_t __b,   
  1826.     const int __c);//_mm_insert_epi8  
  1827. uint16x4_t vld1_lane_u16 (const uint16_t * __a, uint16x4_t __b,   
  1828.     const int __c);//_mm_insert_epi16  
  1829. uint32x2_t vld1_lane_u32 (const uint32_t * __a, uint32x2_t __b,   
  1830.     const int __c);//_mm_insert_epi32  
  1831. poly8x8_t vld1_lane_p8 (const poly8_t * __a, poly8x8_t __b,   
  1832.     const int __c);//_mm_insert_epi8  
  1833. poly16x4_t vld1_lane_p16 (const poly16_t * __a, poly16x4_t __b,   
  1834.     const int __c);//_mm_insert_epi16  
  1835. int64x1_t vld1_lane_s64 (const int64_t * __a, int64x1_t __b, const int __c);  
  1836. uint64x1_t vld1_lane_u64 (const uint64_t * __a, uint64x1_t __b, const int __c);  
  1837. int8x16_t vld1q_lane_s8 (const int8_t * __a, int8x16_t __b,   
  1838.     const int __c);//_mm_insert_epi8  
  1839. int16x8_t vld1q_lane_s16 (const int16_t * __a, int16x8_t __b,   
  1840.     const int __c);//_mm_insert_epi16  
  1841. int32x4_t vld1q_lane_s32 (const int32_t * __a, int32x4_t __b,   
  1842.     const int __c);//_mm_insert_epi32  
  1843. float32x4_t vld1q_lane_f32 (const float32_t * __a, float32x4_t __b, const int __c);  
  1844. uint8x16_t vld1q_lane_u8 (const uint8_t * __a, uint8x16_t __b,   
  1845.     const int __c);//_mm_insert_epi8  
  1846. uint16x8_t vld1q_lane_u16 (const uint16_t * __a, uint16x8_t __b,   
  1847.     const int __c);//_mm_insert_epi16  
  1848. uint32x4_t vld1q_lane_u32 (const uint32_t * __a, uint32x4_t __b,   
  1849.     const int __c);//_mm_insert_epi32  
  1850. poly8x16_t vld1q_lane_p8 (const poly8_t * __a, poly8x16_t __b,   
  1851.     const int __c);//_mm_insert_epi8  
  1852. poly16x8_t vld1q_lane_p16 (const poly16_t * __a, poly16x8_t __b,   
  1853.     const int __c);//_mm_insert_epi16  
  1854. int64x2_t vld1q_lane_s64 (const int64_t * __a, int64x2_t __b,   
  1855.     const int __c);//_mm_insert_epi64  
  1856. uint64x2_t vld1q_lane_u64 (const uint64_t * __a, uint64x2_t __b,   
  1857.     const int __c);//_mm_insert_epi64  
  1858. /*--3、Load all lanes of vector with same value from memory: vld1 ->  
  1859. loads one element in a vector from memory.  
  1860. The loaded element is copied to all other lanes of the vector.--*/  
  1861. int8x8_t vld1_dup_s8 (const int8_t * __a);//_mm_set1_epi8  
  1862. int16x4_t vld1_dup_s16 (const int16_t * __a);//_mm_set1_epi16  
  1863. int32x2_t vld1_dup_s32 (const int32_t * __a);//_mm_set1_epi32  
  1864. float32x2_t vld1_dup_f32 (const float32_t * __a);//_mm_set1_ps  
  1865. uint8x8_t vld1_dup_u8 (const uint8_t * __a);//_mm_set1_epi8  
  1866. uint16x4_t vld1_dup_u16 (const uint16_t * __a);//_mm_set1_epi16  
  1867. uint32x2_t vld1_dup_u32 (const uint32_t * __a);//_mm_set1_epi32  
  1868. poly8x8_t vld1_dup_p8 (const poly8_t * __a);//_mm_set1_epi8  
  1869. poly16x4_t vld1_dup_p16 (const poly16_t * __a);//_mm_set1_epi16  
  1870. int64x1_t vld1_dup_s64 (const int64_t * __a);  
  1871. uint64x1_t vld1_dup_u64 (const uint64_t * __a);  
  1872. int8x16_t vld1q_dup_s8 (const int8_t * __a);//_mm_set1_epi8  
  1873. int16x8_t vld1q_dup_s16 (const int16_t * __a);//_mm_set1_epi16  
  1874. int32x4_t vld1q_dup_s32 (const int32_t * __a);//_mm_set1_epi32  
  1875. float32x4_t vld1q_dup_f32 (const float32_t * __a);//_mm_set1_ps  
  1876. uint8x16_t vld1q_dup_u8 (const uint8_t * __a);//_mm_set1_epi8  
  1877. uint16x8_t vld1q_dup_u16 (const uint16_t * __a);//_mm_set1_epi16  
  1878. uint32x4_t vld1q_dup_u32 (const uint32_t * __a);//_mm_set1_epi32  
  1879. poly8x16_t vld1q_dup_p8 (const poly8_t * __a);//_mm_set1_epi8  
  1880. poly16x8_t vld1q_dup_p16 (const poly16_t * __a);//_mm_set1_epi16  
  1881. int64x2_t vld1q_dup_s64 (const int64_t * __a);  
  1882. uint64x2_t vld1q_dup_u64 (const uint64_t * __a);  
  1883. /*--4、Load 2-element structure from memory: vld2 -> loads 2 vectors from memory.  
  1884. It performs a 2-way de-interleave from memory to the vectors.--*/  
  1885. int8x8x2_t vld2_s8 (const int8_t * __a);  
  1886. int16x4x2_t vld2_s16 (const int16_t * __a);  
  1887. int32x2x2_t vld2_s32 (const int32_t * __a);  
  1888. float32x2x2_t vld2_f32 (const float32_t * __a);  
  1889. uint8x8x2_t vld2_u8 (const uint8_t * __a);  
  1890. uint16x4x2_t vld2_u16 (const uint16_t * __a);  
  1891. uint32x2x2_t vld2_u32 (const uint32_t * __a);  
  1892. poly8x8x2_t vld2_p8 (const poly8_t * __a);  
  1893. poly16x4x2_t vld2_p16 (const poly16_t * __a);  
  1894. int64x1x2_t vld2_s64 (const int64_t * __a);  
  1895. uint64x1x2_t vld2_u64 (const uint64_t * __a);  
  1896. int8x16x2_t vld2q_s8 (const int8_t * __a);  
  1897. int16x8x2_t vld2q_s16 (const int16_t * __a);  
  1898. int32x4x2_t vld2q_s32 (const int32_t * __a);  
  1899. float32x4x2_t vld2q_f32 (const float32_t * __a);  
  1900. uint8x16x2_t vld2q_u8 (const uint8_t * __a);  
  1901. uint16x8x2_t vld2q_u16 (const uint16_t * __a);  
  1902. uint32x4x2_t vld2q_u32 (const uint32_t * __a);  
  1903. poly8x16x2_t vld2q_p8 (const poly8_t * __a);  
  1904. poly16x8x2_t vld2q_p16 (const poly16_t * __a);  
  1905. /*--5、Load a single lane of 2-element structure from memory: vld2 ->  
  1906. loads two elements in a double-vector structure from memory and returns this in  
  1907. the result. The loaded values are from consecutive memory addresses.  
  1908. Elements in the structure that are not loaded are returned in the result unaltered.  
  1909. c is the index of the elements to load.--*/  
  1910. int8x8x2_t vld2_lane_s8 (const int8_t * __a, int8x8x2_t __b, const int __c);  
  1911. int16x4x2_t vld2_lane_s16 (const int16_t * __a, int16x4x2_t __b, const int __c);  
  1912. int32x2x2_t vld2_lane_s32 (const int32_t * __a, int32x2x2_t __b, const int __c);  
  1913. float32x2x2_t vld2_lane_f32 (const float32_t * __a, float32x2x2_t __b, const int __c);  
  1914. uint8x8x2_t vld2_lane_u8 (const uint8_t * __a, uint8x8x2_t __b, const int __c);  
  1915. uint16x4x2_t vld2_lane_u16 (const uint16_t * __a, uint16x4x2_t __b, const int __c);  
  1916. uint32x2x2_t vld2_lane_u32 (const uint32_t * __a, uint32x2x2_t __b, const int __c);  
  1917. poly8x8x2_t vld2_lane_p8 (const poly8_t * __a, poly8x8x2_t __b, const int __c);  
  1918. poly16x4x2_t vld2_lane_p16 (const poly16_t * __a, poly16x4x2_t __b, const int __c);  
  1919. int16x8x2_t vld2q_lane_s16 (const int16_t * __a, int16x8x2_t __b, const int __c);  
  1920. int32x4x2_t vld2q_lane_s32 (const int32_t * __a, int32x4x2_t __b, const int __c);  
  1921. float32x4x2_t vld2q_lane_f32 (const float32_t * __a, float32x4x2_t __b, const int __c);  
  1922. uint16x8x2_t vld2q_lane_u16 (const uint16_t * __a, uint16x8x2_t __b, const int __c);  
  1923. uint32x4x2_t vld2q_lane_u32 (const uint32_t * __a, uint32x4x2_t __b, const int __c);  
  1924. poly16x8x2_t vld2q_lane_p16 (const poly16_t * __a, poly16x8x2_t __b, const int __c);  
  1925. /*--6、Load all lanes of 2-element structure with same value from memory: vld2 ->  
  1926. loads 2 elements from memory and returns a double-vector structure.  
  1927. The first element is copied to all lanes of the first vector.  
  1928. The second element is copied to all lanes of the second vector.--*/  
  1929. int8x8x2_t vld2_dup_s8 (const int8_t * __a);  
  1930. int16x4x2_t vld2_dup_s16 (const int16_t * __a);  
  1931. int32x2x2_t vld2_dup_s32 (const int32_t * __a);  
  1932. float32x2x2_t vld2_dup_f32 (const float32_t * __a);  
  1933. uint8x8x2_t vld2_dup_u8 (const uint8_t * __a);  
  1934. uint16x4x2_t vld2_dup_u16 (const uint16_t * __a);  
  1935. uint32x2x2_t vld2_dup_u32 (const uint32_t * __a);  
  1936. poly8x8x2_t vld2_dup_p8 (const poly8_t * __a);  
  1937. poly16x4x2_t vld2_dup_p16 (const poly16_t * __a);  
  1938. int64x1x2_t vld2_dup_s64 (const int64_t * __a);  
  1939. uint64x1x2_t vld2_dup_u64 (const uint64_t * __a);  
  1940. /*--7、Load 3-element structure from memory: vld3 ->  
  1941. loads 3 vectors from memory.  
  1942. It performs a 3-way de-interleave from memory to the vectors.--*/  
  1943. int8x8x3_t vld3_s8 (const int8_t * __a);  
  1944. int16x4x3_t vld3_s16 (const int16_t * __a);  
  1945. int32x2x3_t vld3_s32 (const int32_t * __a);  
  1946. float32x2x3_t vld3_f32 (const float32_t * __a);  
  1947. uint8x8x3_t vld3_u8 (const uint8_t * __a);  
  1948. uint16x4x3_t vld3_u16 (const uint16_t * __a);  
  1949. uint32x2x3_t vld3_u32 (const uint32_t * __a);  
  1950. poly8x8x3_t vld3_p8 (const poly8_t * __a);  
  1951. poly16x4x3_t vld3_p16 (const poly16_t * __a);  
  1952. int64x1x3_t vld3_s64 (const int64_t * __a);  
  1953. uint64x1x3_t vld3_u64 (const uint64_t * __a);  
  1954. int8x16x3_t vld3q_s8 (const int8_t * __a);  
  1955. int16x8x3_t vld3q_s16 (const int16_t * __a);  
  1956. int32x4x3_t vld3q_s32 (const int32_t * __a);  
  1957. float32x4x3_t vld3q_f32 (const float32_t * __a);  
  1958. uint8x16x3_t vld3q_u8 (const uint8_t * __a);  
  1959. uint16x8x3_t vld3q_u16 (const uint16_t * __a);  
  1960. uint32x4x3_t vld3q_u32 (const uint32_t * __a);  
  1961. poly8x16x3_t vld3q_p8 (const poly8_t * __a);  
  1962. poly16x8x3_t vld3q_p16 (const poly16_t * __a);  
  1963. /*--8、Load a single lane of 3-element structure from memory: vld3 ->  
  1964. loads three elements in a triple-vector structure from memory and returns this in the 
  1965. result. The loaded values are from consecutive memory addresses.  
  1966. Elements in the structure that are not loaded are returned in the result unaltered. 
  1967. c is the index of the element to load.--*/  
  1968. int8x8x3_t vld3_lane_s8 (const int8_t * __a, int8x8x3_t __b, const int __c);  
  1969. int16x4x3_t vld3_lane_s16 (const int16_t * __a, int16x4x3_t __b, const int __c);  
  1970. int32x2x3_t vld3_lane_s32 (const int32_t * __a, int32x2x3_t __b, const int __c);  
  1971. float32x2x3_t vld3_lane_f32 (const float32_t * __a, float32x2x3_t __b, const int __c);  
  1972. uint8x8x3_t vld3_lane_u8 (const uint8_t * __a, uint8x8x3_t __b, const int __c);  
  1973. uint16x4x3_t vld3_lane_u16 (const uint16_t * __a, uint16x4x3_t __b, const int __c);  
  1974. uint32x2x3_t vld3_lane_u32 (const uint32_t * __a, uint32x2x3_t __b, const int __c);  
  1975. poly8x8x3_t vld3_lane_p8 (const poly8_t * __a, poly8x8x3_t __b, const int __c);  
  1976. poly16x4x3_t vld3_lane_p16 (const poly16_t * __a, poly16x4x3_t __b, const int __c);  
  1977. int16x8x3_t vld3q_lane_s16 (const int16_t * __a, int16x8x3_t __b, const int __c);  
  1978. int32x4x3_t vld3q_lane_s32 (const int32_t * __a, int32x4x3_t __b, const int __c);  
  1979. float32x4x3_t vld3q_lane_f32 (const float32_t * __a, float32x4x3_t __b, const int __c);  
  1980. uint16x8x3_t vld3q_lane_u16 (const uint16_t * __a, uint16x8x3_t __b, const int __c);  
  1981. uint32x4x3_t vld3q_lane_u32 (const uint32_t * __a, uint32x4x3_t __b, const int __c);  
  1982. poly16x8x3_t vld3q_lane_p16 (const poly16_t * __a, poly16x8x3_t __b, const int __c);  
  1983. /*--9、Load all lanes of 3-element structure with same value from memory: vld3 -> 
  1984. loads 3 elements from memory and returns a triple-vector structure. The first element 
  1985. is copied to all lanes of the first vector. And similarly the second and third elements  
  1986. are copied to the second and third vectors respectively.--*/  
  1987. int8x8x3_t vld3_dup_s8 (const int8_t * __a);  
  1988. int16x4x3_t vld3_dup_s16 (const int16_t * __a);  
  1989. int32x2x3_t vld3_dup_s32 (const int32_t * __a);  
  1990. float32x2x3_t vld3_dup_f32 (const float32_t * __a);  
  1991. uint8x8x3_t vld3_dup_u8 (const uint8_t * __a);  
  1992. uint16x4x3_t vld3_dup_u16 (const uint16_t * __a);  
  1993. uint32x2x3_t vld3_dup_u32 (const uint32_t * __a);  
  1994. poly8x8x3_t vld3_dup_p8 (const poly8_t * __a);  
  1995. poly16x4x3_t vld3_dup_p16 (const poly16_t * __a);  
  1996. int64x1x3_t vld3_dup_s64 (const int64_t * __a);  
  1997. uint64x1x3_t vld3_dup_u64 (const uint64_t * __a);  
  1998. /*--10、Load 4-element structure from memory: vld4 ->  
  1999. loads 4 vectors from memory.  
  2000. It performs a 4-way de-interleave from memory to the vectors.--*/  
  2001. int8x8x4_t vld4_s8 (const int8_t * __a);  
  2002. int16x4x4_t vld4_s16 (const int16_t * __a);  
  2003. int32x2x4_t vld4_s32 (const int32_t * __a);  
  2004. float32x2x4_t vld4_f32 (const float32_t * __a);  
  2005. uint8x8x4_t  vld4_u8 (const uint8_t * __a);  
  2006. uint16x4x4_t vld4_u16 (const uint16_t * __a);  
  2007. uint32x2x4_t vld4_u32 (const uint32_t * __a);  
  2008. poly8x8x4_t vld4_p8 (const poly8_t * __a);  
  2009. poly16x4x4_t vld4_p16 (const poly16_t * __a);  
  2010. int64x1x4_t vld4_s64 (const int64_t * __a);  
  2011. uint64x1x4_t vld4_u64 (const uint64_t * __a);  
  2012. int8x16x4_t vld4q_s8 (const int8_t * __a);  
  2013. int16x8x4_t vld4q_s16 (const int16_t * __a);  
  2014. int32x4x4_t vld4q_s32 (const int32_t * __a);  
  2015. float32x4x4_t vld4q_f32 (const float32_t * __a);  
  2016. uint8x16x4_t vld4q_u8 (const uint8_t * __a);  
  2017. uint16x8x4_t vld4q_u16 (const uint16_t * __a);  
  2018. uint32x4x4_t vld4q_u32 (const uint32_t * __a);  
  2019. poly8x16x4_t vld4q_p8 (const poly8_t * __a);  
  2020. poly16x8x4_t vld4q_p16 (const poly16_t * __a);  
  2021. /*--11、Load a single lane of 4-element structure from memory: vld4 ->  
  2022. loads four elements in a quad-vector structure from memory and returns this in the result.  
  2023. The loaded values are from consecutive memory addresses. 
  2024. Elements in the structure that are not loaded are returned in the result unaltered.  
  2025. c is the index of the element to load.--*/  
  2026. int8x8x4_t vld4_lane_s8 (const int8_t * __a, int8x8x4_t __b, const int __c);  
  2027. int16x4x4_t vld4_lane_s16 (const int16_t * __a, int16x4x4_t __b, const int __c);  
  2028. int32x2x4_t vld4_lane_s32 (const int32_t * __a, int32x2x4_t __b, const int __c);  
  2029. float32x2x4_t vld4_lane_f32 (const float32_t * __a, float32x2x4_t __b, const int __c);  
  2030. uint8x8x4_t vld4_lane_u8 (const uint8_t * __a, uint8x8x4_t __b, const int __c);  
  2031. uint16x4x4_t vld4_lane_u16 (const uint16_t * __a, uint16x4x4_t __b, const int __c);  
  2032. uint32x2x4_t vld4_lane_u32 (const uint32_t * __a, uint32x2x4_t __b, const int __c);  
  2033. poly8x8x4_t vld4_lane_p8 (const poly8_t * __a, poly8x8x4_t __b, const int __c);  
  2034. poly16x4x4_t vld4_lane_p16 (const poly16_t * __a, poly16x4x4_t __b, const int __c);  
  2035. int16x8x4_t vld4q_lane_s16 (const int16_t * __a, int16x8x4_t __b, const int __c);  
  2036. int32x4x4_t vld4q_lane_s32 (const int32_t * __a, int32x4x4_t __b, const int __c);  
  2037. float32x4x4_t vld4q_lane_f32 (const float32_t * __a, float32x4x4_t __b, const int __c);  
  2038. uint16x8x4_t vld4q_lane_u16 (const uint16_t * __a, uint16x8x4_t __b, const int __c);  
  2039. uint32x4x4_t vld4q_lane_u32 (const uint32_t * __a, uint32x4x4_t __b, const int __c);  
  2040. poly16x8x4_t vld4q_lane_p16 (const poly16_t * __a, poly16x8x4_t __b, const int __c);  
  2041. /*--12、Load all lanes of 4-element structure with same value from memory: vld4 -> 
  2042. loads 4 elements from memory and returns a quad-vector structure. The first element is  
  2043. copied to all lanes of the first vector. And similarly the second, third, and fourth  
  2044. elements are copied to the second, third, and fourth vectors respectively.--*/  
  2045. int8x8x4_t vld4_dup_s8 (const int8_t * __a);  
  2046. int16x4x4_t vld4_dup_s16 (const int16_t * __a);  
  2047. int32x2x4_t vld4_dup_s32 (const int32_t * __a);  
  2048. float32x2x4_t vld4_dup_f32 (const float32_t * __a);  
  2049. uint8x8x4_t vld4_dup_u8 (const uint8_t * __a);  
  2050. uint16x4x4_t vld4_dup_u16 (const uint16_t * __a);  
  2051. uint32x2x4_t vld4_dup_u32 (const uint32_t * __a);  
  2052. poly8x8x4_t vld4_dup_p8 (const poly8_t * __a);  
  2053. poly16x4x4_t vld4_dup_p16 (const poly16_t * __a);  
  2054. int64x1x4_t vld4_dup_s64 (const int64_t * __a);  
  2055. uint64x1x4_t vld4_dup_u64 (const uint64_t * __a);  
  2056. /*****************************************************Store*****************************/  
  2057. /*--1、Store a single vector into memory: vst1 -> stores a vector into memory.--*/  
  2058. void vst1_s8 (int8_t * __a, int8x8_t __b);  
  2059. void vst1_s16 (int16_t * __a, int16x4_t __b);  
  2060. void vst1_s32 (int32_t * __a, int32x2_t __b);  
  2061. void vst1_s64 (int64_t * __a, int64x1_t __b);  
  2062. void vst1_f32 (float32_t * __a, float32x2_t __b);  
  2063. void vst1_u8 (uint8_t * __a, uint8x8_t __b);  
  2064. void vst1_u16 (uint16_t * __a, uint16x4_t __b);  
  2065. void vst1_u32 (uint32_t * __a, uint32x2_t __b);  
  2066. void vst1_u64 (uint64_t * __a, uint64x1_t __b);  
  2067. void vst1_p8 (poly8_t * __a, poly8x8_t __b);  
  2068. void vst1_p16 (poly16_t * __a, poly16x4_t __b);  
  2069. void vst1q_s8 (int8_t * __a, int8x16_t __b);  
  2070. void vst1q_s16 (int16_t * __a, int16x8_t __b);  
  2071. void vst1q_s32 (int32_t * __a, int32x4_t __b);  
  2072. void vst1q_s64 (int64_t * __a, int64x2_t __b);  
  2073. void vst1q_f32 (float32_t * __a, float32x4_t __b);  
  2074. void vst1q_u8 (uint8_t * __a, uint8x16_t __b);  
  2075. void vst1q_u16 (uint16_t * __a, uint16x8_t __b);  
  2076. void vst1q_u32 (uint32_t * __a, uint32x4_t __b);  
  2077. void vst1q_u64 (uint64_t * __a, uint64x2_t __b);  
  2078. void vst1q_p8 (poly8_t * __a, poly8x16_t __b);  
  2079. void vst1q_p16 (poly16_t * __a, poly16x8_t __b);  
  2080. /*--2、Store a single lane into memory: vst1 ->  
  2081. stores one element of the vector into memory.  
  2082. c is the index in the vector to be stored.--*/  
  2083. void vst1_lane_s8 (int8_t * __a, int8x8_t __b, const int __c);  
  2084. void vst1_lane_s16 (int16_t * __a, int16x4_t __b, const int __c);  
  2085. void vst1_lane_s32 (int32_t * __a, int32x2_t __b, const int __c);  
  2086. void vst1_lane_f32 (float32_t * __a, float32x2_t __b, const int __c);  
  2087. void vst1_lane_u8 (uint8_t * __a, uint8x8_t __b, const int __c);  
  2088. void vst1_lane_u16 (uint16_t * __a, uint16x4_t __b, const int __c);  
  2089. void vst1_lane_u32 (uint32_t * __a, uint32x2_t __b, const int __c);  
  2090. void vst1_lane_p8 (poly8_t * __a, poly8x8_t __b, const int __c);  
  2091. void vst1_lane_p16 (poly16_t * __a, poly16x4_t __b, const int __c);  
  2092. void vst1_lane_s64 (int64_t * __a, int64x1_t __b, const int __c);  
  2093. void vst1_lane_u64 (uint64_t * __a, uint64x1_t __b, const int __c);  
  2094. void vst1q_lane_s8 (int8_t * __a, int8x16_t __b, const int __c);  
  2095. void vst1q_lane_s16 (int16_t * __a, int16x8_t __b, const int __c);  
  2096. void vst1q_lane_s32 (int32_t * __a, int32x4_t __b, const int __c);  
  2097. void vst1q_lane_f32 (float32_t * __a, float32x4_t __b, const int __c);  
  2098. void vst1q_lane_u8 (uint8_t * __a, uint8x16_t __b, const int __c);  
  2099. void vst1q_lane_u16 (uint16_t * __a, uint16x8_t __b, const int __c);  
  2100. void vst1q_lane_u32 (uint32_t * __a, uint32x4_t __b, const int __c);  
  2101. void vst1q_lane_p8 (poly8_t * __a, poly8x16_t __b, const int __c);  
  2102. void vst1q_lane_p16 (poly16_t * __a, poly16x8_t __b, const int __c);  
  2103. void vst1q_lane_s64 (int64_t * __a, int64x2_t __b, const int __c);  
  2104. void vst1q_lane_u64 (uint64_t * __a, uint64x2_t __b, const int __c);  
  2105. /*--3、Store 2 vectors into memory: vst2 ->  
  2106. stores 2 vectors into memory. It interleaves the 2 vectors into memory.--*/  
  2107. void vst2_s8 (int8_t * __a, int8x8x2_t __b);  
  2108. void vst2_s16 (int16_t * __a, int16x4x2_t __b);  
  2109. void vst2_s32 (int32_t * __a, int32x2x2_t __b);  
  2110. void vst2_f32 (float32_t * __a, float32x2x2_t __b);  
  2111. void vst2_u8 (uint8_t * __a, uint8x8x2_t __b);  
  2112. void vst2_u16 (uint16_t * __a, uint16x4x2_t __b);  
  2113. void vst2_u32 (uint32_t * __a, uint32x2x2_t __b);  
  2114. void vst2_p8 (poly8_t * __a, poly8x8x2_t __b);  
  2115. void vst2_p16 (poly16_t * __a, poly16x4x2_t __b);  
  2116. void vst2_s64 (int64_t * __a, int64x1x2_t __b);  
  2117. void vst2_u64 (uint64_t * __a, uint64x1x2_t __b);  
  2118. void vst2q_s8 (int8_t * __a, int8x16x2_t __b);  
  2119. void vst2q_s16 (int16_t * __a, int16x8x2_t __b);  
  2120. void vst2q_s32 (int32_t * __a, int32x4x2_t __b);  
  2121. void vst2q_f32 (float32_t * __a, float32x4x2_t __b);  
  2122. void vst2q_u8 (uint8_t * __a, uint8x16x2_t __b);  
  2123. void vst2q_u16 (uint16_t * __a, uint16x8x2_t __b);  
  2124. void vst2q_u32 (uint32_t * __a, uint32x4x2_t __b);  
  2125. void vst2q_p8 (poly8_t * __a, poly8x16x2_t __b);  
  2126. void vst2q_p16 (poly16_t * __a, poly16x8x2_t __b);  
  2127. /*--4、Store a lane of two elements into memory: vst2 -> 
  2128. stores a lane of two elements from a double-vector structure into memory. 
  2129. The elements to be stored are from the same lane in the vectors and their index is c.--*/  
  2130. void vst2_lane_s8 (int8_t * __a, int8x8x2_t __b, const int __c);  
  2131. void vst2_lane_s16 (int16_t * __a, int16x4x2_t __b, const int __c);  
  2132. void vst2_lane_s32 (int32_t * __a, int32x2x2_t __b, const int __c);  
  2133. void vst2_lane_f32 (float32_t * __a, float32x2x2_t __b, const int __c);  
  2134. void vst2_lane_u8 (uint8_t * __a, uint8x8x2_t __b, const int __c);  
  2135. void vst2_lane_u16 (uint16_t * __a, uint16x4x2_t __b, const int __c);  
  2136. void vst2_lane_u32 (uint32_t * __a, uint32x2x2_t __b, const int __c);  
  2137. void vst2_lane_p8 (poly8_t * __a, poly8x8x2_t __b, const int __c);  
  2138. void vst2_lane_p16 (poly16_t * __a, poly16x4x2_t __b, const int __c);  
  2139. void vst2q_lane_s16 (int16_t * __a, int16x8x2_t __b, const int __c);  
  2140. void vst2q_lane_s32 (int32_t * __a, int32x4x2_t __b, const int __c);  
  2141. void vst2q_lane_f32 (float32_t * __a, float32x4x2_t __b, const int __c);  
  2142. void vst2q_lane_u16 (uint16_t * __a, uint16x8x2_t __b, const int __c);  
  2143. void vst2q_lane_u32 (uint32_t * __a, uint32x4x2_t __b, const int __c);  
  2144. void vst2q_lane_p16 (poly16_t * __a, poly16x8x2_t __b, const int __c);  
  2145. /*--5、Store 3 vectors into memory: vst3 ->  
  2146. stores 3 vectors into memory. It interleaves the 3 vectors into memory.--*/  
  2147. void vst3_s8 (int8_t * __a, int8x8x3_t __b);  
  2148. void vst3_s16 (int16_t * __a, int16x4x3_t __b);  
  2149. void vst3_s32 (int32_t * __a, int32x2x3_t __b);  
  2150. void vst3_f32 (float32_t * __a, float32x2x3_t __b);  
  2151. void  vst3_u8 (uint8_t * __a, uint8x8x3_t __b);  
  2152. void vst3_u16 (uint16_t * __a, uint16x4x3_t __b);  
  2153. void vst3_u32 (uint32_t * __a, uint32x2x3_t __b);  
  2154. void vst3_p8 (poly8_t * __a, poly8x8x3_t __b);  
  2155. void vst3_p16 (poly16_t * __a, poly16x4x3_t __b);  
  2156. void vst3_s64 (int64_t * __a, int64x1x3_t __b);  
  2157. void vst3_u64 (uint64_t * __a, uint64x1x3_t __b);  
  2158. void vst3q_s8 (int8_t * __a, int8x16x3_t __b);  
  2159. void vst3q_s16 (int16_t * __a, int16x8x3_t __b);  
  2160. void vst3q_s32 (int32_t * __a, int32x4x3_t __b);  
  2161. void vst3q_f32 (float32_t * __a, float32x4x3_t __b);  
  2162. void vst3q_u8 (uint8_t * __a, uint8x16x3_t __b);  
  2163. void vst3q_u16 (uint16_t * __a, uint16x8x3_t __b);  
  2164. void vst3q_u32 (uint32_t * __a, uint32x4x3_t __b);  
  2165. void vst3q_p8 (poly8_t * __a, poly8x16x3_t __b);  
  2166. void vst3q_p16 (poly16_t * __a, poly16x8x3_t __b);  
  2167. /*--6、Store a lane of three elements into memory: vst3 -> 
  2168. stores a lane of three elements from a triple-vector structure into memory.  
  2169. The elements to be stored are from the same lane in the vectors and their index is c.--*/  
  2170. void vst3_lane_s8 (int8_t * __a, int8x8x3_t __b, const int __c);  
  2171. void vst3_lane_s16 (int16_t * __a, int16x4x3_t __b, const int __c);  
  2172. void vst3_lane_s32 (int32_t * __a, int32x2x3_t __b, const int __c);  
  2173. void vst3_lane_f32 (float32_t * __a, float32x2x3_t __b, const int __c);  
  2174. void vst3_lane_u8 (uint8_t * __a, uint8x8x3_t __b, const int __c);  
  2175. void vst3_lane_u16 (uint16_t * __a, uint16x4x3_t __b, const int __c);  
  2176. void vst3_lane_u32 (uint32_t * __a, uint32x2x3_t __b, const int __c);  
  2177. void vst3_lane_p8 (poly8_t * __a, poly8x8x3_t __b, const int __c);  
  2178. void vst3_lane_p16 (poly16_t * __a, poly16x4x3_t __b, const int __c);  
  2179. void vst3q_lane_s16 (int16_t * __a, int16x8x3_t __b, const int __c);  
  2180. void vst3q_lane_s32 (int32_t * __a, int32x4x3_t __b, const int __c);  
  2181. void vst3q_lane_f32 (float32_t * __a, float32x4x3_t __b, const int __c);  
  2182. void vst3q_lane_u16 (uint16_t * __a, uint16x8x3_t __b, const int __c);  
  2183. void vst3q_lane_u32 (uint32_t * __a, uint32x4x3_t __b, const int __c);  
  2184. void vst3q_lane_p16 (poly16_t * __a, poly16x8x3_t __b, const int __c);  
  2185. /*--7、Store 4 vectors into memory: vst4 ->  
  2186. stores 4 vectors into memory. It interleaves the 4 vectors into memory.--*/  
  2187. void vst4_s8 (int8_t * __a, int8x8x4_t __b);  
  2188. void vst4_s16 (int16_t * __a, int16x4x4_t __b);  
  2189. void vst4_s32 (int32_t * __a, int32x2x4_t __b);  
  2190. void vst4_f32 (float32_t * __a, float32x2x4_t __b);  
  2191. void vst4_u8 (uint8_t * __a, uint8x8x4_t __b);  
  2192. void vst4_u16 (uint16_t * __a, uint16x4x4_t __b);  
  2193. void vst4_u32 (uint32_t * __a, uint32x2x4_t __b);  
  2194. void vst4_p8 (poly8_t * __a, poly8x8x4_t __b);  
  2195. void vst4_p16 (poly16_t * __a, poly16x4x4_t __b);  
  2196. void vst4_s64 (int64_t * __a, int64x1x4_t __b);  
  2197. void vst4_u64 (uint64_t * __a, uint64x1x4_t __b);  
  2198. void vst4q_s8 (int8_t * __a, int8x16x4_t __b);  
  2199. void vst4q_s16 (int16_t * __a, int16x8x4_t __b);  
  2200. void vst4q_s32 (int32_t * __a, int32x4x4_t __b);  
  2201. void  vst4q_f32 (float32_t * __a, float32x4x4_t __b);  
  2202. void vst4q_u8 (uint8_t * __a, uint8x16x4_t __b);  
  2203. void vst4q_u16 (uint16_t * __a, uint16x8x4_t __b);  
  2204. void vst4q_u32 (uint32_t * __a, uint32x4x4_t __b);  
  2205. void vst4q_p8 (poly8_t * __a, poly8x16x4_t __b);  
  2206. void vst4q_p16 (poly16_t * __a, poly16x8x4_t __b);  
  2207. /*--8、Store a lane of four elements into memory: vst4 -> 
  2208. stores a lane of four elements from a quad-vector structure into memory. 
  2209. The elements to be stored are from the same lane in the vectors and their index is c.--*/  
  2210. void vst4_lane_s8 (int8_t * __a, int8x8x4_t __b, const int __c);  
  2211. void vst4_lane_s16 (int16_t * __a, int16x4x4_t __b, const int __c);  
  2212. void vst4_lane_s32 (int32_t * __a, int32x2x4_t __b, const int __c);  
  2213. void vst4_lane_f32 (float32_t * __a, float32x2x4_t __b, const int __c);  
  2214. void vst4_lane_u8 (uint8_t * __a, uint8x8x4_t __b, const int __c);  
  2215. void vst4_lane_u16 (uint16_t * __a, uint16x4x4_t __b, const int __c);  
  2216. void vst4_lane_u32 (uint32_t * __a, uint32x2x4_t __b, const int __c);  
  2217. void vst4_lane_p8 (poly8_t * __a, poly8x8x4_t __b, const int __c);  
  2218. void vst4_lane_p16 (poly16_t * __a, poly16x4x4_t __b, const int __c);  
  2219. void vst4q_lane_s16 (int16_t * __a, int16x8x4_t __b, const int __c);  
  2220. void vst4q_lane_s32 (int32_t * __a, int32x4x4_t __b, const int __c);  
  2221. void vst4q_lane_f32 (float32_t * __a, float32x4x4_t __b, const int __c);  
  2222. void vst4q_lane_u16 (uint16_t * __a, uint16x8x4_t __b, const int __c);  
  2223. void vst4q_lane_u32 (uint32_t * __a, uint32x4x4_t __b, const int __c);  
  2224. void vst4q_lane_p16 (poly16_t * __a, poly16x8x4_t __b, const int __c);  
  2225. /*********************************Reinterpret casts(type conversion)********************/  
  2226. /*--convert between types: vreinterpret -> treats a vector as having a different  
  2227. datatype, without changing its value.--*/  
  2228. poly8x8_t vreinterpret_p8_s8 (int8x8_t __a);  
  2229. poly8x8_t vreinterpret_p8_s16 (int16x4_t __a);  
  2230. poly8x8_t vreinterpret_p8_s32 (int32x2_t __a);  
  2231. poly8x8_t vreinterpret_p8_s64 (int64x1_t __a);  
  2232. poly8x8_t vreinterpret_p8_f32 (float32x2_t __a);  
  2233. poly8x8_t vreinterpret_p8_u8 (uint8x8_t __a);  
  2234. poly8x8_t vreinterpret_p8_u16 (uint16x4_t __a);  
  2235. poly8x8_t vreinterpret_p8_u32 (uint32x2_t __a);  
  2236. poly8x8_t vreinterpret_p8_u64 (uint64x1_t __a);  
  2237. poly8x8_t vreinterpret_p8_p16 (poly16x4_t __a);  
  2238. poly8x16_t vreinterpretq_p8_s8 (int8x16_t __a);  
  2239. poly8x16_t vreinterpretq_p8_s16 (int16x8_t __a);  
  2240. poly8x16_t vreinterpretq_p8_s32 (int32x4_t __a);  
  2241. poly8x16_t vreinterpretq_p8_s64 (int64x2_t __a);  
  2242. poly8x16_t vreinterpretq_p8_f32 (float32x4_t __a);  
  2243. poly8x16_t vreinterpretq_p8_u8 (uint8x16_t __a);  
  2244. poly8x16_t vreinterpretq_p8_u16 (uint16x8_t __a);  
  2245. poly8x16_t vreinterpretq_p8_u32 (uint32x4_t __a);  
  2246. poly8x16_t vreinterpretq_p8_u64 (uint64x2_t __a);  
  2247. poly8x16_t vreinterpretq_p8_p16 (poly16x8_t __a);  
  2248. poly16x4_t vreinterpret_p16_s8 (int8x8_t __a);  
  2249. poly16x4_t vreinterpret_p16_s16 (int16x4_t __a);  
  2250. poly16x4_t vreinterpret_p16_s32 (int32x2_t __a);  
  2251. poly16x4_t vreinterpret_p16_s64 (int64x1_t __a);  
  2252. poly16x4_t vreinterpret_p16_f32 (float32x2_t __a);  
  2253. poly16x4_t vreinterpret_p16_u8 (uint8x8_t __a);  
  2254. poly16x4_t vreinterpret_p16_u16 (uint16x4_t __a);  
  2255. poly16x4_t vreinterpret_p16_u32 (uint32x2_t __a);  
  2256. poly16x4_t vreinterpret_p16_u64 (uint64x1_t __a);  
  2257. poly16x4_t vreinterpret_p16_p8 (poly8x8_t __a);  
  2258. poly16x8_t vreinterpretq_p16_s8 (int8x16_t __a);  
  2259. poly16x8_t vreinterpretq_p16_s16 (int16x8_t __a);  
  2260. poly16x8_t vreinterpretq_p16_s32 (int32x4_t __a);  
  2261. poly16x8_t vreinterpretq_p16_s64 (int64x2_t __a);  
  2262. poly16x8_t vreinterpretq_p16_f32 (float32x4_t __a);  
  2263. poly16x8_t vreinterpretq_p16_u8 (uint8x16_t __a);  
  2264. poly16x8_t vreinterpretq_p16_u16 (uint16x8_t __a);  
  2265. poly16x8_t vreinterpretq_p16_u32 (uint32x4_t __a);  
  2266. poly16x8_t vreinterpretq_p16_u64 (uint64x2_t __a);  
  2267. poly16x8_t vreinterpretq_p16_p8 (poly8x16_t __a);  
  2268. float32x2_t vreinterpret_f32_s8 (int8x8_t __a);  
  2269. float32x2_t vreinterpret_f32_s16 (int16x4_t __a);  
  2270. float32x2_t vreinterpret_f32_s32 (int32x2_t __a);  
  2271. float32x2_t vreinterpret_f32_s64 (int64x1_t __a);  
  2272. float32x2_t vreinterpret_f32_u8 (uint8x8_t __a);  
  2273. float32x2_t vreinterpret_f32_u16 (uint16x4_t __a);  
  2274. float32x2_t vreinterpret_f32_u32 (uint32x2_t __a);  
  2275. float32x2_t vreinterpret_f32_u64 (uint64x1_t __a);  
  2276. float32x2_t vreinterpret_f32_p8 (poly8x8_t __a);  
  2277. float32x2_t vreinterpret_f32_p16 (poly16x4_t __a);  
  2278. float32x4_t vreinterpretq_f32_s8 (int8x16_t __a);  
  2279. float32x4_t vreinterpretq_f32_s16 (int16x8_t __a);  
  2280. float32x4_t vreinterpretq_f32_s32 (int32x4_t __a);  
  2281. float32x4_t vreinterpretq_f32_s64 (int64x2_t __a);  
  2282. float32x4_t vreinterpretq_f32_u8 (uint8x16_t __a);  
  2283. float32x4_t vreinterpretq_f32_u16 (uint16x8_t __a);  
  2284. float32x4_t vreinterpretq_f32_u32 (uint32x4_t __a);  
  2285. float32x4_t vreinterpretq_f32_u64 (uint64x2_t __a);  
  2286. float32x4_t vreinterpretq_f32_p8 (poly8x16_t __a);  
  2287. float32x4_t vreinterpretq_f32_p16 (poly16x8_t __a);  
  2288. int64x1_t vreinterpret_s64_s8 (int8x8_t __a);  
  2289. int64x1_t vreinterpret_s64_s16 (int16x4_t __a);  
  2290. int64x1_t vreinterpret_s64_s32 (int32x2_t __a);  
  2291. int64x1_t vreinterpret_s64_f32 (float32x2_t __a);  
  2292. int64x1_t vreinterpret_s64_u8 (uint8x8_t __a);  
  2293. int64x1_t vreinterpret_s64_u16 (uint16x4_t __a);  
  2294. int64x1_t vreinterpret_s64_u32 (uint32x2_t __a);  
  2295. int64x1_t vreinterpret_s64_u64 (uint64x1_t __a);  
  2296. int64x1_t vreinterpret_s64_p8 (poly8x8_t __a);  
  2297. int64x1_t vreinterpret_s64_p16 (poly16x4_t __a);  
  2298. int64x2_t vreinterpretq_s64_s8 (int8x16_t __a);  
  2299. int64x2_t vreinterpretq_s64_s16 (int16x8_t __a);  
  2300. int64x2_t vreinterpretq_s64_s32 (int32x4_t __a);  
  2301. int64x2_t vreinterpretq_s64_f32 (float32x4_t __a);  
  2302. int64x2_t vreinterpretq_s64_u8 (uint8x16_t __a);  
  2303. int64x2_t vreinterpretq_s64_u16 (uint16x8_t __a);  
  2304. int64x2_t vreinterpretq_s64_u32 (uint32x4_t __a);  
  2305. int64x2_t vreinterpretq_s64_u64 (uint64x2_t __a);  
  2306. int64x2_t vreinterpretq_s64_p8 (poly8x16_t __a);  
  2307. int64x2_t vreinterpretq_s64_p16 (poly16x8_t __a);  
  2308. uint64x1_t vreinterpret_u64_s8 (int8x8_t __a);  
  2309. uint64x1_t vreinterpret_u64_s16 (int16x4_t __a);  
  2310. uint64x1_t vreinterpret_u64_s32 (int32x2_t __a);  
  2311. uint64x1_t vreinterpret_u64_s64 (int64x1_t __a);  
  2312. uint64x1_t vreinterpret_u64_f32 (float32x2_t __a);  
  2313. uint64x1_t vreinterpret_u64_u8 (uint8x8_t __a);  
  2314. uint64x1_t vreinterpret_u64_u16 (uint16x4_t __a);  
  2315. uint64x1_t vreinterpret_u64_u32 (uint32x2_t __a);  
  2316. uint64x1_t vreinterpret_u64_p8 (poly8x8_t __a);  
  2317. uint64x1_t vreinterpret_u64_p16 (poly16x4_t __a);  
  2318. uint64x2_t vreinterpretq_u64_s8 (int8x16_t __a);  
  2319. uint64x2_t vreinterpretq_u64_s16 (int16x8_t __a);  
  2320. uint64x2_t vreinterpretq_u64_s32 (int32x4_t __a);  
  2321. uint64x2_t vreinterpretq_u64_s64 (int64x2_t __a);  
  2322. uint64x2_t vreinterpretq_u64_f32 (float32x4_t __a);  
  2323. uint64x2_t vreinterpretq_u64_u8 (uint8x16_t __a);  
  2324. uint64x2_t vreinterpretq_u64_u16 (uint16x8_t __a);  
  2325. uint64x2_t vreinterpretq_u64_u32 (uint32x4_t __a);  
  2326. uint64x2_t vreinterpretq_u64_p8 (poly8x16_t __a);  
  2327. uint64x2_t vreinterpretq_u64_p16 (poly16x8_t __a);  
  2328. int8x8_t vreinterpret_s8_s16 (int16x4_t __a);  
  2329. int8x8_t vreinterpret_s8_s32 (int32x2_t __a);  
  2330. int8x8_t vreinterpret_s8_s64 (int64x1_t __a);  
  2331. int8x8_t vreinterpret_s8_f32 (float32x2_t __a);  
  2332. int8x8_t vreinterpret_s8_u8 (uint8x8_t __a);  
  2333. int8x8_t vreinterpret_s8_u16 (uint16x4_t __a);  
  2334. int8x8_t vreinterpret_s8_u32 (uint32x2_t __a);  
  2335. int8x8_t vreinterpret_s8_u64 (uint64x1_t __a);  
  2336. int8x8_t vreinterpret_s8_p8 (poly8x8_t __a);  
  2337. int8x8_t vreinterpret_s8_p16 (poly16x4_t __a);  
  2338. int8x16_t vreinterpretq_s8_s16 (int16x8_t __a);  
  2339. int8x16_t vreinterpretq_s8_s32 (int32x4_t __a);  
  2340. int8x16_t vreinterpretq_s8_s64 (int64x2_t __a);  
  2341. int8x16_t vreinterpretq_s8_f32 (float32x4_t __a);  
  2342. int8x16_t vreinterpretq_s8_u8 (uint8x16_t __a);  
  2343. int8x16_t vreinterpretq_s8_u16 (uint16x8_t __a);  
  2344. int8x16_t vreinterpretq_s8_u32 (uint32x4_t __a);  
  2345. int8x16_t vreinterpretq_s8_u64 (uint64x2_t __a);  
  2346. int8x16_t vreinterpretq_s8_p8 (poly8x16_t __a);  
  2347. int8x16_t vreinterpretq_s8_p16 (poly16x8_t __a);  
  2348. int16x4_t vreinterpret_s16_s8 (int8x8_t __a);  
  2349. int16x4_t vreinterpret_s16_s32 (int32x2_t __a);  
  2350. int16x4_t vreinterpret_s16_s64 (int64x1_t __a);  
  2351. int16x4_t vreinterpret_s16_f32 (float32x2_t __a);  
  2352. int16x4_t vreinterpret_s16_u8 (uint8x8_t __a);  
  2353. int16x4_t vreinterpret_s16_u16 (uint16x4_t __a);  
  2354. int16x4_t vreinterpret_s16_u32 (uint32x2_t __a);  
  2355. int16x4_t vreinterpret_s16_u64 (uint64x1_t __a);  
  2356. int16x4_t vreinterpret_s16_p8 (poly8x8_t __a);  
  2357. int16x4_t vreinterpret_s16_p16 (poly16x4_t __a);  
  2358. int16x8_t vreinterpretq_s16_s8 (int8x16_t __a);  
  2359. int16x8_t vreinterpretq_s16_s32 (int32x4_t __a);  
  2360. int16x8_t vreinterpretq_s16_s64 (int64x2_t __a);  
  2361. int16x8_t vreinterpretq_s16_f32 (float32x4_t __a);  
  2362. int16x8_t vreinterpretq_s16_u8 (uint8x16_t __a);  
  2363. int16x8_t vreinterpretq_s16_u16 (uint16x8_t __a);  
  2364. int16x8_t vreinterpretq_s16_u32 (uint32x4_t __a);  
  2365. int16x8_t vreinterpretq_s16_u64 (uint64x2_t __a);  
  2366. int16x8_t vreinterpretq_s16_p8 (poly8x16_t __a);  
  2367. int16x8_t vreinterpretq_s16_p16 (poly16x8_t __a);  
  2368. int32x2_t vreinterpret_s32_s8 (int8x8_t __a);  
  2369. int32x2_t vreinterpret_s32_s16 (int16x4_t __a);  
  2370. int32x2_t vreinterpret_s32_s64 (int64x1_t __a);  
  2371. int32x2_t vreinterpret_s32_f32 (float32x2_t __a);  
  2372. int32x2_t vreinterpret_s32_u8 (uint8x8_t __a);  
  2373. int32x2_t vreinterpret_s32_u16 (uint16x4_t __a);  
  2374. int32x2_t vreinterpret_s32_u32 (uint32x2_t __a);  
  2375. int32x2_t vreinterpret_s32_u64 (uint64x1_t __a);  
  2376. int32x2_t vreinterpret_s32_p8 (poly8x8_t __a);  
  2377. int32x2_t vreinterpret_s32_p16 (poly16x4_t __a);  
  2378. int32x4_t vreinterpretq_s32_s8 (int8x16_t __a);  
  2379. int32x4_t vreinterpretq_s32_s16 (int16x8_t __a);  
  2380. int32x4_t vreinterpretq_s32_s64 (int64x2_t __a);  
  2381. int32x4_t vreinterpretq_s32_f32 (float32x4_t __a);  
  2382. int32x4_t vreinterpretq_s32_u8 (uint8x16_t __a);  
  2383. int32x4_t vreinterpretq_s32_u16 (uint16x8_t __a);  
  2384. int32x4_t vreinterpretq_s32_u32 (uint32x4_t __a);  
  2385. int32x4_t vreinterpretq_s32_u64 (uint64x2_t __a);  
  2386. int32x4_t vreinterpretq_s32_p8 (poly8x16_t __a);  
  2387. int32x4_t vreinterpretq_s32_p16 (poly16x8_t __a);  
  2388. uint8x8_t vreinterpret_u8_s8 (int8x8_t __a);  
  2389. uint8x8_t vreinterpret_u8_s16 (int16x4_t __a);  
  2390. uint8x8_t vreinterpret_u8_s32 (int32x2_t __a);  
  2391. uint8x8_t vreinterpret_u8_s64 (int64x1_t __a);  
  2392. uint8x8_t vreinterpret_u8_f32 (float32x2_t __a);  
  2393. uint8x8_t vreinterpret_u8_u16 (uint16x4_t __a);  
  2394. uint8x8_t vreinterpret_u8_u32 (uint32x2_t __a);  
  2395. uint8x8_t vreinterpret_u8_u64 (uint64x1_t __a);  
  2396. uint8x8_t vreinterpret_u8_p8 (poly8x8_t __a);  
  2397. uint8x8_t vreinterpret_u8_p16 (poly16x4_t __a);  
  2398. uint8x16_t vreinterpretq_u8_s8 (int8x16_t __a);  
  2399. uint8x16_t vreinterpretq_u8_s16 (int16x8_t __a);  
  2400. uint8x16_t vreinterpretq_u8_s32 (int32x4_t __a);  
  2401. uint8x16_t vreinterpretq_u8_s64 (int64x2_t __a);  
  2402. uint8x16_t vreinterpretq_u8_f32 (float32x4_t __a);  
  2403. uint8x16_t vreinterpretq_u8_u16 (uint16x8_t __a);  
  2404. uint8x16_t vreinterpretq_u8_u32 (uint32x4_t __a);  
  2405. uint8x16_t vreinterpretq_u8_u64 (uint64x2_t __a);  
  2406. uint8x16_t vreinterpretq_u8_p8 (poly8x16_t __a);  
  2407. uint8x16_t vreinterpretq_u8_p16 (poly16x8_t __a);  
  2408. uint16x4_t vreinterpret_u16_s8 (int8x8_t __a);  
  2409. uint16x4_t vreinterpret_u16_s16 (int16x4_t __a);  
  2410. uint16x4_t vreinterpret_u16_s32 (int32x2_t __a);  
  2411. uint16x4_t vreinterpret_u16_s64 (int64x1_t __a);  
  2412. uint16x4_t vreinterpret_u16_f32 (float32x2_t __a);  
  2413. uint16x4_t vreinterpret_u16_u8 (uint8x8_t __a);  
  2414. uint16x4_t vreinterpret_u16_u32 (uint32x2_t __a);  
  2415. uint16x4_t vreinterpret_u16_u64 (uint64x1_t __a);  
  2416. uint16x4_t vreinterpret_u16_p8 (poly8x8_t __a);  
  2417. uint16x4_t vreinterpret_u16_p16 (poly16x4_t __a);  
  2418. uint16x8_t vreinterpretq_u16_s8 (int8x16_t __a);  
  2419. uint16x8_t vreinterpretq_u16_s16 (int16x8_t __a);  
  2420. uint16x8_t vreinterpretq_u16_s32 (int32x4_t __a);  
  2421. uint16x8_t vreinterpretq_u16_s64 (int64x2_t __a);  
  2422. uint16x8_t vreinterpretq_u16_f32 (float32x4_t __a);  
  2423. uint16x8_t vreinterpretq_u16_u8 (uint8x16_t __a);  
  2424. uint16x8_t vreinterpretq_u16_u32 (uint32x4_t __a);  
  2425. uint16x8_t vreinterpretq_u16_u64 (uint64x2_t __a);  
  2426. uint16x8_t vreinterpretq_u16_p8 (poly8x16_t __a);  
  2427. uint16x8_t vreinterpretq_u16_p16 (poly16x8_t __a);  
  2428. uint32x2_t vreinterpret_u32_s8 (int8x8_t __a);  
  2429. uint32x2_t vreinterpret_u32_s16 (int16x4_t __a);  
  2430. uint32x2_t vreinterpret_u32_s32 (int32x2_t __a);  
  2431. uint32x2_t vreinterpret_u32_s64 (int64x1_t __a);  
  2432. uint32x2_t vreinterpret_u32_f32 (float32x2_t __a);  
  2433. uint32x2_t vreinterpret_u32_u8 (uint8x8_t __a);  
  2434. uint32x2_t vreinterpret_u32_u16 (uint16x4_t __a);  
  2435. uint32x2_t vreinterpret_u32_u64 (uint64x1_t __a);  
  2436. uint32x2_t vreinterpret_u32_p8 (poly8x8_t __a);  
  2437. uint32x2_t vreinterpret_u32_p16 (poly16x4_t __a);  
  2438. uint32x4_t vreinterpretq_u32_s8 (int8x16_t __a);  
  2439. uint32x4_t vreinterpretq_u32_s16 (int16x8_t __a);  
  2440. uint32x4_t vreinterpretq_u32_s32 (int32x4_t __a);  
  2441. uint32x4_t vreinterpretq_u32_s64 (int64x2_t __a);  
  2442. uint32x4_t vreinterpretq_u32_f32 (float32x4_t __a);  
  2443. uint32x4_t vreinterpretq_u32_u8 (uint8x16_t __a);  
  2444. uint32x4_t vreinterpretq_u32_u16 (uint16x8_t __a);  
  2445. uint32x4_t vreinterpretq_u32_u64 (uint64x2_t __a);  
  2446. uint32x4_t vreinterpretq_u32_p8 (poly8x16_t __a);  
  2447. uint32x4_t vreinterpretq_u32_p16 (poly16x8_t __a); 
0 0
原创粉丝点击