Home
last modified time | relevance | path

Searched refs:binary_op (Results 1 - 7 of 7) sorted by relevance

/third_party/gn/src/gn/
H A Dparser.cc525 std::unique_ptr<BinaryOpNode> binary_op = std::make_unique<BinaryOpNode>(); in BinaryOperator() local
526 binary_op->set_op(token); in BinaryOperator()
527 binary_op->set_left(std::move(left)); in BinaryOperator()
528 binary_op->set_right(std::move(right)); in BinaryOperator()
529 return binary_op; in BinaryOperator()
/third_party/python/Objects/
H A Dabstract.c930 binary_op(PyObject *v, PyObject *w, const int op_slot, const char *op_name) in binary_op() function
1059 return binary_op(v, w, NB_SLOT(op), op_name); \
1130 return binary_op(v, w, NB_SLOT(nb_matrix_multiply), "@"); in PyNumber_MatrixMultiply()
1136 return binary_op(v, w, NB_SLOT(nb_floor_divide), "//"); in PyNumber_FloorDivide()
1142 return binary_op(v, w, NB_SLOT(nb_true_divide), "/"); in PyNumber_TrueDivide()
1148 return binary_op(v, w, NB_SLOT(nb_remainder), "%"); in PyNumber_Remainder()
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
H A Dcontainer.h594 // predicate. Applies `binary_op` to the first N elements of `c1` and `c2`,
600 BinaryOp&& binary_op) { in c_transform()
607 *output = binary_op(*first1, *first2); in c_transform()
1687 BinaryOp&& binary_op) { in c_accumulate()
1691 std::forward<BinaryOp>(binary_op)); in c_accumulate()
598 c_transform(const InputSequence1& input1, const InputSequence2& input2, OutputIterator output, BinaryOp&& binary_op) c_transform() argument
1686 c_accumulate(const Sequence& sequence, T&& init, BinaryOp&& binary_op) c_accumulate() argument
/third_party/node/deps/v8/src/parsing/
H A Dparser.h930 BinaryOperation* binary_op, NaryOperation* nary_op) { in ConvertBinaryToNaryOperationSourceRange()
936 source_range_map_->Find(binary_op)); in ConvertBinaryToNaryOperationSourceRange()
929 ConvertBinaryToNaryOperationSourceRange( BinaryOperation* binary_op, NaryOperation* nary_op) ConvertBinaryToNaryOperationSourceRange() argument
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dfunction.cc3852 auto binary_op = ConvertBinaryOp(opcode); in MaybeEmitCombinatorialValue() local
3853 if (binary_op != ast::BinaryOp::kNone) { in MaybeEmitCombinatorialValue()
3860 auto* binary_expr = create<ast::BinaryExpression>(Source{}, binary_op, in MaybeEmitCombinatorialValue()
3915 binary_op = ast::BinaryOp::kShiftLeft; in MaybeEmitCombinatorialValue()
3919 binary_op = ast::BinaryOp::kShiftRight; in MaybeEmitCombinatorialValue()
3923 binary_op = ast::BinaryOp::kShiftRight; in MaybeEmitCombinatorialValue()
3929 ast_type, create<ast::BinaryExpression>(Source{}, binary_op, arg0.expr, in MaybeEmitCombinatorialValue()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross.cpp1782 #define binary_spec_op(op, binary_op) \ in evaluate_spec_constant_u32()
1784 value = eval_u32(spec.arguments[0]) binary_op eval_u32(spec.arguments[1]); \ in evaluate_spec_constant_u32()
1786 #define binary_spec_op_cast(op, binary_op, type) \ in evaluate_spec_constant_u32()
1788 value = uint32_t(type(eval_u32(spec.arguments[0])) binary_op type(eval_u32(spec.arguments[1]))); \ in evaluate_spec_constant_u32()
/third_party/toybox/toys/pending/
H A Dawk.c1682 // On exit: CURTOK() is infix operator (for binary_op() to handle) or next in primary()
1808 static void binary_op(int optor) // Also for ternary ?: optor. in binary_op() function
1933 binary_op(optor); in expr()

Completed in 32 milliseconds