CMSIS DSP library

Dependents:   performance_timer Surfboard_ gps2rtty Capstone ... more

Legacy Warning

This is an mbed 2 library. To learn more about mbed OS 5, visit the docs.

Revision:
2:da51fb522205
Parent:
1:fdd22bb7aa52
Child:
3:7a284390b0ce
--- a/cmsis_dsp/FilteringFunctions/arm_correlate_q15.c	Wed Nov 28 12:30:09 2012 +0000
+++ b/cmsis_dsp/FilteringFunctions/arm_correlate_q15.c	Thu May 30 17:10:11 2013 +0100
@@ -2,12 +2,12 @@
 * Copyright (C) 2010 ARM Limited. All rights reserved.   
 *   
 * $Date:        15. February 2012  
-* $Revision:     V1.1.0  
+* $Revision: 	V1.1.0  
 *   
-* Project:         CMSIS DSP Library   
-* Title:        arm_correlate_q15.c   
+* Project: 	    CMSIS DSP Library   
+* Title:		arm_correlate_q15.c   
 *   
-* Description:    Correlation of Q15 sequences. 
+* Description:	Correlation of Q15 sequences. 
 *   
 * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0
 *  
@@ -288,7 +288,7 @@
       x0 = *__SIMD32(px);
       /* read x[1], x[2] samples */
       x1 = _SIMD32_OFFSET(px + 1);
-      px += 2u;
+	  px += 2u;
 
       /* Apply loop unrolling and compute 4 MACs simultaneously. */
       k = srcBLen >> 2u;
@@ -334,7 +334,7 @@
         /* Read x[5], x[6] */
         x1 = _SIMD32_OFFSET(px + 3);
 
-        px += 4u;
+		px += 4u;
 
         /* acc2 +=  x[4] * y[2] + x[5] * y[3] */
         acc2 = __SMLALD(x0, c0, acc2);
@@ -363,7 +363,7 @@
 #endif /*      #ifdef  ARM_MATH_BIG_ENDIAN     */
         /* Read x[7] */
         x3 = *__SIMD32(px);
-        px++;
+		px++;
 
         /* Perform the multiply-accumulates */
         acc0 = __SMLALD(x0, c0, acc0);
@@ -382,7 +382,7 @@
 
         /* Read x[9] */
         x2 = _SIMD32_OFFSET(px + 1);
-        px += 2u;
+		px += 2u;
 
         /* Perform the multiply-accumulates */
         acc0 = __SMLALD(x0, c0, acc0);
@@ -420,7 +420,7 @@
 #endif /*      #ifdef  ARM_MATH_BIG_ENDIAN     */
         /* Read x[10] */
         x3 = _SIMD32_OFFSET(px + 2);
-        px += 3u;
+		px += 3u;
 
         /* Perform the multiply-accumulates */
         acc0 = __SMLALDX(x1, c0, acc0);