HomeSort by relevance Sort by last modified time
    Searched defs:signExtend (Results 1 - 9 of 9) sorted by null

  /external/parameter-framework/upstream/parameter/
ParameterType.cpp 140 void CParameterType::signExtend(int32_t &iData) const
145 void CParameterType::signExtend(int64_t &iData) const
  /external/deqp/framework/common/
tcuAstcUtil.cpp 91 inline deInt32 signExtend (deInt32 src, int numSrcBits)
942 d0 = signExtend(d0, numDBits[mode]);
943 d1 = signExtend(d1, numDBits[mode]);
    [all...]
tcuTexture.cpp 463 inline deInt32 signExtend (deUint32 src, int bits)
477 return de::max(-1.0f, (float)signExtend(src, bits) / (float)range);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrUtil.cpp 696 inline deInt32 signExtend (deUint32 src, int bits)
816 return de::max(-1.0f, (float)signExtend(bits, m_channelSize) / (float)((0x1u << (m_channelSize - 1u)) - 1u));
819 return (float)signExtend(bits, m_channelSize);
852 const tcu::Interval result (conversionFormat.roundOut(conversionFormat.roundOut((double)signExtend(bits, m_channelSize), false)
859 return conversionFormat.roundOut((double)signExtend(bits, m_channelSize), false);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 523 static deUint32 signExtend (deUint32 value, deUint32 numBits)
565 case glu::PRECISION_LOWP: *comp = (int)signExtend(rnd.getUint32()&0xff, 8); break;
566 case glu::PRECISION_MEDIUMP: *comp = (int)signExtend(rnd.getUint32()&0xffff, 16); break;
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 134 unsigned signExtend(unsigned Reg, const Value *V,
468 unsigned WebAssemblyFastISel::signExtend(unsigned Reg, const Value *V,
810 unsigned Reg = signExtend(getRegForValue(Op), Op, From, To);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 159 unsigned signExtend(unsigned Reg, const Value *V,
527 unsigned WebAssemblyFastISel::signExtend(unsigned Reg, const Value *V,
561 return signExtend(VReg, V, From, To);
957 unsigned Reg = signExtend(In, Op, From, To);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 140 bool signExtend = shouldSignExtendTypeInLibCall(RetVT, isSigned);
144 .setSExtResult(signExtend).setZExtResult(!signExtend);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 142 bool signExtend = shouldSignExtendTypeInLibCall(RetVT, isSigned);
148 .setSExtResult(signExtend)
149 .setZExtResult(!signExtend);
    [all...]

Completed in 617 milliseconds