Searched refs:dstBits (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/mlir/lib/Conversion/StandardToSPIRV/ |
D | ConvertStandardToSPIRV.cpp | 852 int dstBits = dstType.getIntOrFloatBitWidth(); in matchAndRewrite() local 853 assert(dstBits % srcBits == 0); in matchAndRewrite() 857 if (srcBits == dstBits) { in matchAndRewrite() 868 srcBits, dstBits, rewriter); in matchAndRewrite() 878 Value offset = getOffsetForBitwidth(loc, lastDim, srcBits, dstBits, rewriter); in matchAndRewrite() 891 rewriter.getIntegerAttr(dstType, dstBits - srcBits); in matchAndRewrite() 972 int dstBits = dstType.getIntOrFloatBitWidth(); in matchAndRewrite() local 973 assert(dstBits % srcBits == 0); in matchAndRewrite() 975 if (srcBits == dstBits) { in matchAndRewrite() 994 Value offset = getOffsetForBitwidth(loc, lastDim, srcBits, dstBits, rewriter); in matchAndRewrite() [all …]
|
/external/llvm-project/compiler-rt/lib/builtins/ |
D | fp_extend_impl.inc | 55 const int dstBits = sizeof(dst_t) * CHAR_BIT; 56 const int dstExpBits = dstBits - dstSigBits - 1; 105 const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
|
D | fp_trunc_impl.inc | 59 const int dstBits = sizeof(dst_t) * CHAR_BIT; 60 const int dstExpBits = dstBits - dstSigBits - 1; 130 const dst_rep_t result = absResult | sign >> (srcBits - dstBits);
|
/external/compiler-rt/lib/builtins/ |
D | fp_extend_impl.inc | 56 const int dstBits = sizeof(dst_t)*CHAR_BIT; 57 const int dstExpBits = dstBits - dstSigBits - 1; 106 const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
|
D | fp_trunc_impl.inc | 60 const int dstBits = sizeof(dst_t)*CHAR_BIT; 61 const int dstExpBits = dstBits - dstSigBits - 1; 133 const dst_rep_t result = absResult | sign >> (srcBits - dstBits);
|
/external/skqp/docs/ |
D | illustrations.bmh | 650 SkBitmap dstBits; 651 dstBits.allocN32Pixels(80, 80); 652 SkCanvas dstCanvas(dstBits);
|
/external/python/cpython2/Mac/Modules/qd/ |
D | _Qdmodule.c | 3201 BitMapPtr dstBits; in Qd_CopyBits() local 3211 BMObj_Convert, &dstBits, in Qd_CopyBits() 3218 dstBits, in Qd_CopyBits() 3233 BitMapPtr dstBits; in Qd_CopyMask() local 3243 BMObj_Convert, &dstBits, in Qd_CopyMask() 3250 dstBits, in Qd_CopyMask() 4808 BitMapPtr dstBits; in Qd_CopyDeepMask() local 4820 BMObj_Convert, &dstBits, in Qd_CopyDeepMask() 4829 dstBits, in Qd_CopyDeepMask()
|
/external/deqp/framework/common/ |
D | tcuCompressedTexture.cpp | 1408 inline deInt32 signExtend (deInt32 value, deInt32 srcBits, deInt32 dstBits) in signExtend() argument 1414 deInt32 dstMask = (deInt32)(((deUint64)1 << dstBits) - 1); in signExtend()
|