Lines Matching full:current
125 memory_content *current = env->movcal_backup; in helper_discard_movcal_backup() local
127 while(current) in helper_discard_movcal_backup()
129 memory_content *next = current->next; in helper_discard_movcal_backup()
130 g_free(current); in helper_discard_movcal_backup()
131 env->movcal_backup = current = next; in helper_discard_movcal_backup()
132 if (current == NULL) in helper_discard_movcal_backup()
139 memory_content **current = &(env->movcal_backup); in helper_ocbi() local
140 while (*current) in helper_ocbi()
142 uint32_t a = (*current)->address; in helper_ocbi()
145 memory_content *next = (*current)->next; in helper_ocbi()
146 cpu_stl_data(env, a, (*current)->value); in helper_ocbi()
150 env->movcal_backup_tail = current; in helper_ocbi()
153 g_free(*current); in helper_ocbi()
154 *current = next; in helper_ocbi()