Lines Matching defs:ColStructure
136 struct ColStructure struct
138 IndexType start ; /* index for A of first row in this column, or Dead */
140 IndexType length ; /* number of rows in this column */
142 {
147 } shared1 ;
149 {
152 } shared2 ;
154 {
160 } shared3 ;
162 {
165 } shared4 ;
167 inline bool is_dead() const { return start < Alive; } in is_dead()
169 inline bool is_alive() const { return start >= Alive; } in is_alive()
171 inline bool is_dead_principal() const { return start == DeadPrincipal; } in is_dead_principal()
173 inline void kill_principal() { start = DeadPrincipal; } in kill_principal()
175 inline void kill_non_principal() { start = DeadNonPrincipal; } in kill_non_principal()