Lines Matching refs:loopPtr
2106 unsigned int *loopPtr; in radix2Ifft() local
2134 loopPtr = (unsigned int *)pBfr; in radix2Ifft()
2142 loadTemp = loopPtr[0]; in radix2Ifft()
2144 loadTemp = loopPtr[loop2]; in radix2Ifft()
2166 *loopPtr = storeTemp; loopPtr+=loop2; in radix2Ifft()
2170 *loopPtr = storeTemp; loopPtr+=loop2; in radix2Ifft()
2173 loopPtr += 1 - 2*loop2*loop1; in radix2Ifft()
2206 float *loopPtr; in radix2FftFlt() local
2234 loopPtr = pBfr; in radix2FftFlt()
2243 z0I = loopPtr[0]; in radix2FftFlt()
2244 z0Q = loopPtr[1]; in radix2FftFlt()
2245 x1I = loopPtr[2 * loop2]; in radix2FftFlt()
2246 x1Q = loopPtr[2 * loop2 + 1]; in radix2FftFlt()
2254 loopPtr[0] = y0I; in radix2FftFlt()
2255 loopPtr[1] = y0Q; in radix2FftFlt()
2256 loopPtr += 2 * loop2; in radix2FftFlt()
2257 loopPtr[0] = y1I; in radix2FftFlt()
2258 loopPtr[1] = y1Q; in radix2FftFlt()
2259 loopPtr += 2 * loop2; in radix2FftFlt()
2261 loopPtr += 2 - 4 * loop2*loop1; in radix2FftFlt()
2279 float *loopPtr; in radix2IfftFlt() local
2307 loopPtr = pBfr; in radix2IfftFlt()
2316 z0I = loopPtr[0]; in radix2IfftFlt()
2317 z0Q = loopPtr[1]; in radix2IfftFlt()
2318 x1I = loopPtr[2 * loop2]; in radix2IfftFlt()
2319 x1Q = loopPtr[2 * loop2 + 1]; in radix2IfftFlt()
2330 loopPtr[0] = y0I; in radix2IfftFlt()
2331 loopPtr[1] = y0Q; in radix2IfftFlt()
2332 loopPtr += 2*loop2; in radix2IfftFlt()
2333 loopPtr[0] = y1I; in radix2IfftFlt()
2334 loopPtr[1] = y1Q; in radix2IfftFlt()
2335 loopPtr += 2*loop2; in radix2IfftFlt()
2337 loopPtr += 2 - 4 * loop2*loop1; in radix2IfftFlt()
2358 unsigned int *loopPtr; in radix2IfftStride() local
2386 loopPtr = (unsigned int *)pBfr; in radix2IfftStride()
2394 loadTemp = loopPtr[0]; in radix2IfftStride()
2396 loadTemp = loopPtr[NUM_PARALLEL*loop2]; in radix2IfftStride()
2418 *loopPtr = storeTemp; loopPtr += NUM_PARALLEL*loop2; in radix2IfftStride()
2422 *loopPtr = storeTemp; loopPtr += NUM_PARALLEL*loop2; in radix2IfftStride()
2425 loopPtr += NUM_PARALLEL * (1 - 2 * loop2*loop1); in radix2IfftStride()
2447 unsigned int *loopPtr; in radix2IfftParallel() local
2477 loopPtr = (unsigned int *)pBfr; in radix2IfftParallel()
2486 loadTemp = loopPtr[qq]; in radix2IfftParallel()
2488 loadTemp = loopPtr[NUM_PARALLEL*loop2 + qq]; in radix2IfftParallel()
2499 loopPtr[qq] = storeTemp; in radix2IfftParallel()
2503 loopPtr[NUM_PARALLEL*loop2 + qq] = storeTemp; in radix2IfftParallel()
2505 loopPtr += 2*NUM_PARALLEL*loop2; in radix2IfftParallel()
2507 loopPtr += NUM_PARALLEL * (1 - 2 * loop2*loop1); in radix2IfftParallel()