Home
last modified time | relevance | path

Searched refs:weight1 (Results 1 – 11 of 11) sorted by relevance

/external/dng_sdk/source/
Ddng_hue_sat_map.cpp263 real64 weight1) in Interpolate() argument
266 if (weight1 >= 1.0) in Interpolate()
282 if (weight1 <= 0.0) in Interpolate()
331 real32 w1 = (real32) weight1; in Interpolate()
Ddng_hue_sat_map.h228 real64 weight1);
/external/swiftshader/src/Shader/
DVertexPipeline.cpp88 Float4 weight1; in transformBlend() local
95 case 3: weight1 = v[BlendWeight].y; in transformBlend()
107 weight1 = Float4(1.0f) - weight0; in transformBlend()
115 dst.x = pos0.x * weight0 + pos1.x * weight1; // FIXME: Vector4f operators in transformBlend()
116 dst.y = pos0.y * weight0 + pos1.y * weight1; in transformBlend()
117 dst.z = pos0.z * weight0 + pos1.z * weight1; in transformBlend()
118 dst.w = pos0.w * weight0 + pos1.w * weight1; in transformBlend()
122 weight2 = Float4(1.0f) - (weight0 + weight1); in transformBlend()
132 dst.x = pos0.x * weight0 + pos1.x * weight1 + pos2.x * weight2; in transformBlend()
133 dst.y = pos0.y * weight0 + pos1.y * weight1 + pos2.y * weight2; in transformBlend()
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dlstm_test.py195 weight1 = 1.
200 m0 = self._NextM(self._inputs, weight1, m_init, c_init)
201 c0 = self._NextC(self._inputs, weight1, m_init, c_init)
203 m1 = self._NextM(self._inputs, weight1, m0, c0)
204 c1 = self._NextC(self._inputs, weight1, m0, c0)
206 m2 = self._NextM(self._inputs, weight1, m1, c1)
/external/libaom/libaom/av1/encoder/x86/
Dml_sse3.c70 const __m128 weight1 = _mm_loadu_ps(&weights[(2 * i + 1) * num_inputs]); in nn_propagate_4to4() local
71 const __m128 mul1 = _mm_mul_ps(weight1, inputs128); in nn_propagate_4to4()
91 const __m128 weight1 = _mm_loadu_ps(&weights[(2 * i + 1) * num_inputs]); in nn_propagate_4to8() local
93 const __m128 mul1 = _mm_mul_ps(inputs128, weight1); in nn_propagate_4to8()
/external/linux-kselftest/tools/testing/selftests/net/forwarding/
Dgre_multipath.sh206 local weight1=$1; shift
211 nexthop dev g1a weight $weight1 \
226 multipath_eval "$what" $weight1 $weight2 $d111 $d222
/external/cldr/tools/java/org/unicode/cldr/util/
DVoteResolver.java1241 private Status computeStatus(long weight1, long weight2, Status oldStatus) { in computeStatus() argument
1243 return weight1 > weight2 && in computeStatus()
1244 (weight1 >= requiredVotes) ? Status.approved in computeStatus()
1245 : weight1 > weight2 && in computeStatus()
1246 (weight1 >= 4 && Status.contributed.compareTo(oldStatus) > 0 in computeStatus()
1247 || weight1 >= 2 && orgCount >= 2) ? Status.contributed in computeStatus()
1248 : weight1 >= weight2 && weight1 >= 2 ? Status.provisional in computeStatus()
/external/libavc/decoder/
Dih264d_inter_pred.c1321 WORD32 weight1, weight2; in ih264d_motion_compensate_mp() local
1326 weight1 = (WORD16)(u4_wt_ofst_y & 0xffff); in ih264d_motion_compensate_mp()
1340 weight1, weight2, ofst1, in ih264d_motion_compensate_mp()
1346 weight1 = ((u4_wt_ofst_v & 0xffff) << 16) in ih264d_motion_compensate_mp()
1364 weight1, weight2, ofst1, ofst2, in ih264d_motion_compensate_mp()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/
Ddelay-slot-fill-forward.ll25 @weight1 = external global i16, align 2
69 store i16 %conv88673, i16* @weight1, align 2, !tbaa !5
/external/llvm/test/CodeGen/Mips/
Ddelay-slot-fill-forward.ll25 @weight1 = external global i16, align 2
69 store i16 %conv88673, i16* @weight1, align 2, !tbaa !5
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_soa.c975 LLVMValueRef weight1, in lp_build_masklerp2d() argument
983 return lp_build_lerp(bld, weight1, val0, val1, 0); in lp_build_masklerp2d()