Home
last modified time | relevance | path

Searched refs:opt1 (Results 1 – 14 of 14) sorted by relevance

/external/libcxx/test/std/experimental/optional/optional.object/optional.object.swap/
Dswap.pass.cpp73 optional<int> opt1; in main() local
75 static_assert(noexcept(opt1.swap(opt2)) == true, ""); in main()
76 assert(static_cast<bool>(opt1) == false); in main()
78 opt1.swap(opt2); in main()
79 assert(static_cast<bool>(opt1) == false); in main()
83 optional<int> opt1(1); in main() local
85 static_assert(noexcept(opt1.swap(opt2)) == true, ""); in main()
86 assert(static_cast<bool>(opt1) == true); in main()
87 assert(*opt1 == 1); in main()
89 opt1.swap(opt2); in main()
[all …]
/external/libcxx/test/std/experimental/optional/optional.specalg/
Dswap.pass.cpp68 optional<int> opt1; in main() local
70 static_assert(noexcept(swap(opt1, opt2)) == true, ""); in main()
71 assert(static_cast<bool>(opt1) == false); in main()
73 swap(opt1, opt2); in main()
74 assert(static_cast<bool>(opt1) == false); in main()
78 optional<int> opt1(1); in main() local
80 static_assert(noexcept(swap(opt1, opt2)) == true, ""); in main()
81 assert(static_cast<bool>(opt1) == true); in main()
82 assert(*opt1 == 1); in main()
84 swap(opt1, opt2); in main()
[all …]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.swap/
Dswap.pass.cpp71 optional<int> opt1; in main() local
73 static_assert(noexcept(opt1.swap(opt2)) == true, ""); in main()
74 assert(static_cast<bool>(opt1) == false); in main()
76 opt1.swap(opt2); in main()
77 assert(static_cast<bool>(opt1) == false); in main()
81 optional<int> opt1(1); in main() local
83 static_assert(noexcept(opt1.swap(opt2)) == true, ""); in main()
84 assert(static_cast<bool>(opt1) == true); in main()
85 assert(*opt1 == 1); in main()
87 opt1.swap(opt2); in main()
[all …]
/external/libcxx/test/std/utilities/optional/optional.specalg/
Dswap.pass.cpp117 optional<int> opt1; in main() local
119 static_assert(noexcept(swap(opt1, opt2)) == true, ""); in main()
120 assert(static_cast<bool>(opt1) == false); in main()
122 swap(opt1, opt2); in main()
123 assert(static_cast<bool>(opt1) == false); in main()
127 optional<int> opt1(1); in main() local
129 static_assert(noexcept(swap(opt1, opt2)) == true, ""); in main()
130 assert(static_cast<bool>(opt1) == true); in main()
131 assert(*opt1 == 1); in main()
133 swap(opt1, opt2); in main()
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dvariance_sse2.c317 #define DECLS(opt1, opt2) \ argument
318 DECL(4, opt1); \
319 DECL(8, opt1); \
320 DECL(16, opt1)
359 #define FNS(opt1, opt2) \ argument
360 FN(64, 64, 16, 6, 6, opt1, (int64_t), (int64_t)); \
361 FN(64, 32, 16, 6, 5, opt1, (int64_t), (int64_t)); \
362 FN(32, 64, 16, 5, 6, opt1, (int64_t), (int64_t)); \
363 FN(32, 32, 16, 5, 5, opt1, (int64_t), (int64_t)); \
364 FN(32, 16, 16, 5, 4, opt1, (int64_t), (int64_t)); \
[all …]
Dhighbd_variance_sse2.c410 #define DECLS(opt1) \ argument
411 DECL(16, opt1) \
412 DECL(8, opt1)
544 #define FNS(opt1) \ argument
545 FN(64, 64, 16, 6, 6, opt1, (int64_t)); \
546 FN(64, 32, 16, 6, 5, opt1, (int64_t)); \
547 FN(32, 64, 16, 5, 6, opt1, (int64_t)); \
548 FN(32, 32, 16, 5, 5, opt1, (int64_t)); \
549 FN(32, 16, 16, 5, 4, opt1, (int64_t)); \
550 FN(16, 32, 16, 4, 5, opt1, (int64_t)); \
[all …]
/external/llvm/utils/
Dfindoptdiff62 opt1="${bc1}.opt"
70 opt1="$llvm1/Debug/bin/opt"
78 $opt1 $switches_to_use "$bc1" -o - | $dis1 | $filt1 > "$opt1ll"
/external/swiftshader/third_party/LLVM/utils/
Dfindoptdiff62 opt1="${bc1}.opt"
70 opt1="$llvm1/Debug/bin/opt"
78 $opt1 $switches_to_use "$bc1" -o - | $dis1 | $filt1 > "$opt1ll"
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dcommon.h12 #define OPT_COLLIDING(prog, opt1, opt2) do { \ argument
15 prog, opt1, opt2); \
/external/libcxx/test/std/utilities/optional/optional.object/
Doptional_requires_destructible_object.fail.cpp30 optional<int&> opt1; in main() local
/external/libcxx/test/std/utilities/optional/optional.syn/
Doptional_nullopt_t.fail.cpp25 optional<const nullopt_t> opt1; // expected-note 1 {{requested here}} in main() local
/external/python/cpython2/Lib/test/
Dtest_optparse.py342 opt1 = self.parser.get_option("-v")
343 self.assertIsInstance(opt1, Option)
344 self.assertEqual(opt1._short_opts, ["-v", "-n"])
345 self.assertEqual(opt1._long_opts, ["--verbose", "--noisy"])
346 self.assertEqual(opt1.action, "store_true")
347 self.assertEqual(opt1.dest, "verbose")
350 opt1 = self.parser.get_option("-v")
354 self.assertTrue(opt1 is opt2 is opt3 is opt4)
/external/boringssl/src/crypto/fipsmodule/sha/asm/
Dsha1-armv4-large.pl110 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_;
124 $opt1 @ F_xx_xx
/external/python/cpython2/Lib/plat-mac/
DFrameWork.py1092 self.opt1 = CheckItem(mm, "Arguments", "A")