Home
last modified time | relevance | path

Searched refs:cur (Results 1 – 3 of 3) sorted by relevance

/oneTBB/examples/parallel_for/tachyon/src/
H A Dobjbound.cpp82 cur->methods->bbox((void *)cur, &min, &max); in globalbound()
92 cur = (object *)cur->nextobj; in globalbound()
119 cur = (object *)cur->nextobj; in countobj()
236 cur = (object *)cur->nextobj; in octreespace()
247 globalbound(&cur->objlist, &cur->min, &cur->max); in octreespace()
253 globalbound(&cur->objlist, &cur->min, &cur->max); in octreespace()
259 globalbound(&cur->objlist, &cur->min, &cur->max); in octreespace()
265 globalbound(&cur->objlist, &cur->min, &cur->max); in octreespace()
271 globalbound(&cur->objlist, &cur->min, &cur->max); in octreespace()
277 globalbound(&cur->objlist, &cur->min, &cur->max); in octreespace()
[all …]
H A Dgrid.cpp162 if (cur->methods->bbox((void *)cur, &min, &max)) { in globalbound()
172 cur = (object *)cur->nextobj; in globalbound()
224 cur = cur->next; in cellbound()
250 cur = root; in countobj()
253 cur = (object *)cur->nextobj; in countobj()
267 cur = cur->next; in countobjlist()
567 cur = cur->next; in grid_intersect()
586 cur = cur->next; in grid_intersect()
605 cur = cur->next; in grid_intersect()
628 cur->obj->methods->intersect(cur->obj, ry); in voxel_intersect()
[all …]
H A Dintersect.cpp79 object *cur; in free_objects() local
82 cur = start; in free_objects()
83 while (cur->nextobj != nullptr) { in free_objects()
84 cur2 = (object *)cur->nextobj; in free_objects()
85 cur->methods->free(cur); in free_objects()
86 cur = cur2; in free_objects()
88 free(cur); in free_objects()
100 object *cur; in intersect_objects() local
104 cur = &temp; /* ready, set */ in intersect_objects()
106 while ((cur = (object *)cur->nextobj) != nullptr) in intersect_objects()
[all …]