Home | History | Annotate | Download | only in dsp

Lines Matching defs:pX

138 //   const uint32_t* pX = &X[4];
141 // while (pX != LoopEnd) {
142 // const uint32_t xy0 = *pX + *pY;
143 // const uint32_t xy1 = *(pX + 1) + *(pY + 1);
147 // pX += 2;
154 const uint32_t* pX = &X[4];
161 "beq %[pX], %[LoopEnd], 2f \n\t"
163 "lw %[temp0], 0(%[pX]) \n\t"
165 "lw %[temp2], 4(%[pX]) \n\t"
170 "addiu %[pX], %[pX], 8 \n\t"
174 "bne %[pX], %[LoopEnd], 1b \n\t"
180 [i]"=&r"(i), [pX]"+r"(pX), [pY]"+r"(pY)