Searched refs:isZeroUndef (Results 1 – 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | SubzeroReactor.cpp | 4443 RValue<UInt> Ctlz(RValue<UInt> x, bool isZeroUndef) in Ctlz() argument 4463 RValue<UInt4> Ctlz(RValue<UInt4> x, bool isZeroUndef) in Ctlz() argument 4475 result = Insert(result, Ctlz(Extract(x, 0), isZeroUndef), 0); in Ctlz() 4476 result = Insert(result, Ctlz(Extract(x, 1), isZeroUndef), 1); in Ctlz() 4477 result = Insert(result, Ctlz(Extract(x, 2), isZeroUndef), 2); in Ctlz() 4478 result = Insert(result, Ctlz(Extract(x, 3), isZeroUndef), 3); in Ctlz() 4483 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef) in Cttz() argument 4503 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef) in Cttz() argument 4515 result = Insert(result, Cttz(Extract(x, 0), isZeroUndef), 0); in Cttz() 4516 result = Insert(result, Cttz(Extract(x, 1), isZeroUndef), 1); in Cttz() [all …]
|
D | LLVMReactor.cpp | 3534 RValue<UInt> Ctlz(RValue<UInt> v, bool isZeroUndef) in Ctlz() argument 3539 …isZeroUndef ? llvm::ConstantInt::getTrue(*jit->context) : llvm::ConstantInt::getFalse(*jit->contex… in Ctlz() 3542 RValue<UInt4> Ctlz(RValue<UInt4> v, bool isZeroUndef) in Ctlz() argument 3547 …isZeroUndef ? llvm::ConstantInt::getTrue(*jit->context) : llvm::ConstantInt::getFalse(*jit->contex… in Ctlz() 3550 RValue<UInt> Cttz(RValue<UInt> v, bool isZeroUndef) in Cttz() argument 3555 …isZeroUndef ? llvm::ConstantInt::getTrue(*jit->context) : llvm::ConstantInt::getFalse(*jit->contex… in Cttz() 3558 RValue<UInt4> Cttz(RValue<UInt4> v, bool isZeroUndef) in Cttz() argument 3563 …isZeroUndef ? llvm::ConstantInt::getTrue(*jit->context) : llvm::ConstantInt::getFalse(*jit->contex… in Cttz()
|
D | Reactor.hpp | 2437 RValue<UInt> Ctlz(RValue<UInt> x, bool isZeroUndef); 2438 RValue<UInt4> Ctlz(RValue<UInt4> x, bool isZeroUndef); 2443 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef); 2444 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef);
|