Home
last modified time | relevance | path

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

/src/contrib/llvm-project/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 …]
/src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDXContainerYAML.h86 StartRow(El.StartRow), Cols(El.Cols), StartCol(El.StartCol), in SignatureElement()
93 uint8_t Cols; member
/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDXContainerEmitter.cpp207 El.Name, El.Indices, El.StartRow, El.Cols, El.StartCol, in writeParts()
213 El.Name, El.Indices, El.StartRow, El.Cols, El.StartCol, in writeParts()
219 El.Name, El.Indices, El.StartRow, El.Cols, El.StartCol, in writeParts()
H A DDXContainerYAML.cpp229 IO.mapRequired("Cols", El.Cols); in mapping()
/src/contrib/llvm-project/llvm/lib/MC/
H A DDXContainerPSVInfo.cpp49 FinalElement.Cols = El.Cols; in ProcessElementList()
H A DMCAsmStreamer.cpp1310 const size_t Cols = 4; in emitBinaryData() local
1311 for (size_t I = 0, EI = alignTo(Data.size(), Cols); I < EI; I += Cols) { in emitBinaryData()
1312 size_t J = I, EJ = std::min(I + Cols, Data.size()); in emitBinaryData()
/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DDXContainerPSVInfo.h33 uint8_t Cols; member
/src/contrib/ncurses/ncurses/tinfo/
H A Dlib_win32con.c134 _nc_console_size(int *Lines, int *Cols) in _nc_console_size() argument
137 if (Lines != NULL && Cols != NULL) { in _nc_console_size()
140 *Cols = (int) (WINCONSOLE.SBI.dwSize.X); in _nc_console_size()
144 *Cols = (int) (WINCONSOLE.SBI.srWindow.Right + 1 - in _nc_console_size()
/src/contrib/ncurses/ncurses/win32con/
H A Dwin32_driver.c705 wcon_size(TERMINAL_CONTROL_BLOCK * TCB, int *Lines, int *Cols) in wcon_size() argument
712 (Lines != NULL) && (Cols != NULL)) { in wcon_size()
713 _nc_console_size(Lines, Cols); in wcon_size()
/src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDXContainer.h337 uint8_t Cols : 4; member
/src/contrib/ncurses/ncurses/
H A Dcurses.priv.h2450 int (*td_size)(struct DriverTCB*, int* Line, int *Cols);
2589 extern NCURSES_EXPORT(void) _nc_console_size(int *Lines, int *Cols);