Searched refs:tx1 (Results 1 – 5 of 5) sorted by relevance
| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | box.cpp | 86 flt a, tx1, tx2, ty1, ty2, tz1, tz2; in box_intersect() local 97 tx1 = (bx->min.x - ry->o.x) / ry->d.x; in box_intersect() 99 if (tx1 > tx2) { in box_intersect() 100 a = tx1; in box_intersect() 101 tx1 = tx2; in box_intersect() 104 if (tx1 > tnear) in box_intersect() 105 tnear = tx1; in box_intersect()
|
| H A D | bndbox.cpp | 98 flt a, tx1, tx2, ty1, ty2, tz1, tz2; in bndbox_intersect() local 130 tx1 = (bx->min.x - ry->o.x) / ry->d.x; in bndbox_intersect() 132 if (tx1 > tx2) { in bndbox_intersect() 133 a = tx1; in bndbox_intersect() 134 tx1 = tx2; in bndbox_intersect() 137 if (tx1 > tnear) in bndbox_intersect() 138 tnear = tx1; in bndbox_intersect()
|
| H A D | vol.cpp | 163 flt a, tx1, tx2, ty1, ty2, tz1, tz2; in scalar_volume_texture() local 187 tx1 = (bx->min.x - ry->o.x) / ry->d.x; in scalar_volume_texture() 189 if (tx1 > tx2) { in scalar_volume_texture() 190 a = tx1; in scalar_volume_texture() 191 tx1 = tx2; in scalar_volume_texture() 194 if (tx1 > tnear) in scalar_volume_texture() 195 tnear = tx1; in scalar_volume_texture()
|
| H A D | extvol.cpp | 153 flt a, tx1, tx2, ty1, ty2, tz1, tz2; in ext_volume_texture() local 179 tx1 = (bx->min.x - ry->o.x) / ry->d.x; in ext_volume_texture() 181 if (tx1 > tx2) { in ext_volume_texture() 182 a = tx1; in ext_volume_texture() 183 tx1 = tx2; in ext_volume_texture() 186 if (tx1 > tnear) in ext_volume_texture() 187 tnear = tx1; in ext_volume_texture()
|
| H A D | grid.cpp | 634 flt a, tx1, tx2, ty1, ty2, tz1, tz2; in grid_bounds_intersect() local 645 tx1 = (g->min.x - ry->o.x) / ry->d.x; in grid_bounds_intersect() 647 if (tx1 > tx2) { in grid_bounds_intersect() 648 a = tx1; in grid_bounds_intersect() 649 tx1 = tx2; in grid_bounds_intersect() 652 if (tx1 > tnear) in grid_bounds_intersect() 653 tnear = tx1; in grid_bounds_intersect()
|