Lines Matching refs:stored
131 setup->fs.stored = NULL; in lp_setup_reset()
1011 boolean new_scene = (setup->fs.stored == NULL); in try_update_scene_state()
1024 struct lp_jit_viewport *stored; in try_update_scene_state() local
1026 stored = (struct lp_jit_viewport *) in try_update_scene_state()
1029 if (!stored) { in try_update_scene_state()
1034 memcpy(stored, setup->viewports, sizeof setup->viewports); in try_update_scene_state()
1036 setup->fs.current.jit_context.viewports = stored; in try_update_scene_state()
1041 uint8_t *stored; in try_update_scene_state() local
1049 stored = lp_scene_alloc_aligned(scene, size, LP_MIN_VECTOR_ALIGN); in try_update_scene_state()
1051 if (!stored) { in try_update_scene_state()
1057 fstored = (float*)(stored + 4*16); in try_update_scene_state()
1066 stored[i*16 + j] = c; in try_update_scene_state()
1069 setup->blend_color.stored = stored; in try_update_scene_state()
1070 setup->fs.current.jit_context.u8_blend_color = stored; in try_update_scene_state()
1104 void *stored; in try_update_scene_state() local
1106 stored = lp_scene_alloc(scene, current_size); in try_update_scene_state()
1107 if (!stored) { in try_update_scene_state()
1112 memcpy(stored, in try_update_scene_state()
1116 setup->constants[i].stored_data = stored; in try_update_scene_state()
1136 if (!setup->fs.stored || in try_update_scene_state()
1137 memcmp(setup->fs.stored, in try_update_scene_state()
1141 struct lp_rast_state *stored; in try_update_scene_state() local
1147 stored = (struct lp_rast_state *) lp_scene_alloc(scene, sizeof *stored); in try_update_scene_state()
1148 if (!stored) { in try_update_scene_state()
1153 memcpy(stored, in try_update_scene_state()
1156 setup->fs.stored = stored; in try_update_scene_state()
1187 assert(setup->fs.stored); in try_update_scene_state()