Home
last modified time | relevance | path

Searched refs:lastcell (Results 1 – 25 of 54) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.C5/C5/heaps/
H A DIntervalHeap.cs774 int lastcell = (size - 1) / 2; in Delete()
776 if (cell == lastcell) in Delete()
807 updateFirst(cell, heap[lastcell].last, heap[lastcell].lasthandle); in Delete()
813 updateFirst(cell, heap[lastcell].first, heap[lastcell].firsthandle); in Delete()
830 updateLast(cell, heap[lastcell].last, heap[lastcell].lasthandle); in Delete()
836 updateLast(cell, heap[lastcell].first, heap[lastcell].firsthandle); in Delete()
992 int lastcell = (size - 1) / 2; in DeleteMin()
996 updateFirst(0, heap[lastcell].last, heap[lastcell].lasthandle); in DeleteMin()
1002 updateFirst(0, heap[lastcell].first, heap[lastcell].firsthandle); in DeleteMin()
1052 updateLast(0, heap[lastcell].last, heap[lastcell].lasthandle); in DeleteMax()
[all …]
/dports/www/lynx-current/lynx2.9.0dev.9/src/
H A DTRSTable.c586 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
616 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
680 lastcell->len = 0; in Stbl_finishCellInRow()
692 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
702 lastcell->len = 0; in Stbl_finishCellInRow()
734 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
762 lastcell->len = 0; in Stbl_finishCellInRow()
828 lastcell->len = empty ? 0 : pos - lastcell->pos; in Stbl_finishCellInRow()
842 ret = lastcell->len; in Stbl_finishCellInRow()
884 lastcell->len = empty ? 0 : pos - lastcell->pos; in Stbl_finishCellInRow()
[all …]
/dports/www/lynx/lynx2.8.9rel.1/src/
H A DTRSTable.c586 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
616 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
680 lastcell->len = 0; in Stbl_finishCellInRow()
692 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
702 lastcell->len = 0; in Stbl_finishCellInRow()
734 ret = (lastcell->len <= 0 ? 0 : lastcell->len); in Stbl_finishCellInRow()
762 lastcell->len = 0; in Stbl_finishCellInRow()
828 lastcell->len = empty ? 0 : pos - lastcell->pos; in Stbl_finishCellInRow()
842 ret = lastcell->len; in Stbl_finishCellInRow()
884 lastcell->len = empty ? 0 : pos - lastcell->pos; in Stbl_finishCellInRow()
[all …]
/dports/math/R-cran-raster/raster/R/
H A DgetValuesBlock.R42 lastcell <- cellFromRowCol(x, lastrow, lastcol) functionVar
50 cells <- startcell:lastcell
137 lastcell <- cellFromRowCol(x, lastrow, lastcol) functionVar
143 res <- x@data@values[startcell:lastcell]
H A Dsparse.R141 lastcell <- cellFromRowCol(endrow, nc) functionVar
144 i <- which(x@index >= startcell & x@index <= lastcell)
178 lastcell <- cellFromRowCol(x, lastrow, lastcol) functionVar
183 i <- which(x@index >= startcell & x@index <= lastcell)
/dports/cad/yosys/yosys-yosys-0.12/frontends/blif/
H A Dblifparse.cc90 RTLIL::Cell *lastcell = nullptr; in parse_blif() local
168 lastcell = nullptr; in parse_blif()
248 lastcell = nullptr; in parse_blif()
287 if(lastcell == nullptr || module == nullptr) in parse_blif()
293 module->rename(lastcell, RTLIL::escape_id(p)); in parse_blif()
368 lastcell = cell; in parse_blif()
434 lastcell = cell; in parse_blif()
511 lastcell = sopcell; in parse_blif()
522 lastcell = cell; in parse_blif()
/dports/devel/redasm/REDasm-2.1.1/QHexView/
H A Dqhexview.cpp281 …bool lastcell = (line >= m_renderer->documentLastLine()) && (column >= m_renderer->documentLastCol… in moveNext() local
283 if((m_renderer->selectedArea() == QHexRenderer::AsciiArea) && lastcell) in moveNext()
290 if(lastcell && !nibbleindex) in moveNext()
/dports/cad/qflow/qflow-1.4.98/src/
H A Dreadliberty.c533 Cell *newcell, *lastcell; in read_liberty() local
569 lastcell = NULL; in read_liberty()
786 if (lastcell != NULL) in read_liberty()
787 lastcell->next = newcell; in read_liberty()
790 lastcell = newcell; in read_liberty()
/dports/science/afni/afni-AFNI_21.3.16/src/XmHTML/lib/common/
H A Dformat.c2527 if(caption->lastcell) in tableOpenCaption()
2548 caption->lastcell = 1; in tableOpenCaption()
2701 row->lastcell = 0; in tableOpenRow()
2811 if(row->lastcell == row->ncells) in tableOpenCell()
2818 cell = &(row->cells[row->lastcell]); in tableOpenCell()
2863 row->lastcell++; in tableOpenCell()
2903 if(row->lastcell == 0) in tableCloseCell()
2908 if((cell = &(row->cells[row->lastcell])) == NULL) in tableCloseCell()
2912 cell = &(row->cells[row->lastcell-1]); in tableCloseCell()
2927 row->lastcell - 1, table->lastrow - 1, row->owner->object->line); in tableCloseCell()
/dports/databases/postgresql96-server/postgresql-9.6.24/src/backend/optimizer/path/
H A Dindxpath.c1446 ListCell *lastcell; in choose_bitmap_and() local
1454 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1495 lastcell = lnext(lastcell); in choose_bitmap_and()
1500 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1502 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/backend/optimizer/path/
H A Dindxpath.c1446 ListCell *lastcell; in choose_bitmap_and() local
1454 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1495 lastcell = lnext(lastcell); in choose_bitmap_and()
1500 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1502 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/backend/optimizer/path/
H A Dindxpath.c1446 ListCell *lastcell; in choose_bitmap_and() local
1454 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1495 lastcell = lnext(lastcell); in choose_bitmap_and()
1500 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1502 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql11-client/postgresql-11.14/src/backend/optimizer/path/
H A Dindxpath.c1497 ListCell *lastcell; in choose_bitmap_and() local
1505 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1546 lastcell = lnext(lastcell); in choose_bitmap_and()
1551 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1553 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql11-docs/postgresql-11.14/src/backend/optimizer/path/
H A Dindxpath.c1497 ListCell *lastcell; in choose_bitmap_and() local
1505 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1546 lastcell = lnext(lastcell); in choose_bitmap_and()
1551 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1553 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql11-plperl/postgresql-11.14/src/backend/optimizer/path/
H A Dindxpath.c1497 ListCell *lastcell;
1505 lastcell = list_head(paths); /* for quick deletions */
1546 lastcell = lnext(lastcell);
1551 paths = list_delete_cell(paths, lnext(lastcell), lastcell);
1553 Assert(lnext(lastcell) == NULL);
/dports/databases/postgresql11-contrib/postgresql-11.14/src/backend/optimizer/path/
H A Dindxpath.c1497 ListCell *lastcell; in choose_bitmap_and() local
1505 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1546 lastcell = lnext(lastcell); in choose_bitmap_and()
1551 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1553 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql11-plpython/postgresql-11.14/src/backend/optimizer/path/
H A Dindxpath.c1497 ListCell *lastcell; in choose_bitmap_and() local
1505 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1546 lastcell = lnext(lastcell); in choose_bitmap_and()
1551 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1553 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql11-server/postgresql-11.14/src/backend/optimizer/path/
H A Dindxpath.c1497 ListCell *lastcell; in choose_bitmap_and() local
1505 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1546 lastcell = lnext(lastcell); in choose_bitmap_and()
1551 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1553 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql11-pltcl/postgresql-11.14/src/backend/optimizer/path/
H A Dindxpath.c1497 ListCell *lastcell;
1505 lastcell = list_head(paths); /* for quick deletions */
1546 lastcell = lnext(lastcell);
1551 paths = list_delete_cell(paths, lnext(lastcell), lastcell);
1553 Assert(lnext(lastcell) == NULL);
/dports/databases/postgresql96-client/postgresql-9.6.24/src/backend/optimizer/path/
H A Dindxpath.c1446 ListCell *lastcell; in choose_bitmap_and() local
1454 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1495 lastcell = lnext(lastcell); in choose_bitmap_and()
1500 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1502 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql12-server/postgresql-12.9/src/backend/optimizer/path/
H A Dindxpath.c1505 ListCell *lastcell; in choose_bitmap_and() local
1513 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1554 lastcell = lnext(lastcell); in choose_bitmap_and()
1559 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1561 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/backend/optimizer/path/
H A Dindxpath.c1446 ListCell *lastcell; in choose_bitmap_and() local
1454 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1495 lastcell = lnext(lastcell); in choose_bitmap_and()
1500 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1502 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql96-contrib/postgresql-9.6.24/src/backend/optimizer/path/
H A Dindxpath.c1446 ListCell *lastcell; in choose_bitmap_and() local
1454 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1495 lastcell = lnext(lastcell); in choose_bitmap_and()
1500 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1502 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()
/dports/databases/postgresql12-contrib/postgresql-12.9/src/backend/optimizer/path/
H A Dindxpath.c1505 ListCell *lastcell;
1513 lastcell = list_head(paths); /* for quick deletions */
1554 lastcell = lnext(lastcell);
1559 paths = list_delete_cell(paths, lnext(lastcell), lastcell);
1561 Assert(lnext(lastcell) == NULL);
/dports/databases/postgresql12-pltcl/postgresql-12.9/src/backend/optimizer/path/
H A Dindxpath.c1505 ListCell *lastcell; in choose_bitmap_and() local
1513 lastcell = list_head(paths); /* for quick deletions */ in choose_bitmap_and()
1554 lastcell = lnext(lastcell); in choose_bitmap_and()
1559 paths = list_delete_cell(paths, lnext(lastcell), lastcell); in choose_bitmap_and()
1561 Assert(lnext(lastcell) == NULL); in choose_bitmap_and()

123