Home | History | Annotate | Download | only in i18n

Lines Matching refs:states

32 $states{"pop"} = 255;    # Add the "pop"  to the list of defined state names.
65 if ($states{$state_name} != 0) {
68 $states{$state_name} = $num_states;
164 # We read all states first, before writing anything, so that the state numbers
165 # for the destination states are all available to be written.
187 # Check that all of the destination states have been defined
190 $states{"exit"} = 0; # Predefined state name, terminates state machine.
192 if ($states{$state_dest_state[$state]} == 0 && $state_dest_state[$state] ne "exit") {
196 if ($state_push_state[$state] ne "" && $states{$state_push_state[$state]} == 0) {
282 print " {doNOP, 0, 0, 0, TRUE}\n"; # State 0 is a dummy. Real states start with index = 1.
291 print " $states{$state_dest_state[$state]},";
298 print " $states{$state_push_state[$state]},";