Home
last modified time | relevance | path

Searched refs:next_entry_index (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/micro/memory_planner/
Dgreedy_memory_planner.cc120 if (start->next_entry_index == -1) { in NextSimultaneouslyActiveBuffer()
123 candidate_next_entry = &buffers_sorted_by_offset_[start->next_entry_index]; in NextSimultaneouslyActiveBuffer()
131 if (candidate_next_entry->next_entry_index == -1) { in NextSimultaneouslyActiveBuffer()
135 &buffers_sorted_by_offset_[candidate_next_entry->next_entry_index]; in NextSimultaneouslyActiveBuffer()
183 first_entry->next_entry_index = -1; // to mark the entry as end of list in CalculateOffsetsIfNeeded()
261 first_entry->next_entry_index = first_entry_index_; in CalculateOffsetsIfNeeded()
268 const int next_entry_index = current_entry->next_entry_index; in CalculateOffsetsIfNeeded() local
269 if (next_entry_index == -1) { in CalculateOffsetsIfNeeded()
271 current_entry->next_entry_index = new_entry_index; in CalculateOffsetsIfNeeded()
272 new_entry->next_entry_index = -1; in CalculateOffsetsIfNeeded()
[all …]
Dgreedy_memory_planner.h94 int next_entry_index; member
/external/cpu_features/ndk_compat/
Dcpu-features.c62 int next_entry_index = CpuFeatures_StringView_IndexOfChar(line, ','); in parse_cpu_mask_line() local
63 if (next_entry_index < 0) { in parse_cpu_mask_line()
67 StringView entry = CpuFeatures_StringView_KeepFront(line, next_entry_index); in parse_cpu_mask_line()
69 line = CpuFeatures_StringView_PopFront(line, next_entry_index + 1); in parse_cpu_mask_line()