Lines Matching refs:stored
125 setup->fs.stored = NULL; in lp_setup_reset()
778 boolean new_scene = (setup->fs.stored == NULL); in try_update_scene_state()
784 uint8_t *stored; in try_update_scene_state() local
787 stored = lp_scene_alloc_aligned(scene, 4 * 16, 16); in try_update_scene_state()
788 if (!stored) { in try_update_scene_state()
797 stored[i*16 + j] = c; in try_update_scene_state()
800 setup->blend_color.stored = stored; in try_update_scene_state()
801 setup->fs.current.jit_context.blend_color = setup->blend_color.stored; in try_update_scene_state()
819 void *stored; in try_update_scene_state() local
821 stored = lp_scene_alloc(scene, current_size); in try_update_scene_state()
822 if (!stored) { in try_update_scene_state()
827 memcpy(stored, in try_update_scene_state()
831 setup->constants.stored_data = stored; in try_update_scene_state()
845 if (!setup->fs.stored || in try_update_scene_state()
846 memcmp(setup->fs.stored, in try_update_scene_state()
850 struct lp_rast_state *stored; in try_update_scene_state() local
857 stored = (struct lp_rast_state *) lp_scene_alloc(scene, sizeof *stored); in try_update_scene_state()
858 if (!stored) { in try_update_scene_state()
863 memcpy(stored, in try_update_scene_state()
866 setup->fs.stored = stored; in try_update_scene_state()
894 assert(setup->fs.stored); in try_update_scene_state()