Home
last modified time | relevance | path

Searched refs:weight2 (Results 1 – 13 of 13) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/net/forwarding/
Dgre_multipath.sh211 local weight2=$1; shift
216 nexthop dev g1b weight $weight2
230 multipath_eval "$what" $weight1 $weight2 $d111 $d222
Dgre_inner_v4_multipath.sh258 local weight2=$1; shift
263 nexthop via 192.0.2.162 weight $weight2
278 multipath_eval "$what" $weight1 $weight2 $d111 $d222
Dgre_inner_v6_multipath.sh258 local weight2=$1; shift
263 nexthop via 192.0.2.162 weight $weight2
279 multipath_eval "$what" $weight1 $weight2 $d111 $d222
Dip6gre_inner_v6_multipath.sh257 local weight2=$1; shift
262 nexthop via 2001:db8:82::2 weight $weight2
278 multipath_eval "$what" $weight1 $weight2 $d111 $d222
Dip6gre_inner_v4_multipath.sh257 local weight2=$1; shift
262 nexthop via 2001:db8:82::2 weight $weight2
277 multipath_eval "$what" $weight1 $weight2 $d111 $d222
/external/swiftshader/src/Shader/
DVertexPipeline.cpp89 Float4 weight2; in transformBlend() local
94 case 4: weight2 = v[BlendWeight].z; 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()
134 dst.z = pos0.z * weight0 + pos1.z * weight1 + pos2.z * weight2; in transformBlend()
135 dst.w = pos0.w * weight0 + pos1.w * weight1 + pos2.w * weight2; in transformBlend()
139 weight3 = Float4(1.0f) - (weight0 + weight1 + weight2); in transformBlend()
151 dst.x = pos0.x * weight0 + pos1.x * weight1 + pos2.x * weight2 + pos3.x * weight3; in transformBlend()
152 dst.y = pos0.y * weight0 + pos1.y * weight1 + pos2.y * weight2 + pos3.y * weight3; in transformBlend()
[all …]
/external/libavc/decoder/
Dih264d_inter_pred.c1321 WORD32 weight1, weight2; in ih264d_motion_compensate_mp() local
1330 weight2 = (WORD16)(u4_wt_ofst_y & 0xffff); in ih264d_motion_compensate_mp()
1340 weight1, weight2, ofst1, in ih264d_motion_compensate_mp()
1353 weight2 = ((u4_wt_ofst_v & 0xffff) << 16) in ih264d_motion_compensate_mp()
1364 weight1, weight2, ofst1, ofst2, in ih264d_motion_compensate_mp()
/external/cldr/tools/java/org/unicode/cldr/util/
DVoteResolver.java518 long weight2 = items.getCount(value2); in getTotals() local
520 if (weight == weight2) { in getTotals()
1346 private Status computeStatus(long weight1, long weight2, Status oldStatus) { in computeStatus() argument
1347 if (weight1 > weight2 && weight1 >= requiredVotes) { in computeStatus()
1350 if (weight1 > weight2 && in computeStatus()
1355 if (weight1 >= weight2 && weight1 >= 2) { in computeStatus()
/external/llvm-project/llvm/test/CodeGen/Mips/
Ddelay-slot-fill-forward.ll26 @weight2 = external global i16, align 2
72 store i16 %conv106, i16* @weight2, align 2, !tbaa !5
/external/llvm/test/CodeGen/Mips/
Ddelay-slot-fill-forward.ll26 @weight2 = external global i16, align 2
72 store i16 %conv106, i16* @weight2, align 2, !tbaa !5
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_soa.c964 LLVMValueRef weight2; in lp_build_masklerp() local
966 weight2 = lp_build_sub(bld, bld->one, weight); in lp_build_masklerp()
969 weight2 = LLVMBuildBitCast(builder, weight2, in lp_build_masklerp()
972 weight2 = LLVMBuildAnd(builder, weight2, mask0, ""); in lp_build_masklerp()
974 weight2 = LLVMBuildBitCast(builder, weight2, bld->vec_type, ""); in lp_build_masklerp()
975 return lp_build_add(bld, weight, weight2); in lp_build_masklerp()
/external/mesa3d/src/panfrost/lib/
Ddecode.c270 nonzero_weights |= w.weight2 != 0x0; in pandecode_midgard_tiler_descriptor()
/external/ruy/ruy/
Dtest.h288 Scalar WeightedSum(Scalar s1, float weight1, Scalar s2, float weight2) {
289 float sum = s1 * weight1 + s2 * weight2;