Searched refs:cells (Results 1 – 3 of 3) sorted by relevance
4 …alled a "cell". Each cell has a value. The value is a matrix. Some of the cells have operators tha…8 1. Compute the set of cells that have no inputs. This set is called `root_set`.13 …2. If the count became zero, add the cell to the set of cells to be updated, by calling `feeder::a…21 * The time to update the cells becomes very small, and consequently the overhead of `parallel_for_e…
97 g->cells = (objectlist **)rt_getmem(xsize * ysize * zsize * sizeof(objectlist *)); in newgrid()98 memset(g->cells, 0, xsize * ysize * zsize * sizeof(objectlist *)); in newgrid()123 lcur = g->cells[i]; in grid_free()131 free(g->cells); in grid_free()181 cur = g->cells[index->z * g->xsize * g->ysize + index->y * g->xsize + index->x]; in cellbound()436 tmp->next = g->cells[voxindex]; in engrid_object()438 g->cells[voxindex] = tmp; in engrid_object()561 cur = g->cells[voxindex]; in grid_intersect()580 cur = g->cells[voxindex]; in grid_intersect()599 cur = g->cells[voxindex]; in grid_intersect()[all …]
75 objectlist **cells; /* the grid cells themselves */ member