Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dfunctools.py91 op_result = type(self).__lt__(self, other)
92 if op_result is NotImplemented:
93 return op_result
94 return not op_result and self != other
98 op_result = type(self).__lt__(self, other)
99 if op_result is NotImplemented:
100 return op_result
101 return op_result or self == other
105 op_result = type(self).__lt__(self, other)
106 if op_result is NotImplemented:
[all …]
/third_party/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 …]
/third_party/lz4/programs/
Dlz4io.c1649 … { LZ4IO_infoResult const op_result = LZ4IO_getCompressedFileInfo(&cfinfo, inFileNames[idx]); in LZ4IO_displayCompressedFilesInfo() local
1650 if (op_result != LZ4IO_LZ4F_OK) { in LZ4IO_displayCompressedFilesInfo()
1651 assert(op_result == LZ4IO_format_not_known); in LZ4IO_displayCompressedFilesInfo()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dconst_folding_rules.cpp497 bool CompareFloatingPoint(bool op_result, bool op_unordered, in CompareFloatingPoint() argument
501 return !op_unordered && op_result; in CompareFloatingPoint()
504 return op_unordered || op_result; in CompareFloatingPoint()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dconst_folding_rules.cpp606 bool CompareFloatingPoint(bool op_result, bool op_unordered, in CompareFloatingPoint() argument
610 return !op_unordered && op_result; in CompareFloatingPoint()
613 return op_unordered || op_result; in CompareFloatingPoint()
/third_party/spirv-tools/source/opt/
Dconst_folding_rules.cpp497 bool CompareFloatingPoint(bool op_result, bool op_unordered, in CompareFloatingPoint() argument
501 return !op_unordered && op_result; in CompareFloatingPoint()
504 return op_unordered || op_result; in CompareFloatingPoint()