Lines Matching refs:temp
61 sampledLine *temp, *tempNext;
62 for(temp = this; temp != NULL; temp = tempNext)
64 tempNext = temp->next;
65 delete temp;
156 Real2 *temp = (Real2*) malloc(sizeof(Real2) * (n+1));
157 assert(temp);
162 temp[i][0] = u;
163 temp[i][1] = v;
165 temp[n][0] = points[npoints-1][0];
166 temp[n][1] = points[npoints-1][1];
171 points = temp;
177 sampledLine* temp;
178 for(temp = this; temp != NULL; temp = temp->next)
180 temp->tessellate(u_reso, v_reso);