Home
last modified time | relevance | path

Searched refs:cell_a (Results 1 – 25 of 48) sorted by relevance

12

/dports/math/dieharder/dieharder-3.31.1/libdieharder/
H A Drng_ca.c86 unsigned char * cell_a; in ca_get() local
93 cell_a = cell_b - 1; in ca_get()
98 *cell_b = rule[*cell_a + *cell_b]; in ca_get()
104 if (cell_a == first_cell) { in ca_get()
105 *cell_a = rule[*cell_a]; in ca_get()
107 return( *((unsigned int *)cell_a) ); in ca_get()
109 *cell_a = rule[*(cell_a - 1) + *cell_a]; in ca_get()
111 return( *((unsigned int *)cell_a) ); in ca_get()
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/unagi-chan-0.4.1.3/src/Control/Concurrent/Chan/Unagi/
H A DInternal.hs65 data ChanEnd cell_a =
67 ChanEnd !(SegSource cell_a)
80 data StreamHead cell_a = StreamHead !Int !(Stream cell_a)
84 type StreamSegment cell_a = P.MutableArray RealWorld cell_a
102 data Stream cell_a =
103 Stream !(StreamSegment cell_a)
109 data NextSegment cell_a = NoSegment | Next !(Stream cell_a)
270 moveToNextCell :: ChanEnd cell_a -> IO (Int, Stream cell_a, IO ())
323 waitingAdvanceStream :: IORef (NextSegment cell_a) -> SegSource cell_a
347 type SegSource cell_a = IO (StreamSegment cell_a)
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/nll/closure-requirements/
H A Dpropagate-approximated-shorter-to-static-no-bound.stderr4 LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
26 LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
27 LL | | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
40 LL | fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
41 | -- ------ `cell_a` is a reference that is only valid in the function body
44 LL | / establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
52 | |______`cell_a` escapes the function body here
H A Dpropagate-approximated-shorter-to-static-comparing-against-free.stderr4 LL | foo(cell, |cell_a, cell_x| {
6 LL | | cell_a.set(cell_x.get()); // forces 'x: 'a, error in closure
20 LL | foo(cell, |cell_a, cell_x| {
23 | `cell_a` declared here, outside of the closure body
24 LL | cell_a.set(cell_x.get()); // forces 'x: 'a, error in closure
33 LL | | foo(cell, |cell_a, cell_x| {
44 LL | foo(cell, |cell_a, cell_x| {
46 LL | | cell_x.set(cell_a.get()); // forces 'a: 'x, implies 'a = 'static -> borrow error
H A Dpropagate-approximated-shorter-to-static-comparing-against-free.rs21 foo(cell, |cell_a, cell_x| { in case1()
22 cell_a.set(cell_x.get()); // forces 'x: 'a, error in closure in case1()
35 foo(cell, |cell_a, cell_x| { in case2()
36 cell_x.set(cell_a.get()); // forces 'a: 'x, implies 'a = 'static -> borrow error in case2()
H A Dpropagate-approximated-shorter-to-static-wrong-bound.stderr4 LL | establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
26 LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
27 LL | | establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
40 LL | fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
41 | -- ------ `cell_a` is a reference that is only valid in the function body
44 LL | / establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
52 | |______`cell_a` escapes the function body here
H A Dpropagate-approximated-val.stderr4 LL | establish_relationships(cell_a, cell_b, |outlives1, outlives2, x, y| {
25 LL | / fn test<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
26 LL | | establish_relationships(cell_a, cell_b, |outlives1, outlives2, x, y| {
39 LL | fn test<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
H A Dpropagate-fail-to-approximate-longer-no-bounds.stderr4 LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
23 LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
34 LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
35 LL | | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
H A Dpropagate-approximated-ref.stderr4 LL | establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
25 LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
26 LL | | establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
39 LL | fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
H A Dpropagate-fail-to-approximate-longer-wrong-bounds.stderr4 LL | establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
23 LL | establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
34 LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
35 LL | | establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
H A Dpropagate-despite-same-free-region.rs39 fn supply<'a>(cell_a: Cell<&'a u32>) { in supply()
41 cell_a, in supply()
H A Dpropagate-approximated-shorter-to-static-no-bound.rs31 fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) { in supply()
32 establish_relationships(&cell_a, &cell_b, |_outlives, x, y| { in supply()
H A Dpropagate-fail-to-approximate-longer-no-bounds.rs34 fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) { in supply()
35 establish_relationships(&cell_a, &cell_b, |_outlives, x, y| { in supply()
H A Dpropagate-approximated-shorter-to-static-wrong-bound.rs34 fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) { in supply()
35 establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| { in supply()
H A Dpropagate-approximated-val.rs35 fn test<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) { in test()
36 establish_relationships(cell_a, cell_b, |outlives1, outlives2, x, y| { in test()
H A Dpropagate-approximated-ref.rs42 fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) { in supply()
43 establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| { in supply()
H A Dpropagate-fail-to-approximate-longer-wrong-bounds.rs38 fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) { in supply()
39 establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| { in supply()
H A Dpropagate-approximated-fail-no-postdom.rs38 fn supply<'a, 'b, 'c>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>, cell_c: Cell<&'c u32>) { in supply()
40 cell_a, in supply()
/dports/databases/grass7/grass-7.8.6/raster/r.patch/testsuite/
H A Dtest_rpatch_artificial.py169 cell_a = 'rpatch_small_test_cell_a' variable in TestSmallDataOverlap
184 output=cls.cell_a)
185 cls.to_remove.append(cls.cell_a)
205 self.assertModule('r.patch', input=(self.cell_a, self.cell_b),
214 self.assertModule('r.patch', input=(self.cell_b, self.cell_a),
/dports/multimedia/imagination/imagination-3.0/src/
H A Dimgcellrendereranim.c43 GdkRectangle *cell_a,
184 GdkRectangle *cell_a, in img_cell_renderer_anim_render() argument
198 img_cell_renderer_anim_get_size( cell, widget, cell_a, &rect.x, in img_cell_renderer_anim_render()
200 rect.x += cell_a->x + cell->xpad; in img_cell_renderer_anim_render()
201 rect.y += cell_a->y + cell->ypad; in img_cell_renderer_anim_render()
206 if( ! gdk_rectangle_intersect( cell_a, &rect, &draw_rect ) || in img_cell_renderer_anim_render()
H A Dimgcellrendererpixbuf.c76 GdkRectangle *cell_a,
260 GdkRectangle *cell_a, in img_cell_renderer_pixbuf_render() argument
276 img_cell_renderer_pixbuf_get_size( cell, widget, cell_a, &rect.x, in img_cell_renderer_pixbuf_render()
278 rect.x += cell_a->x + cell->xpad; in img_cell_renderer_pixbuf_render()
279 rect.y += cell_a->y + cell->ypad; in img_cell_renderer_pixbuf_render()
284 if( ! gdk_rectangle_intersect( cell_a, &rect, &draw_rect ) || in img_cell_renderer_pixbuf_render()
/dports/cad/yosys/yosys-yosys-0.12/passes/equiv/
H A Dequiv_struct.cc61 void merge_cell_pair(Cell *cell_a, Cell *cell_b) in merge_cell_pair()
69 for (auto &port_a : cell_a->connections()) in merge_cell_pair()
76 if (!cell_a->output(port_a.first)) in merge_cell_pair()
98 for (auto &port_a : cell_a->connections()) in merge_cell_pair()
99 if (cell_a->output(port_a.first)) in merge_cell_pair()
105 cell_a->setPort(pn, merged_map(sigmap(cell_a->getPort(pn)))); in merge_cell_pair()
108 SigSpec sig_a = cell_a->getPort(pn); in merge_cell_pair()
115 cell_a->add_strpool_attribute(ID::equiv_merged, merged_attr); in merge_cell_pair()
/dports/science/shelxle/shelxle-1.0.1352/
H A Ddsreditwindow.cpp249 cell_a->clear(); in clearAll()
277 cell_a->setDisabled(true); in enterRenameMode()
312 cell_a->setEnabled(true); in leaveRenameMode()
343 cell_a->setEnabled(true); in abortRenameMode()
585 cell_a->setText(QString("%1").arg(a)); in setCellFromDB()
813 cell_a->setText("1"); in setSelectedAtoms()
985 cell_a = new QLineEdit; in makeUnitCellEdit()
998 cellLayout->addWidget(cell_a); in makeUnitCellEdit()
1023 cell_a->setValidator(cellaValidator); in makeUnitCellEdit()
1038 cell_a->setStyleSheet("QLineEdit"); in set_a_value()
[all …]
/dports/math/z3/z3-z3-4.8.13/src/math/polynomial/
H A Dalgebraic_numbers.cpp1057 mk_poly(cell_a, cell_b, p); in mk_binary()
1139 mk_poly(cell_a, p); in mk_unary()
1158 mk_interval(cell_a, r_i); in mk_unary()
1633 SASSERT(acell_inv(*cell_a)); in refine_nz_bound()
1645 sign new_sign = upm().eval_sign_at(cell_a->m_p_sz, cell_a->m_p, BOUND); \ in refine_nz_bound()
1682 upm().p_1_div_x(cell_a->m_p_sz, cell_a->m_p); in inv()
1693 …upm().convert_q2bq_interval(cell_a->m_p_sz, cell_a->m_p, inv_lower, inv_upper, bqm(), lower(cell_a in inv()
1695 update_sign_lower(cell_a); in inv()
1758 return upm().eq(cell_a->m_p_sz, cell_a->m_p, cell_b->m_p_sz, cell_b->m_p); in compare_p()
1791 …tout << "a: "; upm().display(tout, cell_a->m_p_sz, cell_a->m_p); tout << "\n"; bqim().display(tout… in compare_core()
[all …]
/dports/math/py-z3-solver/z3-z3-4.8.10/src/math/polynomial/
H A Dalgebraic_numbers.cpp1057 mk_poly(cell_a, cell_b, p); in mk_binary()
1139 mk_poly(cell_a, p); in mk_unary()
1158 mk_interval(cell_a, r_i); in mk_unary()
1633 SASSERT(acell_inv(*cell_a)); in refine_nz_bound()
1645 sign new_sign = upm().eval_sign_at(cell_a->m_p_sz, cell_a->m_p, BOUND); \ in refine_nz_bound()
1682 upm().p_1_div_x(cell_a->m_p_sz, cell_a->m_p); in inv()
1693 …upm().convert_q2bq_interval(cell_a->m_p_sz, cell_a->m_p, inv_lower, inv_upper, bqm(), lower(cell_a in inv()
1695 update_sign_lower(cell_a); in inv()
1758 return upm().eq(cell_a->m_p_sz, cell_a->m_p, cell_b->m_p_sz, cell_b->m_p); in compare_p()
1791 …tout << "a: "; upm().display(tout, cell_a->m_p_sz, cell_a->m_p); tout << "\n"; bqim().display(tout… in compare_core()
[all …]

12