Home
last modified time | relevance | path

Searched refs:CmpGT (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/src/Device/
DQuadRasterizer.cpp198 Short4 mask = CmpGT(xxxx, xLeft[i]) & CmpGT(xRight[i], xxxx); in rasterize()
/external/swiftshader/src/Renderer/
DQuadRasterizer.cpp286 Short4 mask = CmpGT(xxxx, xLeft[q]) & CmpGT(xRight[q], xxxx); in rasterize()
/external/swiftshader/src/Pipeline/
DSpirvShaderArithmetic.cpp291 auto isInf = CmpGT(abs, SIMD::Float(65504.0f)); in EmitUnaryOp()
387 dst.move(i, CmpGT(lhs.UInt(i), rhs.UInt(i))); in EmitBinaryOp()
390 dst.move(i, CmpGT(lhs.Int(i), rhs.Int(i))); in EmitBinaryOp()
448 dst.move(i, CmpGT(lhs.Float(i), rhs.Float(i))); in EmitBinaryOp()
DPixelRoutine.cpp399 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData, stencil[isBack].referenc… in stencilTest()
412 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData, stencil[isBack].referenc… in stencilTest()
418 equal = CmpGT(As<SByte8>(equal), As<SByte8>(value)); in stencilTest()
423 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData, stencil[isBack].referenc… in stencilTest()
554 zTest = Int4(CmpGT(zValue, Z)); in depthTest16()
557 zTest = ~Int4(CmpGT(zValue, Z)); in depthTest16()
560 zTest = ~Int4(CmpGT(Z, zValue)); in depthTest16()
563 zTest = Int4(CmpGT(Z, zValue)); in depthTest16()
/external/swiftshader/src/Shader/
DPixelPipeline.cpp1925 …{Short4 t0; t0 = src0.x; t0 = CmpGT(t0, Short4(0x0800)); Short4 t1; t1 = src1.x; t1 = t1 & t0; t0 … in CND()
1926 …{Short4 t0; t0 = src0.y; t0 = CmpGT(t0, Short4(0x0800)); Short4 t1; t1 = src1.y; t1 = t1 & t0; t0 … in CND()
1927 …{Short4 t0; t0 = src0.z; t0 = CmpGT(t0, Short4(0x0800)); Short4 t1; t1 = src1.z; t1 = t1 & t0; t0 … in CND()
1928 …{Short4 t0; t0 = src0.w; t0 = CmpGT(t0, Short4(0x0800)); Short4 t1; t1 = src1.w; t1 = t1 & t0; t0 … in CND()
1933 …{Short4 t0 = CmpGT(Short4(0x0000), src0.x); Short4 t1; t1 = src2.x; t1 &= t0; t0 = ~t0 & src1.x; t… in CMP()
1934 …{Short4 t0 = CmpGT(Short4(0x0000), src0.y); Short4 t1; t1 = src2.y; t1 &= t0; t0 = ~t0 & src1.y; t… in CMP()
1935 …{Short4 t0 = CmpGT(Short4(0x0000), src0.z); Short4 t1; t1 = src2.z; t1 &= t0; t0 = ~t0 & src1.z; t… in CMP()
1936 …{Short4 t0 = CmpGT(Short4(0x0000), src0.w); Short4 t1; t1 = src2.w; t1 &= t0; t0 = ~t0 & src1.w; t… in CMP()
DPixelRoutine.cpp356 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData,stencil[CCW].referenceMas… in stencilTest()
369 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData,stencil[CCW].referenceMas… in stencilTest()
375 equal = CmpGT(As<SByte8>(equal), As<SByte8>(value)); in stencilTest()
380 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData,stencil[CCW].referenceMas… in stencilTest()
546 cmp = CmpGT(*Pointer<Short4>(data + OFFSET(DrawData,factor.alphaReference4)), alpha); in alphaTest()
551 cmp = CmpGT(alpha, *Pointer<Short4>(data + OFFSET(DrawData,factor.alphaReference4))); in alphaTest()
556 …cmp = CmpGT(alpha, *Pointer<Short4>(data + OFFSET(DrawData,factor.alphaReference4))) ^ Short4(0xFF… in alphaTest()
560 cmp = CmpGT(alpha, *Pointer<Short4>(data + OFFSET(DrawData,factor.alphaReference4))); in alphaTest()
/external/swiftshader/src/Reactor/
DReactor.hpp768 RValue<Byte8> CmpGT(RValue<SByte8> x, RValue<SByte8> y);
951 RValue<Short4> CmpGT(RValue<Short4> x, RValue<Short4> y);
2000 inline RValue<Int4> CmpGT(RValue<Int4> x, RValue<Int4> y) in CmpGT() function
2100 inline RValue<UInt4> CmpGT(RValue<UInt4> x, RValue<UInt4> y) in CmpGT() function
2372 inline RValue<Int4> CmpGT(RValue<Float4> x, RValue<Float4> y) in CmpGT() function
DSubzeroReactor.cpp2497 RValue<Byte8> CmpGT(RValue<SByte8> x, RValue<SByte8> y) in CmpGT() function
2792 RValue<Short4> CmpGT(RValue<Short4> x, RValue<Short4> y) in CmpGT() function
DLLVMReactor.cpp1957 RValue<Byte8> CmpGT(RValue<SByte8> x, RValue<SByte8> y) in CmpGT() function
2136 RValue<Short4> CmpGT(RValue<Short4> x, RValue<Short4> y) in CmpGT() function
/external/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.td72 def CmpGT : PatLeaf<(i32 4)>;
1569 defm : ISET_FORMAT_SIGNED<setgt, CmpGT>;
1575 defm : ISET_FORMAT_UNSIGNED<setugt, CmpGT>;
1653 defm FSetOGT : FSET_FORMAT<setogt, CmpGT, CmpGT_FTZ>;
1667 defm FSetGT : FSET_FORMAT<setgt, CmpGT, CmpGT_FTZ>;
/external/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.td75 def CmpGT : PatLeaf<(i32 4)>;
1725 defm : ISET_FORMAT_SIGNED<setgt, CmpGT>;
1731 defm : ISET_FORMAT_UNSIGNED<setugt, CmpGT>;
1849 defm FSetOGT : FSET_FORMAT<setogt, CmpGT, CmpGT_FTZ>;
1863 defm FSetGT : FSET_FORMAT<setgt, CmpGT, CmpGT_FTZ>;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.td75 def CmpGT : PatLeaf<(i32 4)>;
1725 defm : ISET_FORMAT_SIGNED<setgt, CmpGT>;
1731 defm : ISET_FORMAT_UNSIGNED<setugt, CmpGT>;
1849 defm FSetOGT : FSET_FORMAT<setogt, CmpGT, CmpGT_FTZ>;
1863 defm FSetGT : FSET_FORMAT<setgt, CmpGT, CmpGT_FTZ>;
/external/swiftshader/tests/ReactorUnitTests/
DReactorUnitTests.cpp1361 …*Pointer<Byte8>(out + 16 * 5) = CmpGT(SByte8(1, 2, 3, 4, 5, 6, 7, 8), SByte8(7, 6, 5, 4, 3, 2, 1, … in TEST()
/external/llvm-project/clang/lib/CodeGen/
DCGBuiltin.cpp3223 BasicBlock *CmpGT = createBasicBlock("wmemcmp.gt"); in EmitBuiltinExpr() local
3228 Builder.CreateCondBr(SizeEq0, Exit, CmpGT); in EmitBuiltinExpr()
3230 EmitBlock(CmpGT); in EmitBuiltinExpr()
3254 Builder.CreateCondBr(NextSizeEq0, Exit, CmpGT); in EmitBuiltinExpr()
3262 Ret->addIncoming(ConstantInt::get(IntTy, 1), CmpGT); in EmitBuiltinExpr()