Searched refs:new_col (Results 1 – 2 of 2) sorted by relevance
/titanic_50/usr/src/cmd/rcap/rcapstat/ |
H A D | rcapstat.c | 89 col_t *new_col; in col_insert() local 91 new_col = malloc(sizeof (col_t)); in col_insert() 92 if (new_col == NULL) { in col_insert() 96 (void) memset(new_col, 0, sizeof (col_t)); in col_insert() 97 new_col->col_next = col_head; in col_insert() 98 new_col->col_id = id; in col_insert() 100 col_head->col_prev = new_col; in col_insert() 101 col_head = new_col; in col_insert() 103 return (new_col); in col_insert()
|
/titanic_50/usr/src/lib/libtecla/common/ |
H A D | getline.c | 3966 int new_row, new_col; /* The target terminal row and column index of */ in gl_terminal_move_cursor() local 3986 new_col = (gl->term_curpos + n) % gl->ncolumn; in gl_terminal_move_cursor() 4004 if(cur_col < new_col) { in gl_terminal_move_cursor() 4010 if(gl->right_n != NULL && new_col - cur_col > 1) { in gl_terminal_move_cursor() 4012 (long)(new_col - cur_col), 0l, 0l, 0l, 0l, 0l, 0l, 0l, 0l))) in gl_terminal_move_cursor() 4017 for(; cur_col < new_col; cur_col++) { in gl_terminal_move_cursor() 4025 } else if(cur_col > new_col) { in gl_terminal_move_cursor() 4031 if(gl->left_n != NULL && cur_col - new_col > 3) { in gl_terminal_move_cursor() 4033 (long)(cur_col - new_col), 0l, 0l, 0l, 0l, 0l, 0l, 0l, 0l))) in gl_terminal_move_cursor() 4038 for(; cur_col > new_col; cur_col--) { in gl_terminal_move_cursor()
|