Home | History | Annotate | Download | only in dsp

Lines Matching defs:pX

142 //   const uint32_t* pX = &X[4];
145 // while (pX != LoopEnd) {
146 // const uint32_t xy0 = *pX + *pY;
147 // const uint32_t xy1 = *(pX + 1) + *(pY + 1);
151 // pX += 2;
158 const uint32_t* pX = &X[4];
165 "beq %[pX], %[LoopEnd], 2f \n\t"
167 "lw %[temp0], 0(%[pX]) \n\t"
169 "lw %[temp2], 4(%[pX]) \n\t"
174 "addiu %[pX], %[pX], 8 \n\t"
178 "bne %[pX], %[LoopEnd], 1b \n\t"
184 [i]"=&r"(i), [pX]"+r"(pX), [pY]"+r"(pY)