Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h127 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 …]
/openbsd-src/games/tetris/
H A Dscreen.c265 Rows = 0, Cols = 0; in scr_set()
268 Cols = ws.ws_col; in scr_set()
272 if (Cols == 0) in scr_set()
273 Cols = COnum; in scr_set()
274 if (Rows < MINROWS || Cols < MINCOLS) { in scr_set()
485 moveto(Rows - 2, ((Cols - l) >> 1) - 1); in scr_msg()
H A Dtetris.h76 extern int Rows, Cols; /* current screen size */
83 #define CTOD(x) ((x) * 2 + (((Cols - 2 * B_COLS) >> 1) - 1))
H A Dtetris.c59 int Rows, Cols; variable
/openbsd-src/lib/libcurses/tinfo/
H A Dlib_win32con.c139 _nc_console_size(int *Lines, int *Cols) in _nc_console_size() argument
142 if (Lines != NULL && Cols != NULL) { in _nc_console_size()
145 *Cols = (int) (WINCONSOLE.SBI.dwSize.X); in _nc_console_size()
149 *Cols = (int) (WINCONSOLE.SBI.srWindow.Right + 1 - in _nc_console_size()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCAsmStreamer.cpp1227 const size_t Cols = 4; in emitBinaryData() local
1228 for (size_t I = 0, EI = alignTo(Data.size(), Cols); I < EI; I += Cols) { in emitBinaryData()
1229 size_t J = I, EJ = std::min(I + Cols, Data.size()); in emitBinaryData()
/openbsd-src/lib/libcurses/
H A Dcurses.priv.h2391 int (*td_size)(struct DriverTCB*, int* Line, int *Cols);
/openbsd-src/gnu/llvm/llvm/docs/
H A DLangRef.rst17779 declare vectorty @llvm.matrix.transpose.*(vectorty %In, i32 <Rows>, i32 <Cols>)
17785 <Cols>`` matrix and return the transposed matrix in the result vector.
17791 <Cols>`` matrix. Thus, arguments ``<Rows>`` and ``<Cols>`` correspond to the
17793 integers. The returned vector must have ``<Rows> * <Cols>`` elements, and have
17836 ptrty %Ptr, i64 %Stride, i1 <IsVolatile>, i32 <Rows>, i32 <Cols>)
17841 The '``llvm.matrix.column.major.load.*``' intrinsics load a ``<Rows> x <Cols>``
17859 ``<Rows>`` and ``<Cols>``, correspond to the number of rows and columns,
17861 have ``<Rows> * <Cols>`` elements.
17876 vectorty %In, ptrty %Ptr, i64 %Stride, i1 <IsVolatile>, i32 <Rows>, i32 <Cols>)
17882 <Cols>`` matrix in ``%In`` to memory using a stride of ``%Stride`` between
[all …]