Searched refs:pos_y (Results 1 – 2 of 2) sorted by relevance
/titanic_44/usr/src/lib/libshell/common/scripts/ |
H A D | gnaw.sh | 621 pos_y) 671 (( start_y_pos=player["pos_y"] / 2)) 684 print_setcursorpos ${player["pos_x"]} $((player["pos_y"]+screen_y_offset-start_y_pos)) 690 (( m_pos_y=monster[${currmonster}_"pos_y"]+screen_y_offset-start_y_pos )) 721 player["pos_y"]=${levelmap["playerstartpos_y"]} 731 monster[${currmonster}_"pos_y"]=${levelmap["monsterstartpos_y"]} 772 i|A|8) (( player["pos_y"]-=1 )) ;; 773 m|B|2) (( player["pos_y"]+=1 )) ;; 778 if [[ "${levelmap["${player["pos_x"]}_${player["pos_y"]}"]}" == "." ]] ; then 809 if (( (monster[${currmonster}_"pos_y"]-player["pos_y"]) > 0 )) ; then [all …]
|
/titanic_44/usr/src/cmd/powertop/common/ |
H A D | display.c | 182 int cstate_lines, event_lines, pos_y = 0; in pt_display_setup() local 190 sw[SW_TITLE] = subwin(stdscr, SINGLE_LINE_SW, win_cols, pos_y, 0); in pt_display_setup() 192 pos_y += NEXT_LINE + BLANK_LINE; in pt_display_setup() 193 sw[SW_IDLE] = subwin(stdscr, cstate_lines, win_cols/2 + 1, pos_y, 0); in pt_display_setup() 194 sw[SW_FREQ] = subwin(stdscr, cstate_lines, win_cols/2 - 8, pos_y, in pt_display_setup() 197 pos_y += cstate_lines + BLANK_LINE; in pt_display_setup() 198 sw[SW_WAKEUPS] = subwin(stdscr, SINGLE_LINE_SW, win_cols, pos_y, 0); in pt_display_setup() 200 pos_y += NEXT_LINE; in pt_display_setup() 201 sw[SW_POWER] = subwin(stdscr, SINGLE_LINE_SW, win_cols, pos_y, 0); in pt_display_setup() 203 pos_y += NEXT_LINE + BLANK_LINE; in pt_display_setup() [all …]
|