/cmsis-3.4.0/CMSIS/DSP/Source/SupportFunctions/ |
D | arm_q7_to_q31.c | 120 *pDst++ = (__ROR(in, 8)) & 0xFF000000; in arm_q7_to_q31() 121 *pDst++ = (__ROR(in, 16)) & 0xFF000000; in arm_q7_to_q31() 122 *pDst++ = (__ROR(in, 24)) & 0xFF000000; in arm_q7_to_q31() 128 *pDst++ = (__ROR(in, 24)) & 0xFF000000; in arm_q7_to_q31() 129 *pDst++ = (__ROR(in, 16)) & 0xFF000000; in arm_q7_to_q31() 130 *pDst++ = (__ROR(in, 8)) & 0xFF000000; in arm_q7_to_q31()
|
D | arm_q7_to_q15.c | 127 in1 = __SXTB16(__ROR(in, 8)); in arm_q7_to_q15()
|
/cmsis-3.4.0/CMSIS/DSP/Source/MatrixFunctions/ |
D | arm_mat_vec_mult_q7.c | 329 vecData2 = __SXTB16(__ROR(vecData, 8)); in arm_mat_vec_mult_q7() 333 matData2 = __SXTB16(__ROR(matData, 8)); in arm_mat_vec_mult_q7() 338 matData2 = __SXTB16(__ROR(matData, 8)); in arm_mat_vec_mult_q7() 343 matData2 = __SXTB16(__ROR(matData, 8)); in arm_mat_vec_mult_q7() 348 matData2 = __SXTB16(__ROR(matData, 8)); in arm_mat_vec_mult_q7() 395 vecData2 = __SXTB16(__ROR(vecData, 8)); in arm_mat_vec_mult_q7() 398 matData2 = __SXTB16(__ROR(matData, 8)); in arm_mat_vec_mult_q7()
|
/cmsis-3.4.0/CMSIS/DSP/Source/BasicMathFunctions/ |
D | arm_dot_prod_q7.c | 137 inA1 = __SXTB16(__ROR(input1, 8)); in arm_dot_prod_q7() 141 inB1 = __SXTB16(__ROR(input2, 8)); in arm_dot_prod_q7()
|
/cmsis-3.4.0/CMSIS/NN/Include/ |
D | arm_nnsupportfunctions.h | 574 q31_t inAbuf1 = __SXTB16(__ROR((uint32_t)inA, 8)); in read_and_pad() 596 *out2 = __SXTB16(__ROR((uint32_t)inA, 8)); in read_and_pad_reordered() 599 *out1 = __SXTB16(__ROR((uint32_t)inA, 8)); in read_and_pad_reordered() 615 *out2 = __SXTB16(__ROR((uint32_t)inA, 8)); in read_and_pad_reordered_with_offset() 618 *out1 = __SXTB16(__ROR((uint32_t)inA, 8)); in read_and_pad_reordered_with_offset()
|
/cmsis-3.4.0/CMSIS/NN/Source/ActivationFunctions/ |
D | arm_relu_q7.c | 72 buf = (int32_t)__ROR((uint32_t)in & 0x80808080, 7); in arm_relu_q7()
|
/cmsis-3.4.0/CMSIS/NN/Source/NNSupportFunctions/ |
D | arm_q7_to_q15_with_offset.c | 83 in_q15x2_1 = __SXTAB16(offset_q15x2, __ROR(in_q7x4, 8)); in arm_q7_to_q15_with_offset()
|
D | arm_nn_vec_mat_mult_t_svdf_s8.c | 229 int32_t vec_1 = __SXTAB16(lhs_offset_s16x2, __ROR((uint32_t)vec_0, 8)); in arm_nn_vec_mat_mult_t_svdf_s8() 232 int32_t ker_1 = __SXTAB16(rhs_offset_s16x2, __ROR((uint32_t)ker_0, 8)); in arm_nn_vec_mat_mult_t_svdf_s8()
|
/cmsis-3.4.0/CMSIS/Core/Include/ |
D | cmsis_armcc.h | 238 #define __ROR __ror macro 880 #define __SXTB16_RORn(ARG1, ARG2) __SXTB16(__ROR(ARG1, ARG2)) 882 #define __SXTAB16_RORn(ARG1, ARG2, ARG3) __SXTAB16(ARG1, __ROR(ARG2, ARG3))
|
D | cmsis_armclang.h | 241 #define __REV16(value) __ROR(__REV(value), 16) 260 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function 1487 #define __SXTB16_RORn(ARG1, ARG2) __SXTB16(__ROR(ARG1, ARG2)) 1489 #define __SXTAB16_RORn(ARG1, ARG2, ARG3) __SXTAB16(ARG1, __ROR(ARG2, ARG3))
|
D | cmsis_iccarm.h | 441 #define __ROR __iar_builtin_ROR macro 648 __IAR_FT uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function 998 #define __SXTB16_RORn(ARG1, ARG2) __SXTB16(__ROR(ARG1, ARG2)) 1000 #define __SXTAB16_RORn(ARG1, ARG2, ARG3) __SXTAB16(ARG1, __ROR(ARG2, ARG3))
|
D | cmsis_armclang_ltm.h | 239 #define __REV16(value) __ROR(__REV(value), 16) 258 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function 1912 #define __SXTB16_RORn(ARG1, ARG2) __SXTB16(__ROR(ARG1, ARG2)) 1914 #define __SXTAB16_RORn(ARG1, ARG2, ARG3) __SXTAB16(ARG1, __ROR(ARG2, ARG3))
|
D | cmsis_gcc.h | 346 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function 1995 result = __SXTB16(__ROR(op1, rotate)) ; in __SXTB16_RORn() 2014 result = __SXTAB16(op1, __ROR(op2, rotate)); in __SXTAB16_RORn()
|
/cmsis-3.4.0/CMSIS/DSP/Source/StatisticsFunctions/ |
D | arm_power_q7.c | 127 in1 = __SXTB16(__ROR(in32, 8)); in arm_power_q7()
|
/cmsis-3.4.0/CMSIS/Core_A/Include/ |
D | cmsis_armclang.h | 155 #define __REV16(value) __ROR(__REV(value), 16) 174 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function
|
D | cmsis_iccarm.h | 300 #define __ROR __iar_builtin_ROR macro 430 __IAR_FT uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function
|
D | cmsis_armcc.h | 171 #define __ROR __ror macro
|
D | cmsis_gcc.h | 435 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function
|
/cmsis-3.4.0/CMSIS/NN/Source/ConvolutionFunctions/ |
D | arm_depthwise_conv_s8_opt.c | 298 ip_b1 = __SXTB16(__ROR(ip_b1, 8)); in arm_depthwise_conv_s8_opt() 301 ip_a1 = __SXTB16(__ROR(ip_a1, 8)); in arm_depthwise_conv_s8_opt()
|
/cmsis-3.4.0/CMSIS/DSP/Include/dsp/ |
D | none.h | 120 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function
|
/cmsis-3.4.0/CMSIS/Core_R/Include/ |
D | cmsis_gcc.h | 434 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() function
|