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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h127 Matrix(unsigned Rows, unsigned Cols) :
128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) {
133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal)
134 : Rows(Rows), Cols(Cols),
135 Data(std::make_unique<PBQPNum []>(Rows * Cols)) {
136 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal);
141 : Rows(M.Rows), Cols(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp145 ColumnMatrixTy(ArrayRef<Value *> Cols) argument
146 : Columns(Cols.begin(), Cols.end()) {}
/freebsd-11-stable/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c629 drv_size(TERMINAL_CONTROL_BLOCK * TCB, int *Lines, int *Cols) argument
640 Cols != NULL) {
643 *Cols = (int) (PropOf(TCB)->SBI.dwSize.X);
647 *Cols = (int) (PropOf(TCB)->SBI.srWindow.Right + 1 -
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp956 const size_t Cols = 4; local
957 for (size_t I = 0, EI = alignTo(Data.size(), Cols); I < EI; I += Cols) {
958 size_t J = I, EJ = std::min(I + Cols, Data.size());

Completed in 72 milliseconds