Lines Matching defs:copy
7 * copy of this software and associated documentation files (the "Software"),
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
254 * the temporary "copy" buffer.
257 * The temporary "copy" buffer holds the vertices which need to get
270 unsigned copy = 0;
276 copy = count % 2;
279 copy = count % 3;
283 copy = count % 4;
286 copy = count % 6;
289 copy = MIN2(1, count);
292 /* We need to copy 3 vertices, because:
296 copy = MIN2(3, count);
307 copy = count % 3;
309 copy = count % ctx->TessCtrlProgram.patch_vertices;
318 * subtract one from last_prim->start) so that we copy the 0th vertex
344 copy = count;
346 copy = 2 + (count % 2);
357 memcpy(dst, src + (count - copy) * vertex_size,
358 copy * vertex_size * sizeof(GLfloat));
359 return copy;