Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
134 : Rows(Rows), Cols(Cols), in Matrix()
141 : Rows(M.Rows), Cols(M.Cols), in Matrix()
148 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix()
149 M.Rows = M.Cols = 0; in Matrix()
155 if (Rows != M.Rows || Cols != M.Cols)
169 return Cols; in getCols()
189 Vector V(Cols); in getRowAsVector()
207 Matrix M(Cols, Rows); in transpose()
217 assert(Rows == M.Rows && Cols == M.Cols &&
[all …]
/freebsd-14.2/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
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDXContainerEmitter.cpp206 El.Name, El.Indices, El.StartRow, El.Cols, El.StartCol, in writeParts()
212 El.Name, El.Indices, El.StartRow, El.Cols, El.StartCol, in writeParts()
218 El.Name, El.Indices, El.StartRow, El.Cols, El.StartCol, in writeParts()
H A DDXContainerYAML.cpp218 IO.mapRequired("Cols", El.Cols); in mapping()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DDXContainerPSVInfo.cpp49 FinalElement.Cols = El.Cols; in ProcessElementList()
H A DMCAsmStreamer.cpp1295 const size_t Cols = 4; in emitBinaryData() local
1296 for (size_t I = 0, EI = alignTo(Data.size(), Cols); I < EI; I += Cols) { in emitBinaryData()
1297 size_t J = I, EJ = std::min(I + Cols, Data.size()); in emitBinaryData()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DDXContainerPSVInfo.h31 uint8_t Cols; member
/freebsd-14.2/contrib/ncurses/include/
H A Dnc_win32.h94 extern NCURSES_EXPORT(void) _nc_console_size(int* Lines, int* Cols);
/freebsd-14.2/contrib/ncurses/ncurses/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()
/freebsd-14.2/contrib/ncurses/ncurses/win32con/
H A Dwin32_driver.c711 wcon_size(TERMINAL_CONTROL_BLOCK * TCB, int *Lines, int *Cols) in wcon_size() argument
718 (Lines != NULL) && (Cols != NULL)) { in wcon_size()
719 _nc_console_size(Lines, Cols); in wcon_size()
H A Dwin_driver.c834 wcon_size(TERMINAL_CONTROL_BLOCK * TCB, int *Lines, int *Cols) in wcon_size() argument
842 Cols != NULL) { in wcon_size()
845 *Cols = (int) (CON.SBI.dwSize.X); in wcon_size()
849 *Cols = (int) (CON.SBI.srWindow.Right + 1 - in wcon_size()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDXContainer.h333 uint8_t Cols : 4; member
/freebsd-14.2/contrib/ncurses/ncurses/
H A Dcurses.priv.h2397 int (*td_size)(struct DriverTCB*, int* Line, int *Cols);