Lines Matching defs:temp_points
56 int *temp_points;
422 static void init_elbg(ELBGContext *av_restrict elbg, int *points, int *temp_points,
432 memcpy(temp_points + i*dim, points + k*dim, dim * sizeof(*temp_points));
436 * the allocated size of temp_points will also need to be updated. */
437 init_elbg(elbg, temp_points, temp_points + numpoints / 8 * dim,
439 do_elbg(elbg, temp_points, numpoints / 8, 2 * max_steps);
491 ALLOCATE_IF_NECESSARY(temp_points, prod, 1)
494 init_elbg(elbg, points, elbg->temp_points, numpoints, max_steps);
511 av_freep(&elbg->temp_points);