Searched refs:inserted (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-current/contrib/libevent/test/
H A Dregress_minheap.c58 struct event *inserted[1024]; local
65 inserted[i] = malloc(sizeof(struct event));
66 set_random_timeout(inserted[i]);
67 min_heap_push_(&heap, inserted[i]);
74 min_heap_erase_(&heap, inserted[i]);
91 free(inserted[i]);
/freebsd-current/contrib/ntp/sntp/libevent/test/
H A Dregress_minheap.c58 struct event *inserted[1024]; local
65 inserted[i] = malloc(sizeof(struct event));
66 set_random_timeout(inserted[i]);
67 min_heap_push_(&heap, inserted[i]);
74 min_heap_erase_(&heap, inserted[i]);
91 free(inserted[i]);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_origin.h94 bool inserted = local
98 if (inserted && flags().origin_history_per_stack_limit > 0)
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h44 u32 Put(args_type args, bool *inserted = nullptr);
116 bool *inserted) {
117 if (inserted)
118 *inserted = false;
146 if (inserted) *inserted = true;
168 // the hash table, but the only issue is a few items inserted by parent
115 Put(args_type args, bool *inserted) argument
H A Dsanitizer_chained_origin_depot.cpp131 bool inserted; local
132 *new_id = depot.Put(desc, &inserted);
133 return inserted;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_origin.h131 bool inserted = ChainedOriginDepotPut(h.id(), prev.raw_id(), &chained_id); local
134 if (inserted && flags()->origin_history_per_stack_limit > 0)
/freebsd-current/usr.sbin/config/
H A Dlang.l260 * token to be inserted at the end of the include file. If ateof == 0,
261 * then nothing is inserted.
/freebsd-current/contrib/diff/src/
H A Dcontext.c221 If lines were inserted here in file 1, this is "changed".
223 prefix = (next->inserted > 0 ? "!" : "-");
242 while (next && next->line1 + next->inserted <= i)
251 Otherwise it is "inserted". */
366 /* Then output the inserted part. */
368 k = next->inserted;
407 top1 = start->line1 + start->inserted;
426 It should be 1 if all the lines inserted or deleted in that change
H A Dutil.c518 the line is inserted, deleted, changed, etc.). */
656 Return UNCHANGED if only ignorable lines are inserted or deleted,
658 NEW if lines of file 1 are inserted,
689 l1 = next->line1 + next->inserted - 1;
691 show_to += next->inserted;
728 /* If all inserted or deleted lines are ignorable,
780 long int inserted = sp->inserted;
782 line0, line1, deleted, inserted);
769 long int inserted = sp->inserted; local
H A Ddiff.h211 and some are inserted.
215 INSERTED is the number of lines inserted here in file 1.
223 lin inserted; /* # lines of file 1 changed here. */
226 lin line1; /* Line number of 1st inserted line. */
221 lin inserted; /* # lines of file 1 changed here. */ member in struct:change
H A Danalyze.c76 XMID - YMID equals the number of inserted lines minus the number
687 INSERTED is the number of lines inserted here in file 1.
693 add_change (lin line0, lin line1, lin deleted, lin inserted,
700 new->inserted = inserted;
706 /* Scan the tables of which lines are inserted and deleted,
743 /* Scan the tables of which lines are inserted and deleted,
689 add_change(lin line0, lin line1, lin deleted, lin inserted, struct change *old) argument
/freebsd-current/sys/kern/
H A Dkern_khelp.c72 int error, i, inserted; local
74 error = inserted = 0;
104 inserted = 1;
109 if (!inserted)
H A Dkern_cpu.c734 int i, inserted; local
747 inserted = 0;
761 inserted = 1;
765 if (inserted == 0) {
H A Dkern_shutdown.c1318 bool inserted; local
1336 inserted = false;
1340 inserted = true;
1345 if (!inserted)
/freebsd-current/sys/netinet/tcp_stacks/
H A Dtailq_hash.c246 int inserted = 0; local
294 inserted = 1;
299 if (inserted == 0) {
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DBasicBlockSectionsProfileReader.cpp407 [[maybe_unused]] bool inserted = local
410 assert(inserted);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp377 bool inserted; local
378 // See if we have inserted this module aready into filtered_modules. If we
381 std::tie(iter, inserted) = module_name_to_filtered_index.try_emplace(
384 if (inserted) {
386 // the index that was inserted into module_name_to_filtered_index using
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp433 LLVM_ATTRIBUTE_UNUSED auto inserted = local
435 assert(inserted.second && "BaseType metadata was already inserted");
/freebsd-current/contrib/llvm-project/lldb/source/Host/posix/
H A DMainLoopPosix.cpp265 const bool inserted = local
267 if (!inserted) {
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp169 bool inserted = pair.second; local
170 if (!inserted) {
709 bool inserted = pair.second; local
710 if (inserted) {
H A DSymbolTable.cpp546 bool inserted = false; local
553 inserted = true;
555 return {sym, inserted};
/freebsd-current/sys/netinet/
H A Dsctp_indata.c917 int inserted; local
1015 inserted = 0;
1024 inserted = 1;
1039 if (inserted == 0) {
1455 int inserted = 0; local
1552 "chunk is a not first fsn: %u needs to be inserted\n",
1575 inserted = 1;
1599 if (inserted == 0) {
2217 unsigned char inserted = 0; local
2225 inserted
[all...]
/freebsd-current/sys/netgraph/
H A Dng_ppp.c1496 * o Received fragments are inserted into a queue, for which we
1526 int i, diff, inserted; local
1609 inserted = 0;
1614 inserted = 1;
1623 if (!inserted)
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.cpp747 bool inserted = entries.insert(sym); local
748 if (inserted) {
2002 auto [it, inserted] = bindings.insert(
2005 if (inserted) {
/freebsd-current/contrib/bmake/unit-tests/
H A Ddirective-for-escape.mk83 # Each of these words is now inserted in the body of the .for loop.

Completed in 375 milliseconds

12