Home | History | Annotate | Download | only in src

Lines Matching refs:col

345   inline const Anchor& get_anchor (unsigned int row, unsigned int col, unsigned int cols, bool *found) const {
347 if (unlikely (row >= rows || col >= cols)) return Null(Anchor);
348 *found = !matrix[row * cols + col].is_null ();
349 return this+matrix[row * cols + col];