HomeSort by relevance Sort by last modified time
    Searched refs:search_entry (Results 1 - 3 of 3) sorted by null

  /external/lldb/include/lldb/Core/
UniqueCStringMap.h 165 Entry search_entry (unique_cstr);
167 const_iterator pos = std::lower_bound (m_map.begin(), end, search_entry);
185 Entry search_entry (unique_cstr);
187 const_iterator pos = std::lower_bound (m_map.begin(), end, search_entry);
227 Entry search_entry (unique_cstr);
229 for (pos = std::lower_bound (m_map.begin(), end, search_entry); pos != end; ++pos)
326 Entry search_entry (unique_cstr);
329 iterator lower_pos = std::lower_bound (begin, end, search_entry);
334 iterator upper_pos = std::upper_bound (lower_pos, end, search_entry);
  /external/lldb/source/Symbol/
LineTable.cpp 193 Entry search_entry; local
194 search_entry.file_addr = so_addr.GetFileAddress();
195 if (search_entry.file_addr != LLDB_INVALID_ADDRESS)
199 entry_collection::const_iterator pos = lower_bound(begin_pos, end_pos, search_entry, Entry::EntryAddressLessThan);
204 if (pos->file_addr != search_entry.file_addr)
206 else if (pos->file_addr == search_entry.file_addr)
220 if (pos->file_addr != search_entry.file_addr)
233 if (prev_pos->file_addr == search_entry.file_addr &&
  /system/media/camera/src/
camera_metadata.c 631 camera_metadata_buffer_entry_t *search_entry = NULL; local
634 search_entry = bsearch(&key,
639 if (search_entry == NULL) return NOT_FOUND;
640 index = search_entry - get_entries(src);
643 camera_metadata_buffer_entry_t *search_entry = get_entries(src); local
644 for (index = 0; index < src->entry_count; index++, search_entry++) {
645 if (search_entry->tag == tag) {
    [all...]

Completed in 128 milliseconds