Home
last modified time | relevance | path

Searched refs:to_fold (Results 1 – 25 of 41) sorted by relevance

12

/dports/devel/ppl/ppl-1.2/tests/Grid/
H A Dfoldspacedims1.cc38 to_fold.insert(A); in test01()
60 to_fold.insert(A); in test02()
108 to_fold.insert(A); in test04()
135 to_fold.insert(C); in test05()
163 to_fold.insert(A); in test06()
164 to_fold.insert(B); in test06()
192 to_fold.insert(C); in test07()
193 to_fold.insert(D); in test07()
221 to_fold.insert(B); in test08()
222 to_fold.insert(D); in test08()
[all …]
/dports/devel/ppl/ppl-1.2/tests/BD_Shape/
H A Dfoldspacedims1.cc39 to_fold.insert(A); in test01()
63 to_fold.insert(A); in test02()
119 to_fold.insert(A); in test04()
151 to_fold.insert(A); in test05()
152 to_fold.insert(B); in test05()
187 to_fold.insert(C); in test06()
188 to_fold.insert(D); in test06()
223 to_fold.insert(B); in test07()
224 to_fold.insert(D); in test07()
258 to_fold.insert(B); in test08()
[all …]
/dports/devel/ppl/ppl-1.2/tests/Box/
H A Dfoldspacedims1.cc38 Variables_Set to_fold; in test01() local
39 to_fold.insert(A); in test01()
63 to_fold.insert(A); in test02()
117 to_fold.insert(A); in test04()
149 to_fold.insert(A); in test05()
150 to_fold.insert(B); in test05()
182 to_fold.insert(C); in test06()
183 to_fold.insert(D); in test06()
214 to_fold.insert(B); in test07()
215 to_fold.insert(D); in test07()
[all …]
/dports/devel/ppl/ppl-1.2/tests/Polyhedron/
H A Dfoldspacedims1.cc40 to_fold.insert(A); in test01()
65 to_fold.insert(A); in test02()
123 to_fold.insert(A); in test04()
162 to_fold.insert(C); in test05()
196 to_fold.insert(A); in test06()
197 to_fold.insert(B); in test06()
228 to_fold.insert(C); in test07()
265 to_fold.insert(C); in test08()
266 to_fold.insert(D); in test08()
302 to_fold.insert(B); in test09()
[all …]
H A Dfoldspacedims2.cc39 Variables_Set to_fold; in test01() local
40 to_fold.insert(A); in test01()
67 Variables_Set to_fold; in test02() local
97 Variables_Set to_fold; in test03() local
98 to_fold.insert(A); in test03()
131 to_fold.insert(A); in test04()
132 to_fold.insert(B); in test04()
167 to_fold.insert(C); in test05()
168 to_fold.insert(D); in test05()
204 to_fold.insert(B); in test06()
[all …]
/dports/devel/ppl/ppl-1.2/tests/Octagonal_Shape/
H A Dfoldspacedims1.cc39 to_fold.insert(A); in test01()
63 to_fold.insert(A); in test02()
119 to_fold.insert(A); in test04()
151 to_fold.insert(A); in test05()
152 to_fold.insert(B); in test05()
187 to_fold.insert(C); in test06()
188 to_fold.insert(D); in test06()
223 to_fold.insert(B); in test07()
224 to_fold.insert(D); in test07()
258 to_fold.insert(B); in test08()
[all …]
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/chalk-ir-0.75.0/src/fold/
H A Din_place.rs185 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_no_cleanup_after_success() localVariable
187 let res: Result<_, ()> = super::fallible_map_vec(to_fold, |x| Ok(x.map_to_char())); in vec_no_cleanup_after_success()
196 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_cleanup_after_panic() localVariable
199 let _: Result<_, ()> = super::fallible_map_vec(to_fold, |x| { in vec_cleanup_after_panic()
215 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_cleanup_after_early_return() localVariable
217 let res = super::fallible_map_vec(to_fold, |x| { in vec_cleanup_after_early_return()
232 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_no_cleanup_after_success() localVariable
243 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_cleanup_after_panic() localVariable
246 let _: Result<Box<()>, ()> = super::fallible_map_box(to_fold, |_| panic!()); in box_cleanup_after_panic()
256 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_cleanup_after_early_return() localVariable
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/chalk-ir/src/fold/
H A Din_place.rs185 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_no_cleanup_after_success() localVariable
187 let res: Result<_, ()> = super::fallible_map_vec(to_fold, |x| Ok(x.map_to_char())); in vec_no_cleanup_after_success()
196 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_cleanup_after_panic() localVariable
199 let _: Result<_, ()> = super::fallible_map_vec(to_fold, |x| { in vec_cleanup_after_panic()
215 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_cleanup_after_early_return() localVariable
217 let res = super::fallible_map_vec(to_fold, |x| { in vec_cleanup_after_early_return()
232 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_no_cleanup_after_success() localVariable
243 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_cleanup_after_panic() localVariable
246 let _: Result<Box<()>, ()> = super::fallible_map_box(to_fold, |_| panic!()); in box_cleanup_after_panic()
256 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_cleanup_after_early_return() localVariable
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/chalk-ir-0.55.0/src/fold/
H A Din_place.rs185 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_no_cleanup_after_success() localVariable
187 let res: Result<_, ()> = super::fallible_map_vec(to_fold, |x| Ok(x.map_to_char())); in vec_no_cleanup_after_success()
196 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_cleanup_after_panic() localVariable
199 let _: Result<_, ()> = super::fallible_map_vec(to_fold, |x| { in vec_cleanup_after_panic()
215 let to_fold = (0u8..5).map(|i| RecordDrop::new(i, &drops)).collect(); in vec_cleanup_after_early_return() localVariable
217 let res = super::fallible_map_vec(to_fold, |x| { in vec_cleanup_after_early_return()
232 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_no_cleanup_after_success() localVariable
243 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_cleanup_after_panic() localVariable
246 let _: Result<Box<()>, ()> = super::fallible_map_box(to_fold, |_| panic!()); in box_cleanup_after_panic()
256 let to_fold = Box::new(RecordDrop::new(0, &drops)); in box_cleanup_after_early_return() localVariable
[all …]
/dports/devel/p5-MooX-Options/MooX-Options-4.103/lib/MooX/Options/Descriptive/
H A DUsage.pm121 my @to_fold;
125 push @to_fold, '';
126 push @to_fold,
144 push @to_fold, $spec, $opt->{desc};
148 while (@to_fold) {
149 my $spec = shift @to_fold;
150 my $desc = shift @to_fold;
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll16 ; CHECK: to_fold:
38 br i1 %c, label %to_fold, label %latch
40 to_fold:
44 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/llvm11/llvm-11.0.1.src/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/llvm10/llvm-10.0.1.src/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/llvm90/llvm-9.0.1.src/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/test/Transforms/LoopSimplifyCFG/
H A Dlive_block_marking.ll17 ; CHECK: to_fold:
39 br i1 %c, label %to_fold, label %latch
41 to_fold:
45 %iv = phi i32 [0, %to_fold], [%iv.next, %inner_latch]
/dports/devel/ppl/ppl-1.2/tests/Partially_Reduced_Product/
H A Dspacedims1.cc218 Variables_Set to_fold; in test07() local
219 to_fold.insert(A); in test07()
220 to_fold.insert(C); in test07()
222 prp.fold_space_dimensions(to_fold, B); in test07()
/dports/lang/perl5.30/perl-5.30.3/
H A Dregcomp.c22309 const bool to_fold, /* ? Is this under /i */ in Perl_handle_user_defined_property() argument
22499 is_utf8, to_fold, runtime, in Perl_handle_user_defined_property()
22686 const bool to_fold, /* ? Is this under /i */ in Perl_parse_uniprop_string()
22931 to_fold, in Perl_parse_uniprop_string()
23255 key = newSVpvn(((to_fold) ? "1" : "0"), 1); in Perl_parse_uniprop_string()
23400 XPUSHs(boolSV(to_fold)); in Perl_parse_uniprop_string()
23457 is_utf8, to_fold, runtime, in Perl_parse_uniprop_string()
23734 if (to_fold) { in Perl_parse_uniprop_string()

12