Lines Matching refs:blkCnt
56 uint32_t blkCnt; /* loop counters */ in arm_mean_f32() local
62 blkCnt = blockSize >> 2U; in arm_mean_f32()
63 while (blkCnt > 0U) in arm_mean_f32()
68 blkCnt --; in arm_mean_f32()
75 blkCnt = blockSize & 0x3; in arm_mean_f32()
77 while (blkCnt > 0U) in arm_mean_f32()
83 blkCnt--; in arm_mean_f32()
101 uint32_t blkCnt; /* Loop counter */ in arm_mean_f32() local
105 blkCnt = blockSize >> 2U; in arm_mean_f32()
109 while (blkCnt > 0U) in arm_mean_f32()
117 blkCnt--; in arm_mean_f32()
125 blkCnt = blockSize & 3; in arm_mean_f32()
127 while (blkCnt > 0U) in arm_mean_f32()
133 blkCnt--; in arm_mean_f32()
146 uint32_t blkCnt; /* Loop counter */ in arm_mean_f32() local
152 blkCnt = blockSize >> 2U; in arm_mean_f32()
154 while (blkCnt > 0U) in arm_mean_f32()
166 blkCnt--; in arm_mean_f32()
170 blkCnt = blockSize % 0x4U; in arm_mean_f32()
175 blkCnt = blockSize; in arm_mean_f32()
179 while (blkCnt > 0U) in arm_mean_f32()
185 blkCnt--; in arm_mean_f32()