HomeSort by relevance Sort by last modified time
    Searched refs:AddSat (Results 1 - 6 of 6) sorted by null

  /external/swiftshader/src/Shader/
PixelPipeline.cpp 217 if(dst.mask & 0x1) { d.x = AddSat(d.x, d.x); if(dst.shift > 1) d.x = AddSat(d.x, d.x); if(dst.shift > 2) d.x = AddSat(d.x, d.x); }
218 if(dst.mask & 0x2) { d.y = AddSat(d.y, d.y); if(dst.shift > 1) d.y = AddSat(d.y, d.y); if(dst.shift > 2) d.y = AddSat(d.y, d.y); }
219 if(dst.mask & 0x4) { d.z = AddSat(d.z, d.z); if(dst.shift > 1) d.z = AddSat(d.z, d.z); if(dst.shift > 2) d.z = AddSat(d.z, d.z); }
220 if(dst.mask & 0x8) { d.w = AddSat(d.w, d.w); if(dst.shift > 1) d.w = AddSat(d.w, d.w); if(dst.shift > 2) d.w = AddSat(d.w, d.w);
    [all...]
SamplerCore.cpp 610 case +1: return AddSat(As<UShort4>(uvw), As<UShort4>(offset));
611 case 2: return AddSat(AddSat(As<UShort4>(uvw), As<UShort4>(offset)), As<UShort4>(offset));
768 if(hasUnsignedTextureComponent(0)) c.x = cSum.x; else c.x = AddSat(cSum.x, cSum.x);
769 if(hasUnsignedTextureComponent(1)) c.y = cSum.y; else c.y = AddSat(cSum.y, cSum.y);
770 if(hasUnsignedTextureComponent(2)) c.z = cSum.z; else c.z = AddSat(cSum.z, cSum.z);
771 if(hasUnsignedTextureComponent(3)) c.w = cSum.w; else c.w = AddSat(cSum.w, cSum.w);
874 if(!hasUnsignedTextureComponent(0)) c.x = AddSat(c.x, c.x); // Correct for signed fractions
904 if(!hasUnsignedTextureComponent(1)) c.y = AddSat(c.y, c.y); // Correct for signed fractions
934 if(!hasUnsignedTextureComponent(2)) c.z = AddSat(c.z, c.z); // Correct for signed fraction
    [all...]
PixelRoutine.cpp 851 output = AddSat(bufferValue, Byte8(1, 1, 1, 1, 1, 1, 1, 1));
    [all...]
  /external/swiftshader/src/Reactor/
Reactor.hpp 565 RValue<Byte8> AddSat(RValue<Byte8> x, RValue<Byte8> y);
619 RValue<SByte8> AddSat(RValue<SByte8> x, RValue<SByte8> y);
796 RValue<Short4> AddSat(RValue<Short4> x, RValue<Short4> y);
    [all...]
LLVMReactor.cpp     [all...]
SubzeroReactor.cpp     [all...]

Completed in 61 milliseconds