/prebuilts/misc/common/swig/include/2.0.11/ruby/ |
rubyclasses.swg | 254 GC_VALUE binary_op(const GC_VALUE& other, const ID& op_id) const 269 GC_VALUE operator+(const GC_VALUE& other) const { return binary_op(other, add_id); } 270 GC_VALUE operator-(const GC_VALUE& other) const { return binary_op(other, sub_id); } 271 GC_VALUE operator*(const GC_VALUE& other) const { return binary_op(other, mul_id); } 272 GC_VALUE operator/(const GC_VALUE& other) const { return binary_op(other, div_id); } 273 GC_VALUE operator%(const GC_VALUE& other) const { return binary_op(other, mod_id); } 274 GC_VALUE operator&(const GC_VALUE& other) const { return binary_op(other, and_id); } 275 GC_VALUE operator^(const GC_VALUE& other) const { return binary_op(other, xor_id); } 276 GC_VALUE operator|(const GC_VALUE& other) const { return binary_op(other, or_id); } 277 GC_VALUE operator<<(const GC_VALUE& other) const { return binary_op(other, lshift_id); [all...] |
/external/libcxx/include/ |
numeric | 26 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op); 43 partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op); 51 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
numeric | 26 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op); 43 partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op); 51 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
|
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
numeric | 26 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op); 43 partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op); 51 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
|
/external/libcxx/test/std/numerics/numeric.ops/accumulate/ |
accumulate_op.pass.cpp | 17 // accumulate(Iter first, Iter last, T init, BinaryOperation binary_op);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/accumulate/ |
accumulate_op.pass.cpp | 17 // accumulate(Iter first, Iter last, T init, BinaryOperation binary_op);
|
/external/libcxx/test/std/numerics/numeric.ops/adjacent.difference/ |
adjacent_difference_op.pass.cpp | 20 // adjacent_difference(InIter first, InIter last, OutIter result, BinaryOperation binary_op);
|
/external/libcxx/test/std/numerics/numeric.ops/partial.sum/ |
partial_sum_op.pass.cpp | 19 // partial_sum(InIter first, InIter last, OutIter result, BinaryOperation binary_op);
|
/external/opencv3/modules/cudev/include/opencv2/ |
cudev.hpp | 102 #include "cudev/expr/binary_op.hpp"
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/adjacent.difference/ |
adjacent_difference_op.pass.cpp | 20 // adjacent_difference(InIter first, InIter last, OutIter result, BinaryOperation binary_op);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/partial.sum/ |
partial_sum_op.pass.cpp | 19 // partial_sum(InIter first, InIter last, OutIter result, BinaryOperation binary_op);
|
/external/opencv3/modules/photo/src/ |
denoise_tvl1.cpp | 64 OutputIterator result, BinaryOperator binary_op) 68 *result = binary_op(*first1, *first2);
|
/external/opencv3/modules/core/src/opencl/ |
arithm.cl | 52 1) one of "-D BINARY_OP", "-D UNARY_OP", "-D MASK_BINARY_OP" or "-D MASK_UNARY_OP" 400 #if defined BINARY_OP
|
/external/v8/test/cctest/ |
test-javascript-arm64.cc | 115 TEST(binary_op) {
|
test-deoptimization.cc | 489 const char* binary_op) { 494 binary_op);
|
/external/libchrome/base/test/ |
trace_event_analyzer.cc | 615 Query::Query(const Query& left, const Query& right, Operator binary_op) 616 : operator_(binary_op), 621 type_ = (binary_op < OP_ADD ?
|
trace_event_analyzer.h | 489 // Construct a boolean Query that returns (left <binary_op> right). 490 Query(const Query& left, const Query& right, Operator binary_op); 492 // Construct a boolean Query that returns (<binary_op> left).
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/ |
binary_transform.pass.cpp | 16 // transform(InIter1 first1, InIter1 last1, InIter2 first2, OutIter result, BinaryOp binary_op);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.transform/ |
binary_transform.pass.cpp | 16 // transform(InIter1 first1, InIter1 last1, InIter2 first2, OutIter result, BinaryOp binary_op);
|
/external/opencv3/modules/core/src/ |
arithm.cpp | 1513 static void binary_op( InputArray _src1, InputArray _src2, OutputArray _dst, function in namespace:cv [all...] |
mathfuncs.cpp | 77 format("-D %s -D %s -D dstT=%s -D rowsPerWI=%d%s", _src2.empty() ? "UNARY_OP" : "BINARY_OP", 313 format("-D BINARY_OP -D dstT=%s -D depth=%d -D rowsPerWI=%d -D OP_CTP_%s%s", 597 format("-D dstT=%s -D rowsPerWI=%d -D depth=%d -D BINARY_OP -D OP_PTC_%s%s", [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
elflink.c | [all...] |
/external/v8/src/ast/ |
ast.cc | 173 Token::Value Assignment::binary_op() const { function in class:v8::internal::Assignment
|
ast.h | 2254 Token::Value binary_op() { function in class:v8::internal::final [all...] |
/external/v8/src/interpreter/ |
bytecode-generator.cc | [all...] |