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

1 2 3 4 56 7 8 91011>>

  /external/v8/src/compiler/
node-properties.cc 6 #include "src/compiler/common-operator.h"
8 #include "src/compiler/js-operator.h"
11 #include "src/compiler/operator-properties.h"
12 #include "src/compiler/simplified-operator.h"
131 if (node->op()->HasProperty(Operator::kNoThrow)) return false;
145 if (node->op()->HasProperty(Operator::kNoThrow)) return node;
251 void NodeProperties::ChangeOp(Node* node, const Operator* new_op) {
320 DCHECK(!node->op()->HasProperty(Operator::kNoThrow));
324 DCHECK(!node->op()->HasProperty(Operator::kNoThrow));
488 if (!effect->op()->HasProperty(Operator::kNoWrite))
    [all...]
representation-change.cc 11 #include "src/compiler/machine-operator.h"
215 // Select the correct X -> Tagged operator.
216 const Operator* op;
308 // TODO(turbofan): Consider adding a Bailout operator that just deopts.
337 // Select the correct X -> TaggedPointer operator.
338 Operator const* op;
385 // TODO(turbofan): Consider adding a Bailout operator that just deopts
416 // Select the correct X -> Tagged operator.
417 const Operator* op;
494 // Select the correct X -> Float32 operator
    [all...]
escape-analysis-reducer.h 35 Constructor(NodeHashCache* cache, const Operator* op, int input_count,
69 bool operator()(Node* a, Node* b) const {
74 size_t operator()(Node* n) const { return NodeProperties::HashCode(n); }
graph-assembler.cc 160 Operator const* const op =
171 Operator const* const op =
267 Operator const* GraphAssembler::ToNumberOperator() {
274 0, flags, Operator::kEliminatable);
js-call-reducer.h 122 const Operator* string_access_operator, Node* node);
154 Reduction ReduceMathUnary(Node* node, const Operator* op);
155 Reduction ReduceMathBinary(Node* node, const Operator* op);
158 Reduction ReduceMathMinMax(Node* node, const Operator* op, Node* empty_value);
frame-states.cc 24 std::ostream& operator<<(std::ostream& os, OutputFrameStateCombine const& sc) {
31 bool operator==(FrameStateInfo const& lhs, FrameStateInfo const& rhs) {
38 bool operator!=(FrameStateInfo const& lhs, FrameStateInfo const& rhs) {
49 std::ostream& operator<<(std::ostream& os, FrameStateType type) {
74 std::ostream& operator<<(std::ostream& os, FrameStateInfo const& info) {
116 const Operator* op_param =
123 const Operator* op = common->FrameState(
js-context-specialization.cc 7 #include "src/compiler/common-operator.h"
9 #include "src/compiler/js-operator.h"
59 const Operator* op = jsgraph_->javascript()->LoadContext(
78 const Operator* op =
195 // or hit a node that does not have a CreateXYZContext operator.
  /build/blueprint/parser/
printer.go 116 case *Operator:
175 func (p *printer) printOperator(operator *Operator) {
176 p.printOperatorInternal(operator, true)
179 func (p *printer) printOperatorInternal(operator *Operator, allowIndent bool) {
180 p.printExpression(operator.Args[0])
182 p.printToken(string(operator.Operator), operator.OperatorPos
    [all...]
  /external/skia/tools/bookmaker/
definition.h 35 enum class Operator {
235 string fFiddle; // if its a constructor or operator, fiddle name goes here
252 Operator fOperator = Operator::kUnknown;
  /external/skqp/tools/bookmaker/
definition.h 35 enum class Operator {
235 string fFiddle; // if its a constructor or operator, fiddle name goes here
252 Operator fOperator = Operator::kUnknown;
  /external/tensorflow/tensorflow/lite/experimental/writer/
writer_lib.cc 48 Offset<Vector<Offset<Operator>>> InterpreterWriter::ExportOperators(
50 std::vector<Offset<Operator>> operators;
115 return fbb->template CreateVector<Offset<Operator>>(operators);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
CodeFragment.py 63 self.Operator = Op
  /external/clang/include/clang/Sema/
ParsedTemplate.h 163 /// FIXME: Temporarily stores the overloaded operator kind.
164 OverloadedOperatorKind Operator;