Searched refs:Cols (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/ |
H A 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 …]
|
/netbsd-src/games/tetris/ |
H A D | screen.c | 185 Rows = 0, Cols = 0; in scr_set() 188 Cols = ws.ws_col; in scr_set() 192 if (Cols == 0) in scr_set() 193 Cols = columns; in scr_set() 194 if (Rows < MINROWS || Cols < MINCOLS) { in scr_set() 422 moveto(Rows - 2, ((Cols - l) >> 1) - 1); in scr_msg()
|
H A D | tetris.h | 75 extern int Rows, Cols; /* current screen size */ 83 #define CTOD(x) ((x) * 2 + (((Cols - 2 * B_COLS) >> 1) - 1))
|
H A D | tetris.c | 64 int Rows, Cols; /* current screen size */ variable
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | MCAsmStreamer.cpp | 1172 const size_t Cols = 4; in emitBinaryData() local 1173 for (size_t I = 0, EI = alignTo(Data.size(), Cols); I < EI; I += Cols) { in emitBinaryData() 1174 size_t J = I, EJ = std::min(I + Cols, Data.size()); in emitBinaryData()
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | LangRef.rst | 16986 declare vectorty @llvm.matrix.transpose.*(vectorty %In, i32 <Rows>, i32 <Cols>) 16992 <Cols>`` matrix and return the transposed matrix in the result vector. 16998 <Cols>`` matrix. Thus, arguments ``<Rows>`` and ``<Cols>`` correspond to the 17000 integers. The returned vector must have ``<Rows> * <Cols>`` elements, and have 17043 ptrty %Ptr, i64 %Stride, i1 <IsVolatile>, i32 <Rows>, i32 <Cols>) 17048 The '``llvm.matrix.column.major.load.*``' intrinsics load a ``<Rows> x <Cols>`` 17065 ``<Rows>`` and ``<Cols>``, correspond to the number of rows and columns, 17067 have ``<Rows> * <Cols>`` elements. 17082 vectorty %In, ptrty %Ptr, i64 %Stride, i1 <IsVolatile>, i32 <Rows>, i32 <Cols>) 17088 <Cols>`` matrix in ``%In`` to memory using a stride of ``%Stride`` between [all …]
|