HomeSort by: relevance | last modified time | path
    Searched defs:inserted (Results 1 - 25 of 55) sorted by relevancy

1 2 3

  /src/external/bsd/libevent/dist/test/
regress_minheap.c 59 struct event *inserted[1024]; local
66 inserted[i] = malloc(sizeof(struct event));
67 set_random_timeout(inserted[i]);
68 min_heap_push_(&heap, inserted[i]);
75 min_heap_erase_(&heap, inserted[i]);
92 free(inserted[i]);
  /src/external/bsd/ntp/dist/sntp/libevent/test/
regress_minheap.c 60 struct event *inserted[1024]; local
67 inserted[i] = malloc(sizeof(struct event));
68 set_random_timeout(inserted[i]);
69 min_heap_push_(&heap, inserted[i]);
76 min_heap_erase_(&heap, inserted[i]);
93 free(inserted[i]);
  /src/external/gpl3/gdb.old/dist/gdbserver/
inferiors.cc 45 bool inserted = m_ptid_thread_map.insert ({ id, &new_thread }).second; local
48 gdb_assert (inserted);
  /src/external/gpl3/gdb/dist/gdbserver/
inferiors.cc 45 bool inserted = m_ptid_thread_map.insert ({ id, &new_thread }).second; local
48 gdb_assert (inserted);
  /src/sys/arch/evbmips/alchemy/
omsal400.c 235 uint16_t inserted = 0; local
239 inserted = !AUGPIO_READ(5); /* pin 5 */
243 return inserted;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
node_handle.h 398 bool inserted = false; member in struct:_Node_insert_return
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
node_handle.h 397 bool inserted = false; member in struct:_Node_insert_return
  /src/sys/dev/fdt/
fdt_memory.c 184 bool inserted = false; local
199 inserted = true;
202 if (!inserted)
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_chained_origin_depot.cc 111 bool inserted; local
112 ChainedOriginDepotNode::Handle h = chainedOriginDepot.Put(desc, &inserted);
114 return inserted;
msan_origin.h 132 bool inserted = ChainedOriginDepotPut(h.id(), prev.raw_id(), &chained_id); local
135 if (inserted && flags()->origin_history_per_stack_limit > 0)
  /src/external/gpl3/gcc/dist/gcc/
splay-tree-utils.cc 169 bool inserted = tree.insert (node, compare); local
170 ASSERT_TRUE (inserted);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_chained_origin_depot.cpp 131 bool inserted; local
132 *new_id = depot.Put(desc, &inserted);
133 return inserted;
  /src/external/gpl3/gcc.old/dist/gcc/
splay-tree-utils.cc 169 bool inserted = tree.insert (node, compare); local
170 ASSERT_TRUE (inserted);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_chained_origin_depot.cpp 132 bool inserted; local
133 *new_id = depot.Put(desc, &inserted);
134 return inserted;
  /src/external/bsd/openldap/dist/servers/slapd/
sl_malloc.c 535 int i, inserted = 0, order = -1; local
562 inserted = 1;
585 if (!inserted) {
613 inserted = 1;
634 if ( !inserted ) {
zn_malloc.c 470 int i, k, inserted = 0, idx; local
523 inserted = 1;
553 if (!inserted) {
585 inserted = 1;
614 if ( !inserted ) {
  /src/external/gpl2/diffutils/dist/src/
util.c 513 the line is inserted, deleted, changed, etc.). */
651 Return UNCHANGED if only ignorable lines are inserted or deleted,
653 NEW if lines of file 1 are inserted,
682 l1 = next->line1 + next->inserted - 1;
684 show_to += next->inserted;
711 /* If all inserted or deleted lines are ignorable,
763 long inserted = sp->inserted;
765 line0, line1, deleted, inserted);
752 long inserted = sp->inserted; local
diff.h 210 and some are inserted.
214 INSERTED is the number of lines inserted here in file 1.
217 which the insertion was done; vice versa for INSERTED and LINE1. */
222 lin inserted; /* # lines of file 1 changed here. */
225 lin line1; /* Line number of 1st inserted line. */
220 lin inserted; \/* # lines of file 1 changed here. *\/ member in struct:change
  /src/external/mpl/bind/dist/tests/dns/
qp_test.c 223 int inserted, n; local
235 inserted = n = 0;
258 order[inserted++] = ival;
272 n = inserted;
302 assert_int_equal(n, inserted);
305 * if there are enough items inserted, try going
309 if (inserted > 3) {
  /src/external/bsd/nsd/dist/
xfrd-tcp.c 306 uint8_t inserted[65536]; local
317 /* keep track if values are already inserted, using the bitmap
319 memset(inserted, 0, sizeof(inserted[0])*max);
327 if(!inserted[t]) {
329 inserted[t] = 1;
332 inserted[j] = 1;
  /src/external/gpl2/xcvs/dist/diff/
diff.h 192 and some are inserted.
196 INSERTED is the number of lines inserted here in file 1.
199 which the insertion was done; vice versa for INSERTED and LINE1. */
204 int inserted; /* # lines of file 1 changed here. */
207 int line1; /* Line number of 1st inserted line. */
202 int inserted; \/* # lines of file 1 changed here. *\/ member in struct:change
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
throw_allocator.h 133 std::pair<map_alloc_type::iterator, bool> inserted local
135 if (!inserted.second)
139 log_to_string(error, *inserted.first);
158 auto inserted = map_construct().insert(std::make_pair(p, get_label())); local
159 if (!inserted.second)
163 log_to_string(error, *inserted.first);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
throw_allocator.h 131 std::pair<map_alloc_type::iterator, bool> inserted local
133 if (!inserted.second)
137 log_to_string(error, *inserted.first);
156 auto inserted = map_construct().insert(std::make_pair(p, get_label())); local
157 if (!inserted.second)
161 log_to_string(error, *inserted.first);
  /src/external/gpl3/gdb.old/dist/gdb/
objfiles.c 167 bool inserted = objfile->static_links.emplace (block, static_link).second;
168 gdb_assert (inserted);
846 /* Return 1 if SECTION should be inserted into the section map.
166 bool inserted = objfile->static_links.emplace (block, static_link).second; local
  /src/external/gpl3/gdb/dist/gdb/
objfiles.c 166 bool inserted = objfile->static_links.emplace (block, static_link).second;
167 gdb_assert (inserted);
845 /* Return 1 if SECTION should be inserted into the section map.
165 bool inserted = objfile->static_links.emplace (block, static_link).second; local

Completed in 97 milliseconds

1 2 3