Home
last modified time | relevance | path

Searched refs:PC (Results 126 – 150 of 18341) sorted by relevance

12345678910>>...734

/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/std/containers/associative/multimap/multimap.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::multimap m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1,1L}, {1,1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 … std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
89 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), t… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
98 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, … in main()
100 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/std/containers/associative/map/map.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::map m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1, 1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
89 …std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), test_a… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
98 … std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, 45)); in main()
100 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/containers/associative/multimap/multimap.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::multimap m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1,1L}, {1,1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 … std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
89 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), t… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
98 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, … in main()
100 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/std/containers/associative/map/map.cons/
H A Ddeduct_const.pass.cpp38 using PC = std::pair<const int, long>; typedef
72 std::map m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
75 const PC expected_m[] = { {1, 1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
80 std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
83 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
88 …std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), test_a… in main()
90 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::greater<int>, test_allocator<PC>>); in main()
91 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
97 … std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, 45)); in main()
99 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/std/containers/associative/multimap/multimap.cons/
H A Ddeduct_const.pass.cpp38 using PC = std::pair<const int, long>; typedef
72 std::multimap m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
75 const PC expected_m[] = { {1,1L}, {1,1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
80 … std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
83 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
88 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), t… in main()
90 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::greater<int>, test_allocator<PC>>); in main()
91 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
97 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, … in main()
99 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/std/containers/associative/multimap/multimap.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::multimap m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1,1L}, {1,1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 … std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
89 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), t… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
98 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, … in main()
100 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/libc++/libcxx-10.0.1.src/test/std/containers/associative/map/map.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::map m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1, 1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
89 …std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), test_a… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
98 … std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, 45)); in main()
100 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/libc++/libcxx-10.0.1.src/test/std/containers/associative/multimap/multimap.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::multimap m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1,1L}, {1,1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 … std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
89 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), t… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
98 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, … in main()
100 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/std/containers/associative/map/map.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::map m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1, 1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
89 …std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), test_a… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
98 … std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, 45)); in main()
100 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxx/test/std/containers/associative/map/map.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::map m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1, 1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
89 …std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), test_a… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
98 … std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, 45)); in main()
100 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxx/test/std/containers/associative/multimap/multimap.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::multimap m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1,1L}, {1,1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 … std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
89 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), t… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} }; in main()
98 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, … in main()
100 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/containers/associative/map/map.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::map m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1, 1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
89 …std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), test_a… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
98 … std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, 45)); in main()
100 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/std/containers/associative/multimap/multimap.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>;
73 std::multimap m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} };
76 const PC expected_m[] = { {1,1L}, {1,1L}, {2,2L}, {3,1L}, {INT_MAX,1L} };
81 … std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>());
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} };
89 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), t…
91 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::greater<int>, test_allocator<PC>>);
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1,1L}, {1,1L} };
98 …std::multimap m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, …
100 ASSERT_SAME_TYPE(decltype(m), std::multimap<int, long, std::less<int>, test_allocator<PC>>);
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/std/containers/associative/map/map.cons/
H A Ddeduct_const.pass.cpp39 using PC = std::pair<const int, long>; typedef
73 std::map m{ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }; in main()
76 const PC expected_m[] = { {1, 1L}, {2,2L}, {3,1L}, {INT_MAX,1L} }; in main()
81 std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>()); in main()
84 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
89 …std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, std::greater<int>(), test_a… in main()
91 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::greater<int>, test_allocator<PC>>); in main()
92 const PC expected_m[] = { {INT_MAX,1L}, {3,1L}, {2,2L}, {1, 1L} }; in main()
98 … std::map m({ PC{1,1L}, PC{2,2L}, PC{1,1L}, PC{INT_MAX,1L}, PC{3,1L} }, test_allocator<PC>(0, 45)); in main()
100 ASSERT_SAME_TYPE(decltype(m), std::map<int, long, std::less<int>, test_allocator<PC>>); in main()
[all …]
/dports/games/pcgen/pcgen/data/pathfinder/paizo/roleplaying_game/ultimate_equipment/_pfs/
H A Dpfs_ue_equip_general.lst8 Griffon Egg TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
9 Hippogriff Egg TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
12 Carriage.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
13 Cart.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
17 Dog Sled.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
18 Sled.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
19 Wagon.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
22 Galley.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
23 Junk.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
24 Keelboat.MOD TYPE:PFSNotLegal !PRECHARACTERTYPE:1,PC
[all …]
/dports/editors/calligra/calligra-3.2.1/plugins/stencilsdocker/stencils/Network/
H A Dpc_desktop.desktop2 Name=A Desktop PC
4 Name[bs]=Desktop PC
8 Name[de]=Desktop-PC
12 Name[et]=PC (desktop)
14 Name[fi]=Työpöytä-PC
19 Name[ja]=デスクトップ PC
21 Name[ko]=데스크톱 PC
24 Name[pl]=Desktop PC
28 Name[sk]=Desktop PC
29 Name[sl]=Namizni PC
[all …]
/dports/math/octave/octave-6.4.0/liboctave/external/odepack/
H A Dcfode.f35 DIMENSION PC(12)
45 PC(1) = 1.0D0
59 PC(NQ) = 0.0D0
62 110 PC(I) = PC(I-1) + FNQM1*PC(I)
63 PC(1) = FNQM1*PC(1)
65 PINT = PC(1)
85 200 PC(1) = 1.0D0
96 PC(NQP1) = 0.0D0
99 210 PC(I) = PC(I-1) + FNQ*PC(I)
100 PC(1) = FNQ*PC(1)
[all …]
/dports/math/slatec/src/
H A Ddcfod.f53 DIMENSION PC(12)
65 PC(1) = 1.0D0
80 PC(NQ) = 0.0D0
83 PC(I) = PC(I-1) + FNQM1*PC(I)
85 PC(1) = FNQM1*PC(1)
88 PINT = PC(1)
112 PC(1) = 1.0D0
124 PC(NQP1) = 0.0D0
127 PC(I) = PC(I-1) + FNQ*PC(I)
129 PC(1) = FNQ*PC(1)
[all …]
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/cpu/z80gb/
H A Dopc_main.h1131 PC = mem_ReadWord (Regs.w.PC);
1136 Regs.w.PC = PC;
1154 PC = Regs.w.PC;
1200 PC = mem_ReadWord (Regs.w.PC);
1205 Regs.w.PC = PC;
1216 PC = mem_ReadWord (Regs.w.PC);
1221 Regs.w.PC = PC;
1272 PC = mem_ReadWord (Regs.w.PC);
1277 Regs.w.PC = PC;
1332 PC = mem_ReadWord (Regs.w.PC);
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/cpu/i8x41/
H A D8x41dasm.c10 unsigned PC = pc; in Dasm8x41() local
15 op = cpu_readop(PC++); in Dasm8x41()
78 arg = cpu_readop_arg(PC++); in Dasm8x41()
101 arg = cpu_readop_arg(PC++); in Dasm8x41()
136 arg = cpu_readop_arg(PC++); in Dasm8x41()
165 arg = cpu_readop_arg(PC++); in Dasm8x41()
202 arg = cpu_readop_arg(PC++); in Dasm8x41()
232 arg = cpu_readop_arg(PC++); in Dasm8x41()
289 arg = cpu_readop_arg(PC++); in Dasm8x41()
532 arg = cpu_readop_arg(PC++); in Dasm8x41()
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/cpu/i8x41/
H A D8x41dasm.c10 unsigned PC = pc; in Dasm8x41() local
15 op = cpu_readop(PC++); in Dasm8x41()
78 arg = cpu_readop_arg(PC++); in Dasm8x41()
101 arg = cpu_readop_arg(PC++); in Dasm8x41()
136 arg = cpu_readop_arg(PC++); in Dasm8x41()
165 arg = cpu_readop_arg(PC++); in Dasm8x41()
202 arg = cpu_readop_arg(PC++); in Dasm8x41()
232 arg = cpu_readop_arg(PC++); in Dasm8x41()
289 arg = cpu_readop_arg(PC++); in Dasm8x41()
532 arg = cpu_readop_arg(PC++); in Dasm8x41()
[all …]
/dports/science/PETSc/petsc-3.14.1/src/ksp/pc/impls/shell/
H A Dshellpc.c12 PetscErrorCode (*destroy)(PC);
13 PetscErrorCode (*setup)(PC);
299 static PetscErrorCode PCShellSetDestroy_Shell(PC pc, PetscErrorCode (*destroy)(PC)) in PCShellSetDestroy_Shell() argument
308 static PetscErrorCode PCShellSetSetUp_Shell(PC pc, PetscErrorCode (*setup)(PC)) in PCShellSetSetUp_Shell() argument
319 static PetscErrorCode PCShellSetApply_Shell(PC pc,PetscErrorCode (*apply)(PC,Vec,Vec)) in PCShellSetApply_Shell() argument
471 PetscErrorCode PCShellSetDestroy(PC pc,PetscErrorCode (*destroy)(PC)) in PCShellSetDestroy() argument
506 PetscErrorCode PCShellSetSetUp(PC pc,PetscErrorCode (*setup)(PC)) in PCShellSetSetUp() argument
541 PetscErrorCode PCShellSetView(PC pc,PetscErrorCode (*view)(PC,PetscViewer)) in PCShellSetView() argument
576 PetscErrorCode PCShellSetApply(PC pc,PetscErrorCode (*apply)(PC,Vec,Vec)) in PCShellSetApply() argument
611 PetscErrorCode PCShellSetMatApply(PC pc,PetscErrorCode (*matapply)(PC,Mat,Mat)) in PCShellSetMatApply() argument
[all …]
/dports/lang/sdcc/sdcc-4.0.0/sim/ucsim/s51.src/
H A Djmp.cc58 PC= (PC & 0xf800) | (h*256 + l); in instruction_01()
88 PC= rom->validate_address(PC + (signed char)jaddr); in instruction_10()
137 PC= (PC & 0xf800) | (h*256 + l); in instruction_11()
178 PC= addr; in inst_lcall()
214 PC= rom->validate_address(PC + (signed char)jaddr); in instruction_20()
272 PC= rom->validate_address(PC + (signed char)jaddr); in instruction_30()
333 PC= rom->validate_address(PC + (signed char)jaddr); in instruction_40()
352 PC= rom->validate_address(PC + (signed char)jaddr); in instruction_50()
371 PC= rom->validate_address(PC + (signed char)jaddr); in instruction_60()
390 PC= rom->validate_address(PC + (signed char)jaddr); in instruction_70()
[all …]
/dports/multimedia/Bento4/Bento4-1.6.0-639/Build/Targets/arm-microsoft-wince-vs2005/
H A DBento4.sln23 Debug|Pocket PC 2003 (ARMV4) = Debug|Pocket PC 2003 (ARMV4)
25 Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
27 Release|Pocket PC 2003 (ARMV4) = Release|Pocket PC 2003 (ARMV4)
29 …Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV…
33 …{E50EACF5-30BF-46C7-B363-8735C267A702}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 20…
34 …{E50EACF5-30BF-46C7-B363-8735C267A702}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003…
35 …{E50EACF5-30BF-46C7-B363-8735C267A702}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 200…
57 …{9CF84029-330F-4C53-9ED3-863D9F8F4377}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 20…
58 …{9CF84029-330F-4C53-9ED3-863D9F8F4377}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003…
59 …{9CF84029-330F-4C53-9ED3-863D9F8F4377}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 200…
[all …]
/dports/math/cmlib/cmlib-3.0_8/src/depac/
H A Dcfod.f42 DIMENSION PC(12)
53 PC(1) = 1.0E0
67 PC(NQ) = 0.0E0
70 110 PC(I) = PC(I-1) + FNQM1*PC(I)
71 PC(1) = FNQM1*PC(1)
73 PINT = PC(1)
93 200 PC(1) = 1.0E0
104 PC(NQP1) = 0.0E0
107 210 PC(I) = PC(I-1) + FNQ*PC(I)
108 PC(1) = FNQ*PC(1)
[all …]

12345678910>>...734