Home
last modified time | relevance | path

Searched refs:state_slot (Results 1 – 25 of 55) sorted by relevance

123

/dports/games/retroarch/RetroArch-1.9.7/tasks/
H A Dtask_save.c105 int state_slot; member
793 else if (state->state_slot < 0) in task_save_handler()
801 state->state_slot); in task_save_handler()
846 state->state_slot = settings->ints.state_slot; in task_push_undo_save_state()
1016 if (state->state_slot < 0) in task_load_handler()
1312 int state_slot = settings->ints.state_slot; in task_push_save_state() local
1328 state->state_slot = state_slot; in task_push_save_state()
1403 int state_slot = settings->ints.state_slot; in task_push_load_and_save_state() local
1433 state->state_slot = state_slot; in task_push_load_and_save_state()
1595 int state_slot = settings->ints.state_slot; in content_load_state() local
[all …]
/dports/games/libretro-picodrive/picodrive-600894e/platform/gizmondo/
H A Demu.c324 if ( emu_check_save_file(state_slot) && in RunEvents()
371 state_slot -= 1; in RunEvents()
372 if(state_slot < 0) state_slot = 9; in RunEvents()
374 state_slot += 1; in RunEvents()
375 if(state_slot > 9) state_slot = 0; in RunEvents()
377 …sprintf(noticeMsg, "SAVE SLOT %i [%s]", state_slot, emu_check_save_file(state_slot) ? "USED" : "FR… in RunEvents()
H A Dmenu.c575 state_slot = menu_sel; in savestate_menu_loop()
1014 { "Save slot", MB_RANGE, MA_OPT_SAVE_SLOT, &state_slot, 0, 0, 9, 1, 1 },
1204 state_slot++; if (state_slot > 9) state_slot = 0; in menu_loop_options()
1205 } else {state_slot--; if (state_slot < 0) state_slot = 9; in menu_loop_options()
/dports/games/kodi-addon-game.libretro.picodrive/game.libretro.picodrive-1.97.0.19-Matrix/depends/common/picodrive/platform/gizmondo/
H A Demu.c327 if ( emu_check_save_file(state_slot) && in RunEvents()
374 state_slot -= 1; in RunEvents()
375 if(state_slot < 0) state_slot = 9; in RunEvents()
377 state_slot += 1; in RunEvents()
378 if(state_slot > 9) state_slot = 0; in RunEvents()
380 …sprintf(noticeMsg, "SAVE SLOT %i [%s]", state_slot, emu_check_save_file(state_slot) ? "USED" : "FR… in RunEvents()
H A Dmenu.c575 state_slot = menu_sel; in savestate_menu_loop()
1015 { "Save slot", MB_RANGE, MA_OPT_SAVE_SLOT, &state_slot, 0, 0, 9, 1, 1 },
1205 state_slot++; if (state_slot > 9) state_slot = 0; in menu_loop_options()
1206 } else {state_slot--; if (state_slot < 0) state_slot = 9; in menu_loop_options()
/dports/games/libretro-pcsx_rearmed/pcsx_rearmed-c2d67cd/frontend/
H A Dmain.c52 int state_slot; variable
177 ret = emu_load_state(state_slot); in do_emu_action()
181 ret = emu_save_state(state_slot); in do_emu_action()
190 state_slot++; in do_emu_action()
191 if (state_slot > 9) in do_emu_action()
192 state_slot = 0; in do_emu_action()
195 state_slot--; in do_emu_action()
196 if (state_slot < 0) in do_emu_action()
197 state_slot = 9; in do_emu_action()
199 snprintf(hud_msg, sizeof(hud_msg), "STATE SLOT %d [%s]", state_slot, in do_emu_action()
[all …]
H A Dmain.h37 extern int state_slot;
/dports/games/kodi-addon-game.libretro.pcsx-rearmed/game.libretro.pcsx-rearmed-22.0.0.19-Matrix/depends/common/pcsx-rearmed/frontend/
H A Dmain.c52 int state_slot; variable
177 ret = emu_load_state(state_slot); in do_emu_action()
181 ret = emu_save_state(state_slot); in do_emu_action()
190 state_slot++; in do_emu_action()
191 if (state_slot > 9) in do_emu_action()
192 state_slot = 0; in do_emu_action()
195 state_slot--; in do_emu_action()
196 if (state_slot < 0) in do_emu_action()
197 state_slot = 9; in do_emu_action()
199 snprintf(hud_msg, sizeof(hud_msg), "STATE SLOT %d [%s]", state_slot, in do_emu_action()
[all …]
H A Dmain.h37 extern int state_slot;
/dports/devel/py-numba/numba-0.51.2/numba/core/
H A Dgenerators.py287 state_slot = cgutils.gep_inbounds(builder, gen_state_ptr,
290 val = self.context.unpack_value(builder, ty, state_slot)
320 state_slot = cgutils.gep_inbounds(self.builder, self.gen_state_ptr,
328 self.context.pack_value(self.builder, ty, val, state_slot)
341 state_slot = cgutils.gep_inbounds(self.builder, self.gen_state_ptr,
344 val = self.context.unpack_value(self.builder, ty, state_slot)
/dports/games/libretro-picodrive/picodrive-600894e/platform/psp/
H A Demu.c725 if ( emu_check_save_file(state_slot) && in RunEvents()
766 state_slot -= 1; in RunEvents()
767 if(state_slot < 0) state_slot = 9; in RunEvents()
769 state_slot += 1; in RunEvents()
770 if(state_slot > 9) state_slot = 0; in RunEvents()
772 emu_status_msg("SAVE SLOT %i [%s]", state_slot, in RunEvents()
773 emu_check_save_file(state_slot) ? "USED" : "FREE"); in RunEvents()
H A Dmenu.c576 state_slot = menu_sel; in savestate_menu_loop()
1193 { "Save slot", MB_RANGE, MA_OPT_SAVE_SLOT, &state_slot, 0, 0, 9, 1, 1 },
1372 state_slot++; if (state_slot > 9) state_slot = 0; in menu_loop_options()
1373 } else {state_slot--; if (state_slot < 0) state_slot = 9; in menu_loop_options()
/dports/games/libretro-picodrive/picodrive-600894e/platform/common/
H A Demu.c53 int state_slot = 0; variable
520 state_slot = newest_slot; in emu_reload_rom()
1095 if ( emu_check_save_file(state_slot, NULL) && in run_events_ui()
1138 state_slot -= 1; in run_events_ui()
1139 if (state_slot < 0) in run_events_ui()
1140 state_slot = 9; in run_events_ui()
1142 state_slot += 1; in run_events_ui()
1143 if (state_slot > 9) in run_events_ui()
1144 state_slot = 0; in run_events_ui()
1147 emu_status_msg("SAVE SLOT %i [%s]", state_slot, in run_events_ui()
[all …]
H A Dmain.c106 state_slot = load_state_slot; in main()
/dports/games/kodi-addon-game.libretro.picodrive/game.libretro.picodrive-1.97.0.19-Matrix/depends/common/picodrive/platform/common/
H A Demu.c57 int state_slot = 0; variable
524 state_slot = newest_slot; in emu_reload_rom()
1100 if ( emu_check_save_file(state_slot, NULL) && in run_events_ui()
1144 state_slot -= 1; in run_events_ui()
1145 if (state_slot < 0) in run_events_ui()
1146 state_slot = 9; in run_events_ui()
1148 state_slot += 1; in run_events_ui()
1149 if (state_slot > 9) in run_events_ui()
1150 state_slot = 0; in run_events_ui()
1153 emu_status_msg("SAVE SLOT %i [%s]", state_slot, in run_events_ui()
[all …]
H A Dmain.c113 state_slot = load_state_slot; in main()
/dports/games/kodi-addon-game.libretro.picodrive/game.libretro.picodrive-1.97.0.19-Matrix/depends/common/picodrive/platform/psp/
H A Demu.c744 if ( emu_check_save_file(state_slot) && in RunEvents()
785 state_slot -= 1; in RunEvents()
786 if(state_slot < 0) state_slot = 9; in RunEvents()
788 state_slot += 1; in RunEvents()
789 if(state_slot > 9) state_slot = 0; in RunEvents()
791 emu_status_msg("SAVE SLOT %i [%s]", state_slot, in RunEvents()
792 emu_check_save_file(state_slot) ? "USED" : "FREE"); in RunEvents()
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgxclrast.c241 tile_slot *state_slot; in clist_playback_band() local
401 &state, &state_tile, &state_slot, in clist_playback_band()
683 state_slot->index, in clist_playback_band()
689 depth = state_slot->cb_depth; in clist_playback_band()
692 raster = state_slot->cb_raster; in clist_playback_band()
693 source = (byte *) (state_slot + 1); in clist_playback_band()
799 sti:state_slot = in clist_playback_band()
807 state_tile.size.y = state_slot->height; in clist_playback_band()
810 state_slot->x_reps; in clist_playback_band()
812 state_slot->y_reps; in clist_playback_band()
[all …]
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgxclrast.c241 tile_slot *state_slot; in clist_playback_band() local
401 &state, &state_tile, &state_slot, in clist_playback_band()
683 state_slot->index, in clist_playback_band()
689 depth = state_slot->cb_depth; in clist_playback_band()
692 raster = state_slot->cb_raster; in clist_playback_band()
693 source = (byte *) (state_slot + 1); in clist_playback_band()
799 sti:state_slot = in clist_playback_band()
807 state_tile.size.y = state_slot->height; in clist_playback_band()
810 state_slot->x_reps; in clist_playback_band()
812 state_slot->y_reps; in clist_playback_band()
[all …]
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgxclrast.c491 tile_slot *state_slot; in clist_playback_band() local
556 memset(&state_slot, 0, sizeof(state_slot)); in clist_playback_band()
930 state_slot->index, in clist_playback_band()
936 depth = state_slot->cb_depth; in clist_playback_band()
939 raster = state_slot->cb_raster; in clist_playback_band()
940 source = (byte *) (state_slot + 1); in clist_playback_band()
1051 sti:state_slot = in clist_playback_band()
1062 state_slot->x_reps; in clist_playback_band()
1064 state_slot->y_reps; in clist_playback_band()
1066 state_tile.shift = state_slot->shift; in clist_playback_band()
[all …]
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgxclrast.c491 tile_slot *state_slot; in clist_playback_band() local
556 memset(&state_slot, 0, sizeof(state_slot)); in clist_playback_band()
930 state_slot->index, in clist_playback_band()
936 depth = state_slot->cb_depth; in clist_playback_band()
939 raster = state_slot->cb_raster; in clist_playback_band()
940 source = (byte *) (state_slot + 1); in clist_playback_band()
1051 sti:state_slot = in clist_playback_band()
1062 state_slot->x_reps; in clist_playback_band()
1064 state_slot->y_reps; in clist_playback_band()
1066 state_tile.shift = state_slot->shift; in clist_playback_band()
[all …]
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgxclrast.c493 tile_slot *state_slot; in clist_playback_band() local
561 memset(&state_slot, 0, sizeof(state_slot)); in clist_playback_band()
958 state_slot->index, in clist_playback_band()
964 depth = state_slot->cb_depth; in clist_playback_band()
967 raster = state_slot->cb_raster; in clist_playback_band()
968 source = (byte *) (state_slot + 1); in clist_playback_band()
1110 sti:state_slot = in clist_playback_band()
1121 state_slot->x_reps; in clist_playback_band()
1123 state_slot->y_reps; in clist_playback_band()
1125 state_tile.shift = state_slot->shift; in clist_playback_band()
[all …]
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgxclrast.c493 tile_slot *state_slot; in clist_playback_band() local
561 memset(&state_slot, 0, sizeof(state_slot)); in clist_playback_band()
958 state_slot->index, in clist_playback_band()
964 depth = state_slot->cb_depth; in clist_playback_band()
967 raster = state_slot->cb_raster; in clist_playback_band()
968 source = (byte *) (state_slot + 1); in clist_playback_band()
1110 sti:state_slot = in clist_playback_band()
1121 state_slot->x_reps; in clist_playback_band()
1123 state_slot->y_reps; in clist_playback_band()
1125 state_tile.shift = state_slot->shift; in clist_playback_band()
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgxclrast.c494 tile_slot *state_slot; in clist_playback_band() local
571 memset(&state_slot, 0, sizeof(state_slot)); in clist_playback_band()
989 state_slot->index, in clist_playback_band()
995 depth = state_slot->cb_depth; in clist_playback_band()
1000 raster = state_slot->cb_raster; in clist_playback_band()
1001 source = (byte *) (state_slot + 1); in clist_playback_band()
1145 sti:state_slot = in clist_playback_band()
1156 state_slot->x_reps; in clist_playback_band()
1158 state_slot->y_reps; in clist_playback_band()
1160 state_tile.shift = state_slot->shift; in clist_playback_band()
[all …]
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgxclrast.c494 tile_slot *state_slot; in clist_playback_band() local
571 memset(&state_slot, 0, sizeof(state_slot)); in clist_playback_band()
989 state_slot->index, in clist_playback_band()
995 depth = state_slot->cb_depth; in clist_playback_band()
1000 raster = state_slot->cb_raster; in clist_playback_band()
1001 source = (byte *) (state_slot + 1); in clist_playback_band()
1145 sti:state_slot = in clist_playback_band()
1156 state_slot->x_reps; in clist_playback_band()
1158 state_slot->y_reps; in clist_playback_band()
1160 state_tile.shift = state_slot->shift; in clist_playback_band()
[all …]

123