Home
last modified time | relevance | path

Searched refs:temp_int (Results 1 – 2 of 2) sorted by relevance

/src/contrib/ee/
H A Dee.c300 int tabshift(int temp_int);
1050 tabshift(int temp_int) in tabshift() argument
1054 leftover = ((temp_int + 1) % 8); in tabshift()
3786 int counter, temp_int; in paint_menu() local
3824 temp_int = counter + 2; in paint_menu()
3827 temp_int = counter; in paint_menu()
3829 wmove(menu_win, temp_int, 1); in paint_menu()
3831 wmove(menu_win, temp_int, (max_width - 2)); in paint_menu()
3840 temp_int = 1; in paint_menu()
3845 temp_int = 0; in paint_menu()
[all …]
/src/sys/kern/
H A Dkern_sysctl.c1641 int temp_int = temp; in sysctl_handle_bool() local
1643 error = SYSCTL_OUT(req, &temp_int, sizeof(temp_int)); in sysctl_handle_bool()
1657 int temp_int; in sysctl_handle_bool() local
1659 error = SYSCTL_IN(req, &temp_int, sizeof(temp_int)); in sysctl_handle_bool()
1661 *(bool *)arg1 = temp_int != 0 ? 1 : 0; in sysctl_handle_bool()