Searched refs:search_entry (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.2-release/contrib/ntp/sntp/tests/
H A DkodDatabase.c37 TEST_ASSERT_EQUAL(1, search_entry(HOST, &result));
60 TEST_ASSERT_EQUAL(1, search_entry(HOST1, &result));
64 TEST_ASSERT_EQUAL(1, search_entry(HOST2, &result));
68 TEST_ASSERT_EQUAL(1, search_entry(HOST3, &result));
86 TEST_ASSERT_EQUAL(0, search_entry(HOST_NOTADD, &result));
99 TEST_ASSERT_EQUAL(1, search_entry(HOST, &result1));
109 TEST_ASSERT_EQUAL(1, search_entry(HOST, &result2));
131 TEST_ASSERT_EQUAL(1, search_entry(HOST2, &result));
136 TEST_ASSERT_EQUAL(0, search_entry(HOST2, &result));
139 TEST_ASSERT_EQUAL(1, search_entry(HOST
[all...]
H A DkodFile.c51 TEST_ASSERT_EQUAL(1, search_entry("192.0.2.5", &res));
56 TEST_ASSERT_EQUAL(1, search_entry("192.0.2.100", &res));
71 TEST_ASSERT_EQUAL(1, search_entry("192.0.2.5", &res));
76 TEST_ASSERT_EQUAL(1, search_entry("192.0.2.100", &res));
81 TEST_ASSERT_EQUAL(1, search_entry("example.com", &res));
H A DpacketHandling.c270 TEST_ASSERT_EQUAL(1, search_entry(HOSTNAME, &entry));
/freebsd-10.2-release/contrib/ntp/sntp/
H A Dkod_management.h12 int search_entry(const char *hostname, struct kod_entry **dst);
H A Dkod_management.c22 search_entry( function
H A Dmain.c813 if (search_entry(hostname, &reason)) {
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUniqueCStringMap.h165 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);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Symbol/
H A DLineTable.cpp193 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 &&

Completed in 49 milliseconds