/external/lua/src/ |
lobject.c | 86 case LUA_OPADD: return intop(+, v1, v2); 87 case LUA_OPSUB:return intop(-, v1, v2); 88 case LUA_OPMUL:return intop(*, v1, v2); 91 case LUA_OPBAND: return intop(&, v1, v2); 92 case LUA_OPBOR: return intop(|, v1, v2); 93 case LUA_OPBXOR: return intop(^, v1, v2); 96 case LUA_OPUNM: return intop(-, 0, v1); 97 case LUA_OPBNOT: return intop(^, ~l_castS2U(0), v1);
|
lvm.c | 556 return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */ 596 else return intop(>>, x, -y); 600 else return intop(<<, x, y); 895 setivalue(ra, intop(+, ib, ic)); 909 setivalue(ra, intop(-, ib, ic)); 923 setivalue(ra, intop(*, ib, ic)); 946 setivalue(ra, intop(&, ib, ic)); 956 setivalue(ra, intop(|, ib, ic)); 966 setivalue(ra, intop(^, ib, ic)); [all...] |
lvm.h | 46 #define intop(op,v1,v2) l_castU2S(l_castS2U(v1) op l_castS2U(v2)) macro
|
/external/llvm/lib/IR/ |
Core.cpp | 3040 AtomicRMWInst::BinOp intop; local [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
Core.cpp | 3355 AtomicRMWInst::BinOp intop; local [all...] |