Home
last modified time | relevance | path

Searched refs:Cols (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
134 : Rows(Rows), Cols(Cols), in Matrix()
141 : Rows(M.Rows), Cols(M.Cols), in Matrix()
148 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix()
149 M.Rows = M.Cols = 0; in Matrix()
155 if (Rows != M.Rows || Cols != M.Cols)
169 return Cols; in getCols()
189 Vector V(Cols); in getRowAsVector()
207 Matrix M(Cols, Rows); in transpose()
217 assert(Rows == M.Rows && Cols == M.Cols &&
[all …]
/freebsd-13.1/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c824 wcon_size(TERMINAL_CONTROL_BLOCK * TCB, int *Lines, int *Cols) in wcon_size() argument
832 Cols != NULL) { in wcon_size()
835 *Cols = (int) (CON.SBI.dwSize.X); in wcon_size()
839 *Cols = (int) (CON.SBI.srWindow.Right + 1 - in wcon_size()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1182 const size_t Cols = 4; in emitBinaryData() local
1183 for (size_t I = 0, EI = alignTo(Data.size(), Cols); I < EI; I += Cols) { in emitBinaryData()
1184 size_t J = I, EJ = std::min(I + Cols, Data.size()); in emitBinaryData()
/freebsd-13.1/contrib/ncurses/ncurses/
H A Dcurses.priv.h2504 int (*td_size)(struct DriverTCB*, int* Line, int *Cols);