Home
last modified time | relevance | path

Searched refs:negate_if (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/blender/blender-2.91.0/source/blender/gpu/shaders/material/
H A Dgpu_shader_material_noise.glsl90 float negate_if(float value, uint condition)
99 return negate_if(g, h & 8u) * x;
107 return negate_if(u, h & 1u) + negate_if(v, h & 2u);
116 return negate_if(u, h & 1u) + negate_if(v, h & 2u);
125 return negate_if(u, h & 1u) + negate_if(v, h & 2u) + negate_if(s, h & 4u);
/dports/math/polymake/polymake-4.5/lib/core/src/
H A Dnumerical_linalg.cc43 Matrix<double>&& negate_if(Matrix<double>&& M, const double sign) in negate_if() function
49 Vector<double>&& negate_if(Vector<double>&& V, const double sign) in negate_if() function
67 …M.minor(range(i, rowsM), range(i, colsM)) = negate_if(Ui * M.minor(range(i, rowsM), range(i, colsM… in bidiag()
68 …U.minor(range(i, dimU), range(0, dimU)) = negate_if(Ui * U.minor(range(i, dimU), range(0, dimU)… in bidiag()
73 …M.minor(range(i, rowsM), range(i+1, colsM)) = negate_if(M.minor(range(i, rowsM), range(i+1, colsM)… in bidiag()
74 …V.minor(range(0, dimV), range(i+1, dimV)) = negate_if(V.minor(range(0, dimV), range(i+1, dimV))… in bidiag()
230 Vector<double> u = v + negate_if(sqrt(v*v) * unit_vector<double>(dimv,0), v[0]); in householder_trafo()
/dports/graphics/blender/blender-2.91.0/intern/cycles/kernel/svm/
H A Dsvm_noise.h42 ccl_device_inline float negate_if(float val, int condition) in negate_if() function
51 return negate_if(g, h & 8) * x; in grad1()
157 return negate_if(u, h & 1) + negate_if(v, h & 2); in grad2()
166 return negate_if(u, h & 1) + negate_if(v, h & 2); in grad3()
175 return negate_if(u, h & 1) + negate_if(v, h & 2) + negate_if(s, h & 4); in grad4()
/dports/www/hotcrp/hotcrp-2.102/src/search/
H A Dst_tag.php162 $term = $value->make_term()->negate_if($negated);
225 return $tm->make_term()->negate_if($word === "none");
247 return $tm->make_term()->negate_if($word === "none");
286 return $tm->make_term()->negate_if(strcasecmp($word, "none") == 0);
/dports/graphics/openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/include/OSL/
H A Doslnoise.h703 OSL_FORCEINLINE OSL_HOSTDEVICE float negate_if (const float val, const bool cond) { in negate_if() function
738 template <> OSL_FORCEINLINE Dual2<Vec3> negate_if(const Dual2<Vec3> &val, const bool &b) {
752 OSL_FORCEINLINE float4 negate_if (const float4& val, const int4& b) { in negate_if() function
759 OSL_FORCEINLINE Dual2<float4> negate_if (const Dual2<float4>& val, const int4& b) in negate_if() function
761 return Dual2<float4> (negate_if (val.val(), b), in negate_if()
762 negate_if (val.dx(), b), in negate_if()
763 negate_if (val.dy(), b)); in negate_if()
930 return negate_if(u, h&1) + negate_if(v, h&2); in grad()
939 return negate_if(u,h&1) + negate_if(v,h&2); in grad()
955 return negate_if(u,h&1) + negate_if(v,h&2); in grad()
[all …]
H A Dsfm_simplex.h373 OSL_FORCEINLINE float negate_if (const float val, const bool b) { in negate_if() function
/dports/graphics/py-openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/include/OSL/
H A Doslnoise.h703 OSL_FORCEINLINE OSL_HOSTDEVICE float negate_if (const float val, const bool cond) { in negate_if() function
738 template <> OSL_FORCEINLINE Dual2<Vec3> negate_if(const Dual2<Vec3> &val, const bool &b) {
752 OSL_FORCEINLINE float4 negate_if (const float4& val, const int4& b) { in negate_if() function
759 OSL_FORCEINLINE Dual2<float4> negate_if (const Dual2<float4>& val, const int4& b) in negate_if() function
761 return Dual2<float4> (negate_if (val.val(), b), in negate_if()
762 negate_if (val.dx(), b), in negate_if()
763 negate_if (val.dy(), b)); in negate_if()
930 return negate_if(u, h&1) + negate_if(v, h&2); in grad()
939 return negate_if(u,h&1) + negate_if(v,h&2); in grad()
955 return negate_if(u,h&1) + negate_if(v,h&2); in grad()
[all …]
H A Dsfm_simplex.h373 OSL_FORCEINLINE float negate_if (const float val, const bool b) { in negate_if() function
/dports/www/hotcrp/hotcrp-2.102/src/
H A Dpapersearch.php162 function negate_if($negate) { function in SearchTerm
859 return $term->negate_if($this->negated);