本文介绍了MMX“小于"固有掩码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我该如何掩盖小于MMX内在函数中的?
我只在MMX内部指令中看到大于"内部指令.
How do I mask a less than in MMX intrinsics?
I only see "greater than" intrinsic in MMX intrinsic instructions.
if (x <20)
b =y+f;
else
b =y;
推荐答案
if (20 > x) // Same than x < 20 but using the greater than operator :-)
b = y + f;
else
b = y;
这篇关于MMX“小于"固有掩码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!