HomeSort by relevance Sort by last modified time
    Searched refs:Operator (Results 1 - 25 of 344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/compiler/
machine-operator.h 21 class Operator;
27 OptionalOperator(bool supported, const Operator* op)
31 // Gets the operator only if it is supported.
32 const Operator* op() const {
36 // Always gets the operator, even for unsupported operators. This is useful to
37 // use the operator as a placeholder in a graph, for instance.
38 const Operator* placeholder() const { return op_; }
42 const Operator* const op_;
49 V8_EXPORT_PRIVATE LoadRepresentation LoadRepresentationOf(Operator const*)
69 V8_EXPORT_PRIVATE bool operator==(StoreRepresentation, StoreRepresentation)
    [all...]
operator-properties.h 16 class Operator;
20 static bool HasContextInput(const Operator* op);
21 static int GetContextInputCount(const Operator* op) {
25 static bool HasFrameStateInput(const Operator* op);
26 static int GetFrameStateInputCount(const Operator* op) {
30 static int GetTotalInputCount(const Operator* op);
32 static bool IsBasicBlockBegin(const Operator* op);
machine-operator.cc 5 #include "src/compiler/machine-operator.h"
9 #include "src/compiler/operator.h"
15 bool operator==(StoreRepresentation lhs, StoreRepresentation rhs) {
21 bool operator!=(StoreRepresentation lhs, StoreRepresentation rhs) {
31 std::ostream& operator<<(std::ostream& os, StoreRepresentation rep) {
37 LoadRepresentation LoadRepresentationOf(Operator const* op) {
49 StoreRepresentation const& StoreRepresentationOf(Operator const* op) {
56 Operator const* op) {
61 bool operator==(StackSlotRepresentation lhs, StackSlotRepresentation rhs) {
65 bool operator!=(StackSlotRepresentation lhs, StackSlotRepresentation rhs)
    [all...]
simplified-operator.h 11 #include "src/compiler/operator.h"
33 class Operator;
40 std::ostream& operator<<(std::ostream&, BaseTaggedness);
44 std::ostream& operator<<(std::ostream&, LoadSensitivity);
83 V8_EXPORT_PRIVATE bool operator==(FieldAccess const&, FieldAccess const&);
87 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, FieldAccess const&);
89 V8_EXPORT_PRIVATE FieldAccess const& FieldAccessOf(const Operator* op)
129 V8_EXPORT_PRIVATE bool operator==(ElementAccess const&, ElementAccess const&);
133 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, ElementAccess const&);
135 V8_EXPORT_PRIVATE ElementAccess const& ElementAccessOf(const Operator* op
    [all...]
simplified-operator.cc 5 #include "src/compiler/simplified-operator.h"
9 #include "src/compiler/operator.h"
24 std::ostream& operator<<(std::ostream& os, BaseTaggedness base_taggedness) {
34 bool operator==(FieldAccess const& lhs, FieldAccess const& rhs) {
55 std::ostream& operator<<(std::ostream& os, LoadSensitivity load_sensitivity) {
67 std::ostream& operator<<(std::ostream& os, FieldAccess const& access) {
99 bool operator==(ElementAccess const& lhs, ElementAccess const& rhs) {
117 std::ostream& operator<<(std::ostream& os, ElementAccess const& access) {
127 const FieldAccess& FieldAccessOf(const Operator* op) {
135 const ElementAccess& ElementAccessOf(const Operator* op)
    [all...]
common-operator.h 25 class Operator;
46 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, BranchHint);
57 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IsSafetyCheck);
71 std::ostream& operator<<(std::ostream&, TrapId trap_id);
73 TrapId TrapIdOf(const Operator* const op);
84 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, BranchOperatorInfo);
86 inline bool operator==(const BranchOperatorInfo& a,
92 const Operator* const) V8_WARN_UNUSED_RESULT;
93 V8_EXPORT_PRIVATE BranchHint BranchHintOf(const Operator* const)
97 int ValueInputCountOfReturn(Operator const* const op)
    [all...]
js-operator.h 27 class Operator;
46 bool operator==(CallFrequency const& that) const {
49 bool operator!=(CallFrequency const& that) const { return !(*this == that); }
59 std::ostream& operator<<(std::ostream&, CallFrequency);
61 CallFrequency CallFrequencyOf(Operator const* op) V8_WARN_UNUSED_RESULT;
74 bool operator==(ConstructForwardVarargsParameters const& that) const {
77 bool operator!=(ConstructForwardVarargsParameters const& that) const {
92 std::ostream& operator<<(std::ostream&,
96 Operator const*) V8_WARN_UNUSED_RESULT;
116 bool operator==(ConstructParameters const&, ConstructParameters const&)
    [all...]
js-operator.cc 5 #include "src/compiler/js-operator.h"
11 #include "src/compiler/operator.h"
20 std::ostream& operator<<(std::ostream& os, CallFrequency f) {
25 CallFrequency CallFrequencyOf(Operator const* op) {
32 std::ostream& operator<<(std::ostream& os,
38 Operator const* op) {
43 bool operator==(ConstructParameters const& lhs,
49 bool operator!=(ConstructParameters const& lhs,
58 std::ostream& operator<<(std::ostream& os, ConstructParameters const& p) {
62 ConstructParameters const& ConstructParametersOf(Operator const* op)
    [all...]
common-operator.cc 5 #include "src/compiler/common-operator.h"
12 #include "src/compiler/operator.h"
20 std::ostream& operator<<(std::ostream& os, BranchHint hint) {
32 std::ostream& operator<<(std::ostream& os, IsSafetyCheck is_safety_check) {
44 std::ostream& operator<<(std::ostream& os, TrapId trap_id) {
57 TrapId TrapIdOf(const Operator* const op) {
63 std::ostream& operator<<(std::ostream& os, BranchOperatorInfo info) {
67 const BranchOperatorInfo& BranchOperatorInfoOf(const Operator* const op) {
72 BranchHint BranchHintOf(const Operator* const op) {
76 int ValueInputCountOfReturn(Operator const* const op)
    [all...]
operator.cc 5 #include "src/compiler/operator.h"
17 // The getters on Operator for input and output counts currently return int.
27 Operator::Operator(Opcode opcode, Properties properties, const char* mnemonic,
40 std::ostream& operator<<(std::ostream& os, const Operator& op) {
45 void Operator::PrintToImpl(std::ostream& os, PrintVerbosity verbose) const {
49 void Operator::PrintPropsTo(std::ostream& os) const {
53 if (HasProperty(Operator::k##name)) { \
  /external/clang/test/CodeGenCXX/
2003-11-18-PtrMemConstantInitializer.cpp 7 struct Operator {
11 Operator opTab[] = {
  /external/deqp/modules/gles2/scripts/
gen-reserved_operators.py 55 if op.operator == "~":
58 self.operation = 'value ' + op.operator + ' 1;'
68 class Operator():
69 def __init__(self, operator, name):
70 self.operator = operator
76 Operator("%", "modulo"),
77 Operator("~", "bitwise_not"),
78 Operator("<<", "bitwise_shift_left"),
79 Operator(">>", "bitwise_shift_right")
    [all...]
  /external/tensorflow/tensorflow/java/src/test/resources/org/tensorflow/processor/operator/bad/
BasicBad.java 16 package org.tensorflow.processor.operator.bad;
18 import org.tensorflow.op.annotation.Operator;
21 @Operator int foo;
  /external/tensorflow/tensorflow/java/src/test/resources/org/tensorflow/processor/operator/good/
BasicGood.java 16 package org.tensorflow.processor.operator.good;
18 import org.tensorflow.op.annotation.Operator;
20 @Operator
  /external/tensorflow/tensorflow/lite/toco/
model.h 348 bool operator==(const Shape& comp) const {
352 bool operator!=(const Shape& comp) const { return !((*this) == comp); }
358 // Base class for all operator classes.
359 struct Operator {
362 Operator() = delete;
363 // Non-copyable-or-movable: we should only store pointers-to-Operator
366 Operator(const Operator&) = delete;
367 Operator(const Operator&&) = delete
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Dependency/
Dependency.h 29 VOID *Operator;
  /external/tensorflow/tensorflow/lite/toco/tflite/
simple_operator.h 18 #include "tensorflow/lite/toco/tflite/operator.h"
30 // Template argument T must derive from ::toco::Operator.
35 Options Serialize(const Operator& op,
39 std::unique_ptr<Operator> Deserialize(
42 return std::unique_ptr<Operator>(new T);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/expr/
AssignExprTest.java 10 assertEquals(BinaryExpr.Operator.PLUS, AssignExpr.Operator.PLUS.toBinaryOperator().get());
BinaryExprTest.java 10 assertEquals(AssignExpr.Operator.PLUS, BinaryExpr.Operator.PLUS.toAssignOperator().get());
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-lift.hpp 11 \tparam Operator the type of the operator.
50 template<class ResultType, class SourceOperator, class Operator>
55 typedef rxu::decay_t<Operator> operator_type;
60 template<class ResultType, class SourceOperator, class Operator>
61 struct lift_operator : public operator_base<typename lift_traits<ResultType, SourceOperator, Operator>::result_value_type>
63 typedef lift_traits<ResultType, SourceOperator, Operator> traits;
83 template<class ResultType, class Operator>
86 typedef rxu::decay_t<Operator> operator_type;
91 auto operator()(const Observable& source
    [all...]
  /external/clang/include/clang/Basic/
OperatorKinds.h 23 OO_None, ///< Not an overloaded operator
30 /// \brief Retrieve the spelling of the given overloaded operator, without
31 /// the preceding "operator" keyword.
32 const char *getOperatorSpelling(OverloadedOperatorKind Operator);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
AssignExpr.java 33 public enum Operator {
52 private Operator op;
57 public AssignExpr(Expression target, Expression value, Operator op) {
63 public AssignExpr(Range range, Expression target, Expression value, Operator op) {
80 public Operator getOperator() {
92 public AssignExpr setOperator(Operator op) {
UnaryExpr.java 33 public enum Operator {
46 private Operator op;
51 public UnaryExpr(final Expression expr, final Operator op) {
56 public UnaryExpr(final Range range, final Expression expr, final Operator op) {
74 public Operator getOperator() {
84 public UnaryExpr setOperator(final Operator op) {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
AssignExpr.java 32 public static enum Operator {
51 private Operator op;
56 public AssignExpr(Expression target, Expression value, Operator op) {
62 public AssignExpr(int beginLine, int beginColumn, int endLine, int endColumn, Expression target, Expression value, Operator op) {
79 public Operator getOperator() {
91 public void setOperator(Operator op) {
UnaryExpr.java 32 public static enum Operator {
45 private Operator op;
50 public UnaryExpr(final Expression expr, final Operator op) {
56 final Expression expr, final Operator op) {
74 public Operator getOperator() {
83 public void setOperator(final Operator op) {

Completed in 482 milliseconds

1 2 3 4 5 6 7 8 91011>>