Home
last modified time | relevance | path

Searched refs:scale (Results 1 – 15 of 15) sorted by relevance

/oneTBB/examples/parallel_for/tachyon/src/
H A Dtexture.cpp75 u = u * tex->scale.x; in image_cyl_texture()
81 v = v * tex->scale.y; in image_cyl_texture()
101 u = u * tex->scale.x; in image_sphere_texture()
107 v = v * tex->scale.y; in image_sphere_texture()
133 u = u * tex->scale.x; in image_plane_texture()
139 v = v * tex->scale.y; in image_plane_texture()
H A Dparse.cpp172 static void Scale3d(vector *scale, vector *vec) { in Scale3d() argument
173 vec->x = vec->x * scale->x; in Scale3d()
174 vec->y = vec->y * scale->y; in Scale3d()
175 vec->z = vec->z * scale->z; in Scale3d()
482 rc |= GetVector(dfile, &tex.scale); in GetTexBody()
785 vector ctr, rot, scale; in GetTPolyFile() local
796 rc |= GetVector(dfile, &scale); in GetTPolyFile()
830 Scale3d(&scale, &v0); in GetTPolyFile()
831 Scale3d(&scale, &v1); in GetTPolyFile()
832 Scale3d(&scale, &v2); in GetTPolyFile()
H A Dapi.hpp79 vector scale; /* scale of texture in x,y,z */ member
H A Dtypes.hpp150 vector scale; /* scale of texture in x,y,z */ member
H A Dapi.cpp279 tex->scale = apitex->scale; in apitextotex()
H A Dvol.cpp109 tx->scale = tx->ctr; in newscalarvol()
H A Dextvol.cpp109 xvol->tex->scale = xvol->tex->ctr; in newextvol()
/oneTBB/examples/parallel_for/seismic/
H A Duniverse.cpp78 ValueType scale = 2.0f / (ValueType)ColorMapSize; in InitializeUniverse() local
82 ValueType t = (i - ColorMapSize / 2) * scale; in InitializeUniverse()
/oneTBB/doc/GSG/
H A Dintro.rst16 :scale: 70%
/oneTBB/
H A DREADME.md8 …ity. oneTBB provides you with functions, interfaces, and classes to parallelize and scale the code.
/oneTBB/doc/main/intro/
H A DBenefits.rst50 thread to each block is a solution that typically does not scale well
/oneTBB/doc/main/tbb_userguide/
H A DMutex_Flavors.rst52 algorithm will not scale anyway. Consider redesigning the algorithm
H A DControlling_Chunking_os.rst142 The scale is logarithmic. The downward slope on the left side indicates
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DWavefront.rst132 dependence pattern, but at a block scale. Hence scheduling overheads
/oneTBB/test/common/
H A Ddoctest.h1284 Approx& scale(double newScale);
1288 typename std::enable_if<std::is_constructible<double, T>::value, Approx&>::type scale(
4023 approx.scale(m_scale);
4031 Approx& Approx::scale(double newScale) {