Home
last modified time | relevance | path

Searched refs:trueVal (Results 1 – 3 of 3) sorted by relevance

/external/deqp/framework/common/
DtcuVectorUtil.hpp340 inline Vector<T, Size> select (T trueVal, T falseVal, const Vector<bool, Size>& cond) in select() argument
344 res[i] = cond[i] ? trueVal : falseVal; in select()
351 inline Vector<T, Size> select (const Vector<T, Size>& trueVal, const Vector<T, Size>& falseVal, con… in select() argument
355 res[i] = cond[i] ? trueVal[i] : falseVal[i]; in select()
/external/llvm-project/flang/lib/Lower/
DCharacterExpr.cpp351 auto trueVal = builder.createIntegerConstant(loc, builder.getI1Type(), 1); in createLenTrim() local
356 loc, lastChar, zero, minusOne, trueVal, lastChar); in createLenTrim()
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorTransforms.cpp1421 Value trueVal = rewriter.create<vector::ConstantMaskOp>( in matchAndRewrite() local
1428 rewriter.create<vector::InsertOp>(loc, dstType, trueVal, result, pos); in matchAndRewrite()
1463 Value trueVal = rewriter.create<vector::CreateMaskOp>( in matchAndRewrite() local
1472 Value sel = rewriter.create<SelectOp>(loc, val, trueVal, falseVal); in matchAndRewrite()