Searched refs:rows (Results 1 - 25 of 57) sorted by path

123

/haiku/headers/libs/agg/
H A Dagg_renderer_outline_image.h173 m_filter->pixel_high_res(m_buf.rows(),
245 base_type::m_buf.rows(),
H A Dagg_rendering_buffer.h82 T** rows = &m_rows[0]; local
86 *rows++ = row_ptr;
109 T const* const* rows() const { return &m_rows[0]; } function in class:agg::row_ptr_cache
/haiku/headers/private/interface/
H A DInterfacePrivate.h27 void set_workspaces_layout(uint32 columns, uint32 rows);
/haiku/src/add-ons/input_server/filters/switch_workspace/
H A DSwitchWorkspaceInputFilter.cpp81 int32 rows; local
86 link.Read<int32>(&rows);
97 if (nextRow >= rows)
98 nextRow = rows - 1;
/haiku/src/apps/pairs/
H A DPairsView.cpp40 PairsView::PairsView(BRect frame, const char* name, uint8 rows, uint8 cols, argument
44 fRows(rows),
47 fButtonsCount(rows * cols),
H A DPairsView.h35 uint8 rows, uint8 cols, uint8 iconSize);
H A DPairsWindow.h33 void SetGameSize(uint8 rows, uint8 cols);
36 void _MakeGameView(uint8 rows, uint8 cols);
38 void _ResizeWindow(uint8 rows, uint8 cols);
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h118 VTerm *vterm_new(int rows, int cols);
119 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata);
123 void vterm_set_size(VTerm *vt, int rows, int cols);
170 int (*resize)(int rows, int cols, void *user);
192 int (*resize)(int rows, int cols, VTermPos *delta, void *user);
239 int (*resize)(int rows, int cols, void *user);
251 VTERM_DAMAGE_ROW, /* entire rows */
/haiku/src/apps/serialconnect/libvterm/src/
H A Dscreen.c55 int rows; member in struct:VTermScreen
73 if(row < 0 || row >= screen->rows)
89 if(buffer && row < screen->rows && col < screen->cols)
165 .end_row = screen->rows,
488 int old_rows = screen->rows;
494 // Fewer rows - determine if we're going to scroll at all, and if so, push
522 screen->rows = new_rows;
542 int rows = new_rows - old_rows; local
543 while(rows) {
546 .end_row = screen->rows,
630 int rows, cols; local
840 int rows, cols; local
[all...]
H A Dstate.c63 state->rows = vt->rows;
121 else if(state->pos.row < state->rows-1)
634 for(pos.row = 0; pos.row < state->rows; pos.row++)
772 for(row = 0; row < state->rows; row++)
1043 rect.start_row = state->pos.row + 1; rect.end_row = state->rows;
1066 rect.start_row = 0; rect.end_row = state->rows;
1366 UBOUND(state->scrollregion_top, state->rows);
1368 if(state->scrollregion_top == 0 && state->scrollregion_bottom == state->rows)
1371 UBOUND(state->scrollregion_bottom, state->rows);
1521 on_resize(int rows, int cols, void *user) argument
[all...]
H A Dvterm.c30 VTerm *vterm_new(int rows, int cols) argument
32 return vterm_new_with_allocator(rows, cols, &default_allocator, NULL);
35 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata) argument
43 vt->rows = rows;
86 *rowsp = vt->rows;
91 void vterm_set_size(VTerm *vt, int rows, int cols) argument
93 vt->rows = rows;
97 (*vt->parser_callbacks->resize)(rows, col
[all...]
H A Dvterm_internal.h48 int rows; member in struct:VTermState
58 #define SCROLLREGION_BOTTOM(state) ((state)->scrollregion_bottom > -1 ? (state)->scrollregion_bottom : (state)->rows)
131 int rows; member in struct:VTerm
/haiku/src/apps/workspaces/
H A DWorkspaces.cpp748 uint32 columns, rows; local
749 BPrivate::get_workspaces_layout(&columns, &rows);
756 float height = floor(workspaceHeight * rows);
823 uint32 columns, rows; local
824 BPrivate::get_workspaces_layout(&columns, &rows);
831 = (columns * screenWidth) / (rows * screenHeight);
850 uint32 columns, rows; local
851 BPrivate::get_workspaces_layout(&columns, &rows);
857 height = floor(workspaceHeight * rows);
1115 uint32 columns, rows; local
[all...]
/haiku/src/bin/network/telnet/
H A Dsys_bsd.c780 TerminalWindowSize(long *rows, long *cols) argument
786 *rows = ws.ws_row;
H A Dtelnet.c2368 long rows, cols;
2378 if (TerminalWindowSize(&rows, &cols) == 0) { /* Failed */
2388 PUTSHORT(cp, rows);
2359 long rows, cols; local
/haiku/src/kits/interface/
H A DGridLayout.cpp184 int32 rows; local
185 from->GetInfo(kRowWeightField, NULL, &rows);
188 if (!_ResizeGrid(columns, rows)) {
631 // check for empty rows
H A DSlider.cpp1684 int32 rows = 0; local
1700 rows += labelRows;
1720 rows++;
1722 height += rows * (ceilf(fontHeight.ascent)
/haiku/src/kits/shared/
H A DCalendarView.cpp835 int32 rows = 7; local
837 rows = 6;
839 // height = font height * rows + 8 px border
840 *_height = height * rows + 8.0;
1084 int32 rows = 7;
1086 rows = 6;
1090 frame.bottom = frame.Height() / rows - 1.0;
1282 int32 rows = 7; local
1286 rows = 6;
1293 frame.bottom = frame.Height() / rows
[all...]
/haiku/src/libs/agg/font_freetype/
H A Dagg_font_freetype.cpp421 buf += bitmap.pitch * (bitmap.rows - 1);
422 y += bitmap.rows;
425 for(i = 0; i < bitmap.rows; i++)
462 buf += bitmap.pitch * (bitmap.rows - 1);
463 y += bitmap.rows;
466 for(i = 0; i < bitmap.rows; i++)
/haiku/src/libs/linprog/
H A DActiveSetSolver.cpp31 EquationSystem::EquationSystem(int32 rows, int32 columns) argument
33 fRows(rows),
64 EquationSystem::SetRows(int32 rows) argument
66 fRows = rows;
210 // remove the rows
H A DActiveSetSolver.h14 EquationSystem(int32 rows, int32 columns);
17 void SetRows(int32 rows);
/haiku/headers/private/kernel/platform/efi/protocol/
H A Dsimple-text-output.h126 size_t mode_num, size_t* cols, size_t* rows) EFIAPI;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300.h316 #define INIT_INI_ARRAY(iniarray, array, rows, columns) do { \
318 (iniarray)->ia_rows = (rows); \
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/
H A Dah.c1318 for (r = 0; r < ia->rows; r++) {
1337 for (r = 0; r < ia->rows; r++)
1347 for (r = 0; r < ia->rows; r++) {
H A Dah_internal.h907 int rows, cols; member in struct:__anon122
912 (_ia)->rows = sizeof(_data) / sizeof((_data)[0]); \

Completed in 159 milliseconds

123