Home
last modified time | relevance | path

Searched refs:cell_owner (Results 1 – 16 of 16) sorted by relevance

/dports/lang/gnu-apl/apl-1.8/src/sql/
H A DSqliteResultValue.cc30 void IntResultValue::update( Cell *cell, Value & cell_owner ) const in update()
35 void DoubleResultValue::update( Cell *cell, Value & cell_owner ) const in update()
40 void StringResultValue::update( Cell *cell, Value & cell_owner ) const in update()
43 new (cell) PointerCell(Str0(LOC).get(), cell_owner ); in update()
46 new (cell) PointerCell(make_string_cell(value, LOC).get(), cell_owner); in update()
50 void NullResultValue::update( Cell *cell, Value & cell_owner ) const in update()
52 new (cell) PointerCell( Idx0(LOC).get(), cell_owner ); in update()
H A DSqliteResultValue.hh34 virtual void update(Cell * cell, Value & cell_owner) const = 0;
42 virtual void update( Cell *cell, Value & cell_owner ) const;
53 virtual void update( Cell *cell, Value & cell_owner ) const;
64 virtual void update( Cell *cell, Value & cell_owner ) const;
72 virtual void update( Cell *cell, Value & cell_owner ) const;
/dports/lang/gnu-apl/apl-1.8/src/
H A DLvalCell.hh36 LvalCell(Cell * cell, Value * cell_owner);
39 virtual void init_other(void * other, Value & cell_owner, const char * loc) in init_other() argument
40 const { new (other) LvalCell(get_lval_value(), &cell_owner); } in init_other()
83 LvalCell_picked(Cell * cell, Value * cell_owner) in LvalCell_picked() argument
84 : LvalCell(cell, cell_owner) in LvalCell_picked()
H A DPointerCell.cc28 PointerCell::PointerCell(Value * sub_val, Value & cell_owner) in PointerCell() argument
33 value.pval.owner = &cell_owner; in PointerCell()
36 cell_owner.increment_pointer_cell_count(); in PointerCell()
37 cell_owner.add_subcount(sub_val->nz_element_count()); in PointerCell()
40 PointerCell::PointerCell(Value * sub_val, Value & cell_owner, uint32_t magic) in PointerCell() argument
49 value.pval.owner = &cell_owner; in PointerCell()
52 cell_owner.increment_pointer_cell_count(); in PointerCell()
53 cell_owner.add_subcount(sub_val->nz_element_count()); in PointerCell()
57 PointerCell::init_other(void * other, Value & cell_owner, in init_other() argument
66 new (other) PointerCell(sub.get(), cell_owner); in init_other()
H A DCell.hh61 void init(const Cell & other, Value & cell_owner, const char * loc) in init() argument
62 { other.init_other(this, cell_owner, loc); } in init()
65 virtual void init_other(void * other, Value & cell_owner, in init_other() argument
71 void init_from_value(Value * value, Value & cell_owner, const char * loc);
88 void init_type(const Cell & other, Value & cell_owner, const char * loc);
532 Value & cell_owner) in copy() argument
533 { loop(c, count) src++->init_other(dst++, cell_owner, LOC); } in copy()
H A DCell.cc44 Cell::init_from_value(Value * value, Value & cell_owner, const char * loc) in init_from_value() argument
48 value->get_ravel(0).init_other(this, cell_owner, loc); in init_from_value()
52 new (this) PointerCell(value, cell_owner); in init_from_value()
75 Cell::init_type(const Cell & other, Value & cell_owner, const char * loc) in init_type() argument
83 new (this) PointerCell(sub.get(), cell_owner); in init_type()
H A DLvalCell.cc27 LvalCell::LvalCell(Cell * cell, Value * cell_owner) in LvalCell() argument
30 value.pval.owner = cell_owner; in LvalCell()
H A DPointerCell.hh37 PointerCell(Value * val, Value & cell_owner);
44 virtual void init_other(void * other, Value & cell_owner,
H A DFloatCell.hh53 virtual void init_other(void * other, Value & cell_owner, in init_other() argument
104 virtual void init_other(void * other, Value & cell_owner, const char * loc) in init_other() argument
H A DCharCell.hh39 virtual void init_other(void * other, Value & cell_owner, const char * loc) in init_other() argument
H A DIntCell.hh42 virtual void init_other(void * other, Value & cell_owner, const char * loc) in init_other() argument
H A DComplexCell.hh41 virtual void init_other(void * other, Value & cell_owner, const char * loc) in init_other() argument
H A DArchive.hh242 void read_Cells(Cell * & cell, Value & cell_owner, const UTF8 * & first);
H A DPrimitiveFunction.cc2309 APL_Integer qio, Value * cell_owner) in pick() argument
2348 qio, cell_owner); in pick()
2353 Assert(cell_owner); in pick()
2380 Assert(cell_owner); in pick()
2387 new (Z->next_ravel()) LvalCell_picked(cell, cell_owner); in pick()
2389 new (Z->next_ravel()) LvalCell(cell, cell_owner); in pick()
H A DPrimitiveFunction.hh269 APL_Integer qio, Value * cell_owner);
/dports/math/vtk9/VTK-9.1.0/Filters/ParallelDIY2/
H A DvtkRedistributeDataSetFilter.cxx1012 const auto cell_owner = cell_ownership->GetTypedComponent(cc, 0); in MarkGhostCells() local
1014 if (static_cast<int>(partId) == cell_owner) in MarkGhostCells()