HomeSort by relevance Sort by last modified time
    Searched refs:kCommutative (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/v8/src/compiler/
machine-operator.cc 61 V(Word32And, Operator::kAssociative | Operator::kCommutative, 2, 1) \
62 V(Word32Or, Operator::kAssociative | Operator::kCommutative, 2, 1) \
63 V(Word32Xor, Operator::kAssociative | Operator::kCommutative, 2, 1) \
68 V(Word32Equal, Operator::kCommutative, 2, 1) \
69 V(Word64And, Operator::kAssociative | Operator::kCommutative, 2, 1) \
70 V(Word64Or, Operator::kAssociative | Operator::kCommutative, 2, 1) \
71 V(Word64Xor, Operator::kAssociative | Operator::kCommutative, 2, 1) \
76 V(Word64Equal, Operator::kCommutative, 2, 1) \
77 V(Int32Add, Operator::kAssociative | Operator::kCommutative, 2, 1) \
78 V(Int32AddWithOverflow, Operator::kAssociative | Operator::kCommutative, 2,
    [all...]
simplified-operator.cc 101 V(NumberEqual, Operator::kCommutative, 2) \
104 V(NumberAdd, Operator::kCommutative, 2) \
106 V(NumberMultiply, Operator::kCommutative, 2) \
111 V(StringEqual, Operator::kCommutative, 2) \
162 Operator::kCommutative | Operator::kPure,
simplified-operator-unittest.cc 48 PURE(NumberEqual, Operator::kCommutative, 2),
51 PURE(NumberAdd, Operator::kCommutative, 2),
53 PURE(NumberMultiply, Operator::kCommutative, 2),
58 PURE(StringEqual, Operator::kCommutative, 2),
node-matchers.h 114 if (HasProperty(Operator::kCommutative)) PutConstantOnRight();
operator.h 37 kCommutative = 1 << 1, // OP(a, b) == OP(b, a) for all inputs.
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
weight.h 95 const uint64 kCommutative = 0x0000000000000004ULL;
prune.h 61 if ((Weight::Properties() & (kPath | kCommutative))
62 != (kPath | kCommutative))
147 if ((Weight::Properties() & (kPath | kCommutative))
148 != (kPath | kCommutative))
float-weight.h 147 return kLeftSemiring | kRightSemiring | kCommutative |
213 return kLeftSemiring | kRightSemiring | kCommutative;
product-weight.h 92 kCommutative | kIdempotent);
compose.h 781 if (!(Weight::Properties() & kCommutative)) {
    [all...]
  /external/openfst/src/include/fst/
weight.h 103 const uint64 kCommutative = 0x0000000000000004ULL;
prune.h 105 if ((Weight::Properties() & (kPath | kCommutative))
106 != (kPath | kCommutative)) {
223 if ((Weight::Properties() & (kPath | kCommutative))
224 != (kPath | kCommutative)) {
expectation-weight.h 112 kCommutative | kIdempotent);
lexicographic-weight.h 116 kIdempotent | kCommutative);
product-weight.h 77 kCommutative | kIdempotent);
float-weight.h 233 return kLeftSemiring | kRightSemiring | kCommutative |
358 return kLeftSemiring | kRightSemiring | kCommutative;
494 return kLeftSemiring | kRightSemiring | kCommutative | kIdempotent | kPath;
power-weight.h 84 kCommutative | kIdempotent);
sparse-power-weight.h 136 kCommutative | kIdempotent);
signed-log-weight.h 91 return kLeftSemiring | kRightSemiring | kCommutative;
compose.h 566 if (!(Weight::Properties() & kCommutative)) {
  /external/openfst/src/test/
weight-tester.h 90 if (Weight::Properties() & kCommutative)
124 if (Weight::Properties() & kCommutative)
148 if (Weight::Properties() & kCommutative) {
algo_test.h 454 if (!(Weight::Properties() & kCommutative))
722 if ((wprops & (kPath | kCommutative)) == (kPath | kCommutative)) {
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-machine-operator-reducer.cc 166 // TODO(titzer): CHECK(binop->HasProperty(Operator::kCommutative));
191 CHECK(!binop->HasProperty(Operator::kCommutative));

Completed in 958 milliseconds