Lines Matching refs:temp

121   KeywordExt_List *temp;
122 for (temp = _head; temp->rest(); temp = temp->rest())
124 _max_hash_value = temp->first()->_hash_value;
137 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
945 KeywordExt_List *temp;
948 for (temp = _head, index = 0; temp; temp = temp->rest())
950 KeywordExt *keyword = temp->first();
1005 KeywordExt_List *temp;
1010 for (temp = _head, index = 0; temp; temp = temp->rest())
1012 KeywordExt *keyword = temp->first();
1051 for (temp = _head, index = 0; temp; temp = temp->rest())
1053 KeywordExt *keyword = temp->first();
1101 output_keyword_entry (KeywordExt *temp, int stringpool_index, const char *indent)
1104 output_line_directive (temp->_lineno);
1111 output_string (temp->_allchars, temp->_allchars_length);
1114 if (strlen (temp->_rest) > 0)
1115 printf (",%s", temp->_rest);
1120 temp->_hash_value, temp->_final_index);
1176 KeywordExt_List *temp;
1188 for (temp = _head, index = 0; temp; temp = temp->rest())
1190 KeywordExt *keyword = temp->first();
1268 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
1270 int hash_value = temp->first()->_hash_value;
1271 lookup_array[hash_value] = temp->first()->_final_index;
1274 temp->first()->_allchars_length, temp->first()->_allchars, temp->first()->_final_index);
1275 if (temp->first()->_duplicate_link)
1279 dup_ptr->index = temp->first()->_final_index;
1282 for (KeywordExt *ptr = temp->first()->_duplicate_link; ptr; ptr = ptr->_duplicate_link)
1505 KeywordExt_List *temp = list;
1507 temp = temp->rest();
1511 indent, "", temp->first()->_hash_value,
1514 output_switches (list, part1, size1, min_hash_value, temp->first()->_hash_value-1, indent+4);
1521 output_switches (temp, part2, size2, temp->first()->_hash_value, max_hash_value, indent+4);