Home
last modified time | relevance | path

Searched refs:NEGATE (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/xla/tests/translate/
Dcase.mlir73 // CHECK: %[[NEGATE:.*]] = f32[] negate(f32[] %[[ARG]])
74 // CHECK: ROOT %[[TUPLE:.*]] = (f32[], f32[]) tuple(f32[] %[[NEGATE]], f32[] %[[NEGATE]])
/external/python/cpython2/Lib/
Dsre_constants.py59 NEGATE = "negate" variable
123 NEGATE,
Dsre_compile.py86 emit(OPCODES[NEGATE])
234 if op is NEGATE:
286 elif op is NEGATE:
Dsre_parse.py457 setappend((NEGATE, None))
501 elif _len(set)==2 and set[0][0] is NEGATE and set[1][0] is LITERAL:
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DUnaryOp.java36 NEGATE() { in NEGATE() enumConstant
/external/python/cpython3/Lib/
Dsre_compile.py113 emit(NEGATE)
254 if op is NEGATE:
313 elif op is NEGATE:
645 MAX_UNTIL, MIN_UNTIL, NEGATE):
Dsre_parse.py480 elif op is IN and av[0][0] is not NEGATE:
615 set.insert(0, (NEGATE, None))
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
DComposableFunction.java69 public static final ComposableFunction NEGATE = new ComposableFunction() { field in ComposableFunction
/external/tensorflow/tensorflow/compiler/mlir/tosa/g3doc/
Dlegalization.md2264 This operator is trivially lowered to tosa.NEGATE.
3919 This operator is trivially lowered to tosa.NEGATE
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java845 code.op(UnaryOp.NEGATE, localSource, localSource); in negateMethod()