Searched refs:intop (Results 1 – 9 of 9) sorted by relevance
/external/lua/src/ |
D | lobject.c | 56 case LUA_OPADD: return intop(+, v1, v2); in intarith() 57 case LUA_OPSUB:return intop(-, v1, v2); in intarith() 58 case LUA_OPMUL:return intop(*, v1, v2); in intarith() 61 case LUA_OPBAND: return intop(&, v1, v2); in intarith() 62 case LUA_OPBOR: return intop(|, v1, v2); in intarith() 63 case LUA_OPBXOR: return intop(^, v1, v2); in intarith() 66 case LUA_OPUNM: return intop(-, 0, v1); in intarith() 67 case LUA_OPBNOT: return intop(^, ~l_castS2U(0), v1); in intarith()
|
D | lvm.c | 720 return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */ in luaV_idiv() 772 else return intop(>>, x, -y); in luaV_shiftl() 776 else return intop(<<, x, y); in luaV_shiftl() 867 #define l_addi(L,a,b) intop(+, a, b) 868 #define l_subi(L,a,b) intop(-, a, b) 869 #define l_muli(L,a,b) intop(*, a, b) 870 #define l_band(a,b) intop(&, a, b) 871 #define l_bor(a,b) intop(|, a, b) 872 #define l_bxor(a,b) intop(^, a, b) 1492 setivalue(s2v(ra), intop(-, 0, ib)); in luaV_execute() [all …]
|
D | lvm.h | 71 #define intop(op,v1,v2) l_castU2S(l_castS2U(v1) op l_castS2U(v2)) macro
|
/external/llvm/lib/IR/ |
D | Core.cpp | 3040 AtomicRMWInst::BinOp intop; in LLVMBuildAtomicRMW() local 3042 case LLVMAtomicRMWBinOpXchg: intop = AtomicRMWInst::Xchg; break; in LLVMBuildAtomicRMW() 3043 case LLVMAtomicRMWBinOpAdd: intop = AtomicRMWInst::Add; break; in LLVMBuildAtomicRMW() 3044 case LLVMAtomicRMWBinOpSub: intop = AtomicRMWInst::Sub; break; in LLVMBuildAtomicRMW() 3045 case LLVMAtomicRMWBinOpAnd: intop = AtomicRMWInst::And; break; in LLVMBuildAtomicRMW() 3046 case LLVMAtomicRMWBinOpNand: intop = AtomicRMWInst::Nand; break; in LLVMBuildAtomicRMW() 3047 case LLVMAtomicRMWBinOpOr: intop = AtomicRMWInst::Or; break; in LLVMBuildAtomicRMW() 3048 case LLVMAtomicRMWBinOpXor: intop = AtomicRMWInst::Xor; break; in LLVMBuildAtomicRMW() 3049 case LLVMAtomicRMWBinOpMax: intop = AtomicRMWInst::Max; break; in LLVMBuildAtomicRMW() 3050 case LLVMAtomicRMWBinOpMin: intop = AtomicRMWInst::Min; break; in LLVMBuildAtomicRMW() [all …]
|
/external/llvm-project/llvm/lib/IR/ |
D | Core.cpp | 3962 AtomicRMWInst::BinOp intop = mapFromLLVMRMWBinOp(op); in LLVMBuildAtomicRMW() local 3963 return wrap(unwrap(B)->CreateAtomicRMW(intop, unwrap(PTR), unwrap(Val), in LLVMBuildAtomicRMW()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Core.cpp | 3926 AtomicRMWInst::BinOp intop = mapFromLLVMRMWBinOp(op); in LLVMBuildAtomicRMW() local 3927 return wrap(unwrap(B)->CreateAtomicRMW(intop, unwrap(PTR), unwrap(Val), in LLVMBuildAtomicRMW()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXIntrinsics.td | 6977 class PTX_READ_SREG_R64<string regname, Intrinsic intop> 6980 [(set Int64Regs:$d, (intop))]>; 6982 class PTX_READ_SREG_R32<string regname, Intrinsic intop> 6985 [(set Int32Regs:$d, (intop))]>;
|
/external/llvm-project/llvm/lib/Target/NVPTX/ |
D | NVPTXIntrinsics.td | 7257 class PTX_READ_SREG_R64<string regname, Intrinsic intop> 7260 [(set Int64Regs:$d, (intop))]>; 7262 class PTX_READ_SREG_R32<string regname, Intrinsic intop> 7265 [(set Int32Regs:$d, (intop))]>;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXIntrinsics.td | 7257 class PTX_READ_SREG_R64<string regname, Intrinsic intop> 7260 [(set Int64Regs:$d, (intop))]>; 7262 class PTX_READ_SREG_R32<string regname, Intrinsic intop> 7265 [(set Int32Regs:$d, (intop))]>;
|