Home
last modified time | relevance | path

Searched refs:cx (Results 15401 – 15425 of 96822) sorted by relevance

1...<<611612613614615616617618619620>>...3873

/dports/lang/gcc10-devel/gcc-10-20211008/libstdc++-v3/testsuite/25_algorithms/remove_copy_if/
H A Dconstrained.cc72 test_container<X, forward_iterator_wrapper> cx(x), cy(y), cz(z); in test01() local
73 auto [in, out] = ranges::remove_copy_if(cx, cy.begin(), is_two_p, &X::i); in test01()
74 VERIFY( in == cx.end() && out == cy.end() ); in test01()
82 test_range<X, input_iterator_wrapper> cx(x); in test01() local
84 auto [in, out] = ranges::remove_copy_if(cx, cy.begin(), is_two_p, &X::i); in test01()
85 VERIFY( in == cx.end() && out == cy.end() ); in test01()
/dports/lang/gcc10-devel/gcc-10-20211008/libstdc++-v3/testsuite/25_algorithms/remove_copy/
H A Dconstrained.cc69 test_container<X, forward_iterator_wrapper> cx(x), cy(y), cz(z); in test01() local
70 auto [in, out] = ranges::remove_copy(cx, cy.begin(), 2, &X::i); in test01()
71 VERIFY( in == cx.end() && out == cy.end() ); in test01()
79 test_range<X, input_iterator_wrapper> cx(x); in test01() local
81 auto [in, out] = ranges::remove_copy(cx, cy.begin(), 2, &X::i); in test01()
82 VERIFY( in == cx.end() && out == cy.end() ); in test01()
/dports/lang/gcc10-devel/gcc-10-20211008/libstdc++-v3/testsuite/25_algorithms/replace_copy/
H A Dconstrained.cc69 test_container<X, forward_iterator_wrapper> cx(x), cy(y), cz(z); in test01() local
70 auto [in, out] = ranges::replace_copy(cx, cy.begin(), 2, X{7}, &X::i); in test01()
71 VERIFY( in == cx.end() && out == cy.end() ); in test01()
79 test_range<X, input_iterator_wrapper> cx(x); in test01() local
81 auto [in, out] = ranges::replace_copy(cx, cy.begin(), 2, X{7}, &X::i); in test01()
82 VERIFY( in == cx.end() && out == cy.end() ); in test01()
/dports/net/oha/oha-0.4.7/cargo-crates/tokio-1.12.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/tools/llvm-mca/X86/BdVer2/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 1 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 5 1.50 * movbew (%rax), %cx
60 … - - - - - - - - - - 1.00 movbew %cx, (%rax)
61 … - - - - - - - 1.50 1.50 - - movbew (%rax), %cx
/dports/www/zola/zola-0.15.2/cargo-crates/tokio-1.14.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/devel/p5-true/true-v1.0.2/
H A Dtrue.xs18 #define CxOLD_OP_TYPE(cx) (cx->blk_eval.old_op_type) argument
94 const PERL_CONTEXT * cx = CX_CUR(); in true_leaveeval() local
100 bool enabled = (CxOLD_OP_TYPE(cx) == OP_REQUIRE) && true_enabled(aTHX_ filename); in true_leaveeval()
122 if (cx->blk_gimme == G_SCALAR) { in true_leaveeval()
125 oldsp = PL_stack_base + cx->blk_oldsp; in true_leaveeval()
/dports/www/xh/xh-0.14.1/cargo-crates/tokio-1.11.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/textproc/mdbook/mdBook-0.4.13/cargo-crates/tokio-1.10.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/tokio-1.13.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthDrivers/kml/
H A DKML_Container31 virtual void scan( xml_node<>* node, KMLContext& cx )
33 KML_Feature::scan(node, cx);
36 virtual void scan2( xml_node<>* node, KMLContext& cx )
38 KML_Feature::scan2(node, cx);
41 virtual void build( xml_node<>* node, KMLContext& cx, osg::Node* working )
45 KML_Feature::build(node, cx, working);
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/tokio-1.12.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libstdc++-v3/testsuite/25_algorithms/remove_copy/
H A Dconstrained.cc69 test_container<X, forward_iterator_wrapper> cx(x), cy(y), cz(z); in test01() local
70 auto [in, out] = ranges::remove_copy(cx, cy.begin(), 2, &X::i); in test01()
71 VERIFY( in == cx.end() && out == cy.end() ); in test01()
79 test_range<X, input_iterator_wrapper> cx(x); in test01() local
81 auto [in, out] = ranges::remove_copy(cx, cy.begin(), 2, &X::i); in test01()
82 VERIFY( in == cx.end() && out == cy.end() ); in test01()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/tools/llvm-mca/X86/Znver3/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 2 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 4 1.00 * movbew (%rax), %cx
60 … - - - 0.33 0.33 0.33 - - - 0.50 0.50 movbew %cx, (%rax)
61 … - - - 0.33 0.33 0.33 0.33 0.33 0.33 - - movbew (%rax), %cx
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/tools/llvm-mca/X86/BdVer2/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 1 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 5 1.50 * movbew (%rax), %cx
60 … - - - - - - - - - - 1.00 movbew %cx, (%rax)
61 … - - - - - - - 1.50 1.50 - - movbew (%rax), %cx
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/tokio-1.14.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/tools/llvm-mca/X86/BdVer2/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 1 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 5 1.50 * movbew (%rax), %cx
60 … - - - - - - - - - - 1.00 movbew %cx, (%rax)
61 … - - - - - - - 1.50 1.50 - - movbew (%rax), %cx
/dports/devel/llvm80/llvm-8.0.1.src/test/tools/llvm-mca/X86/BdVer2/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 1 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 5 0.50 * movbew (%rax), %cx
60 … - - - - - - - - - - 1.00 movbew %cx, (%rax)
61 … - - - - - - - 0.50 0.50 - - movbew (%rax), %cx
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/tools/llvm-mca/X86/Znver3/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 2 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 4 1.00 * movbew (%rax), %cx
60 … - - - 0.33 0.33 0.33 - - - 0.50 0.50 movbew %cx, (%rax)
61 … - - - 0.33 0.33 0.33 0.33 0.33 0.33 - - movbew (%rax), %cx
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/tools/llvm-mca/X86/BdVer2/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 1 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 5 1.50 * movbew (%rax), %cx
60 … - - - - - - - - - - 1.00 movbew %cx, (%rax)
61 … - - - - - - - 1.50 1.50 - - movbew (%rax), %cx
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/test/tools/llvm-mca/X86/BdVer2/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 1 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 5 1.50 * movbew (%rax), %cx
60 … - - - - - - - - - - 1.00 movbew %cx, (%rax)
61 … - - - - - - - 1.50 1.50 - - movbew (%rax), %cx
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/test/tools/llvm-mca/X86/Znver3/
H A Dresources-movbe.s4 movbe %cx, (%rax)
5 movbe (%rax), %cx
22 # CHECK-NEXT: 2 1 1.00 * movbew %cx, (%rax)
23 # CHECK-NEXT: 1 4 1.00 * movbew (%rax), %cx
60 … - - - 0.33 0.33 0.33 - - - 0.50 0.50 movbew %cx, (%rax)
61 … - - - 0.33 0.33 0.33 0.33 0.33 0.33 - - movbew (%rax), %cx
/dports/www/grafana8/grafana-8.3.6/packages/grafana-ui/src/components/Logs/
H A DLogLabels.tsx2 import { css, cx } from '@emotion/css';
50 <span className={cx([styles.logsLabels])}>
51 <span className={cx([styles.logsLabel])}>(no unique labels)</span>
57 <span className={cx([styles.logsLabels])}>
65 <span key={label} className={cx([styles.logsLabel])}>
66 <span className={cx([styles.logsLabelValue])} title={tooltip}>
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/tokio-1.11.0/src/io/util/
H A Dcopy_bidirectional.rs24 cx: &mut Context<'_>, in transfer_one_direction()
39 let count = ready!(buf.poll_copy(cx, r.as_mut(), w.as_mut()))?; in transfer_one_direction()
43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
59 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
68 let a_to_b = transfer_one_direction(cx, a_to_b, &mut *a, &mut *b)?; in poll()
69 let b_to_a = transfer_one_direction(cx, b_to_a, &mut *b, &mut *a)?; in poll()
/dports/www/monolith/monolith-2.6.1/cargo-crates/tokio-1.8.0/src/io/util/
H A Dcopy.rs30 cx: &mut Context<'_>, in poll_copy()
44 ready!(reader.as_mut().poll_read(cx, &mut buf))?; in poll_copy()
57 let i = ready!(writer.as_mut().poll_write(cx, &me.buf[me.pos..me.cap]))?; in poll_copy()
72 ready!(writer.as_mut().poll_flush(cx))?; in poll_copy()
143 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<u64>> { in poll()
147 .poll_copy(cx, Pin::new(&mut *me.reader), Pin::new(&mut *me.writer)) in poll()

1...<<611612613614615616617618619620>>...3873