Home
last modified time | relevance | path

Searched defs:BinaryOp (Results 1 – 20 of 20) sorted by relevance

/third_party/rust/rust/src/tools/clippy/clippy_lints/src/
Dsuspicious_operation_groupings.rs349 struct BinaryOp<'exprs> { struct
356 impl<'exprs> BinaryOp<'exprs> { argument
Dmanual_clamp.rs545 struct BinaryOp<'tcx> { struct
551 impl<'tcx> BinaryOp<'tcx> { argument
/third_party/rust/rust/src/tools/rust-analyzer/crates/syntax/src/ast/
Doperators.rs26 pub enum BinaryOp { enum
107 impl fmt::Display for BinaryOp { implementation
Dexpr_ext.rs151 pub fn op_details(&self) -> Option<(SyntaxToken, BinaryOp)> { in op_details() argument
194 pub fn op_kind(&self) -> Option<BinaryOp> { in op_kind()
Dmake.rs507 pub fn expr_bin_op(lhs: ast::Expr, op: ast::BinaryOp, rhs: ast::Expr) -> ast::Expr { in expr_bin_op()
/third_party/skia/third_party/externals/tint/src/ast/
Dbinary_expression.h24 enum class BinaryOp { enum
/third_party/rust/rust/compiler/rustc_codegen_gcc/src/
Dint.rs152 …fn additive_operation(&self, operation: BinaryOp, a: RValue<'gcc>, mut b: RValue<'gcc>) -> RValue<… in additive_operation()
197 …fn multiplicative_operation(&self, operation: BinaryOp, operation_name: &str, signed: bool, a: RVa… in multiplicative_operation()
602 …fn bitwise_operation(&self, operation: BinaryOp, a: RValue<'gcc>, mut b: RValue<'gcc>) -> RValue<'… in bitwise_operation()
/third_party/vk-gl-cts/framework/randomshaders/
DrsgBinaryOps.hpp41 class BinaryOp : public Expression class
DrsgBinaryOps.cpp197 BinaryOp<Precedence, Assoc>::BinaryOp (Token::Type operatorToken) in BinaryOp() function in rsg::BinaryOp
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/
Darithmetic_logic_cpu_kernel.cc222 void ArithLogicCpuTypeFunc<T>::BinaryOp(const T *input1, const T *input2, bool *out, Op op) { in BinaryOp() function in mindspore::kernel::__anonc7e8b62c0111::ArithLogicCpuTypeFunc
270 void ArithComplexLogicCpuTypeFunc<T>::BinaryOp(const T *input1, const T *input2, bool *out, Op op) { in BinaryOp() function in mindspore::kernel::__anonc7e8b62c0111::ArithComplexLogicCpuTypeFunc
/third_party/rust/crates/regex/regex-syntax/src/ast/
Dvisitor.rs198 BinaryOp(&'a ast::ClassSetBinaryOp), enumerator
Dmod.rs927 BinaryOp(ClassSetBinaryOp), enumerator
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-def/src/
Dhir.rs260 BinaryOp { enumerator
/third_party/gn/src/gn/
Dparser_unittest.cc98 TEST(Parser, BinaryOp) { in TEST() argument
/third_party/rust/rust/compiler/rustc_middle/src/mir/
Dsyntax.rs1164 BinaryOp(BinOp, Box<(Operand<'tcx>, Operand<'tcx>)>), enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DScalarEvolution.cpp4477 struct BinaryOp { struct
4478 unsigned Opcode;
4479 Value *LHS;
4480 Value *RHS;
4481 bool IsNSW = false;
4482 bool IsNUW = false;
4486 Operator *Op = nullptr;
4488 explicit BinaryOp(Operator *Op) in BinaryOp() argument
4497 explicit BinaryOp(unsigned Opcode, Value *LHS, Value *RHS, bool IsNSW = false, in BinaryOp() argument
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-ty/src/infer/
Dexpr.rs1183 op: BinaryOp, in infer_overloadable_binop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp4469 static bool isNeutralValue(Instruction::BinaryOps BinaryOp, Value *RHS) { in isNeutralValue()
4482 Instruction::BinaryOps BinaryOp, bool IsSigned, in computeOverflow()
4506 Instruction::BinaryOps BinaryOp, bool IsSigned, Value *LHS, Value *RHS, in OptimizeOverflowCheck()
DInstCombineCalls.cpp1537 Optional<Instruction::BinaryOps> BinaryOp; in SimplifyNVVMIntrinsic() member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
DRecord.h803 enum BinaryOp : uint8_t { ADD, MUL, AND, OR, SHL, SRA, SRL, LISTCONCAT, enum