Home
last modified time | relevance | path

Searched refs:op_result (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/
Dfunctools.py93 op_result = self.__lt__(other)
94 if op_result is NotImplemented:
95 return op_result
96 return not op_result and self != other
100 op_result = self.__lt__(other)
101 return op_result or self == other
105 op_result = self.__lt__(other)
106 if op_result is NotImplemented:
107 return op_result
108 return not op_result
[all …]
/external/e2fsprogs/lib/ext2fs/
Dtst_bitmaps.c302 int test_result, op_result; in do_setb() local
328 op_result = ext2fs_mark_block_bitmap2(test_fs->block_map, block); in do_setb()
329 printf("Setting block %u, was %s before\n", block, op_result ? in do_setb()
331 if (!test_result != !op_result) in do_setb()
333 test_result, op_result); in do_setb()
341 int test_result, op_result; in do_clearb() local
367 op_result = ext2fs_unmark_block_bitmap2(test_fs->block_map, block); in do_clearb()
368 printf("Clearing block %u, was %s before\n", block, op_result ? in do_clearb()
370 if (!test_result != !op_result) in do_clearb()
372 test_result, op_result); in do_clearb()
[all …]
/external/libchrome/base/containers/
Dcircular_deque_unittest.cc414 circular_deque<int>::iterator op_result = ++it; in TEST() local
415 EXPECT_EQ(1, *op_result); in TEST()
418 op_result = --it; in TEST()
419 EXPECT_EQ(0, *op_result); in TEST()
426 circular_deque<int>::const_iterator op_result = ++it; in TEST() local
427 EXPECT_EQ(1, *op_result); in TEST()
430 op_result = --it; in TEST()
431 EXPECT_EQ(0, *op_result); in TEST()
438 circular_deque<int>::iterator op_result = it++; in TEST() local
439 EXPECT_EQ(0, *op_result); in TEST()
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dconst_folding_rules.cpp449 bool CompareFloatingPoint(bool op_result, bool op_unordered, in CompareFloatingPoint() argument
453 return !op_unordered && op_result; in CompareFloatingPoint()
456 return op_unordered || op_result; in CompareFloatingPoint()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dconst_folding_rules.cpp449 bool CompareFloatingPoint(bool op_result, bool op_unordered, in CompareFloatingPoint() argument
453 return !op_unordered && op_result; in CompareFloatingPoint()
456 return op_unordered || op_result; in CompareFloatingPoint()
/external/v8/src/compiler/
Dsimd-scalar-lowering.cc606 Node* op_result = nullptr; in LowerSaturateBinaryOp() local
609 op_result = graph()->NewNode(op, left, right); in LowerSaturateBinaryOp()
611 graph()->NewNode(machine()->Int32LessThan(), op_result, in LowerSaturateBinaryOp()
613 rep_node[i] = d_min.Phi(phi_rep, mcgraph_->Int32Constant(min), op_result); in LowerSaturateBinaryOp()