Home | History | Annotate | Download | only in Gimpact

Lines Matching defs:start_index

214         GUINT start_index = (hashkey%m_table_size)*m_node_size;
215 GUINT end_index = start_index + m_node_size;
217 while(start_index<end_index)
219 GUINT value = m_hash_table[start_index];
222 if(nodesptr[value].m_key == hashkey) return start_index;
224 start_index++;
234 GUINT start_index = (hashkey%m_table_size)*m_node_size;
235 GUINT end_index = start_index + m_node_size;
237 while(start_index<end_index)
239 GUINT value = m_hash_table[start_index];
244 avaliable_index = start_index;
249 return start_index;
251 start_index++;