Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h129 Rows(Rows), Cols(Cols), Data(llvm::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
135 : Rows(Rows), Cols(Cols), in Matrix()
142 : Rows(M.Rows), Cols(M.Cols), in Matrix()
149 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix()
150 M.Rows = M.Cols = 0; in Matrix()
156 if (Rows != M.Rows || Cols != M.Cols)
170 return Cols; in getCols()
190 Vector V(Cols); in getRowAsVector()
208 Matrix M(Cols, Rows); in transpose()
218 assert(Rows == M.Rows && Cols == M.Cols &&
[all …]
/freebsd-12.1/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c629 drv_size(TERMINAL_CONTROL_BLOCK * TCB, int *Lines, int *Cols) in drv_size() argument
640 Cols != NULL) { in drv_size()
643 *Cols = (int) (PropOf(TCB)->SBI.dwSize.X); in drv_size()
647 *Cols = (int) (PropOf(TCB)->SBI.srWindow.Right + 1 - in drv_size()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp911 const size_t Cols = 4; in EmitBinaryData() local
912 for (size_t I = 0, EI = alignTo(Data.size(), Cols); I < EI; I += Cols) { in EmitBinaryData()
913 size_t J = I, EJ = std::min(I + Cols, Data.size()); in EmitBinaryData()
/freebsd-12.1/contrib/ncurses/ncurses/
H A Dcurses.priv.h2234 int (*size)(struct DriverTCB*, int* Line, int *Cols);