Searched refs:Cols (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/ |
| D | Math.h | 127 Matrix(unsigned Rows, unsigned Cols) : in Matrix() argument 128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() argument 134 : Rows(Rows), Cols(Cols), in Matrix() 135 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 136 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal); in Matrix() 141 : Rows(M.Rows), Cols(M.Cols), in Matrix() 142 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 143 std::copy(M.Data.get(), M.Data.get() + (Rows * Cols), Data.get()); in Matrix() 148 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix() [all …]
|
| /freebsd-12-stable/contrib/ncurses/ncurses/win32con/ |
| D | win_driver.c | 629 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-stable/contrib/llvm-project/llvm/lib/MC/ |
| D | MCAsmStreamer.cpp | 1182 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-12-stable/contrib/ncurses/ncurses/ |
| D | curses.priv.h | 2234 int (*size)(struct DriverTCB*, int* Line, int *Cols);
|