Searched refs:intop (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/lua/src/
H A Dlobject.c56 case LUA_OPADD: return intop(+, v1, v2);
57 case LUA_OPSUB:return intop(-, v1, v2);
58 case LUA_OPMUL:return intop(*, v1, v2);
61 case LUA_OPBAND: return intop(&, v1, v2);
62 case LUA_OPBOR: return intop(|, v1, v2);
63 case LUA_OPBXOR: return intop(^, v1, v2);
66 case LUA_OPUNM: return intop(-, 0, v1);
67 case LUA_OPBNOT: return intop(^, ~l_castS2U(0), v1);
H A Dlvm.c727 return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */
779 else return intop(>>, x, -y);
783 else return intop(<<, x, y);
874 #define l_addi(L,a,b) intop(+, a, b)
875 #define l_subi(L,a,b) intop(-, a, b)
876 #define l_muli(L,a,b) intop(*, a, b)
877 #define l_band(a,b) intop(&, a, b)
878 #define l_bor(a,b) intop(|, a, b)
879 #define l_bxor(a,b) intop(^, a, b)
1498 setivalue(s2v(ra), intop(
[all...]
H A Dlvm.h71 #define intop(op,v1,v2) l_castU2S(l_castS2U(v1) op l_castS2U(v2)) macro
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3937 AtomicRMWInst::BinOp intop = mapFromLLVMRMWBinOp(op);
3938 return wrap(unwrap(B)->CreateAtomicRMW(intop, unwrap(PTR), unwrap(Val),

Completed in 180 milliseconds