Home
last modified time | relevance | path

Searched full:overlap (Results 1 – 25 of 690) sorted by relevance

12345678910>>...28

/freebsd/contrib/wpa/wpa_supplicant/
H A Dctrl_iface_named_pipe.c62 OVERLAPPED overlap; member
90 LPOVERLAPPED overlap);
97 LPOVERLAPPED overlap);
147 dst->overlap.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL); in ctrl_open_pipe()
148 if (dst->overlap.hEvent == NULL) { in ctrl_open_pipe()
154 eloop_register_event(dst->overlap.hEvent, in ctrl_open_pipe()
155 sizeof(dst->overlap.hEvent), in ctrl_open_pipe()
181 if (ConnectNamedPipe(dst->pipe, &dst->overlap)) { in ctrl_open_pipe()
198 if (SetEvent(dst->overlap.hEvent)) in ctrl_open_pipe()
226 if (dst->overlap.hEvent) { in ctrl_close_pipe()
[all …]
/freebsd/sys/kern/
H A Dkern_lockf.c833 * Return non-zero if locks 'x' and 'y' overlap.
975 struct lockf_entry *overlap; in lf_add_outgoing() local
978 LIST_FOREACH(overlap, &state->ls_active, lf_link) { in lf_add_outgoing()
983 if (overlap->lf_start > lock->lf_end) in lf_add_outgoing()
985 if (!lf_blocks(lock, overlap)) in lf_add_outgoing()
993 error = lf_add_edge(lock, overlap); in lf_add_outgoing()
1013 LIST_FOREACH(overlap, &state->ls_pending, lf_link) { in lf_add_outgoing()
1014 if (!lf_blocks(lock, overlap)) in lf_add_outgoing()
1021 error = lf_add_edge(lock, overlap); in lf_add_outgoing()
1043 struct lockf_entry *overlap; in lf_add_incoming() local
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_missing_003_pos.ksh173 typeset -i overlap=1
177 while (( overlap <= $GROUP_NUM )); do
179 (( begin = $GROUP_NUM - overlap ))
180 (( end = 2 * $GROUP_NUM - overlap - 1 ))
203 'mirror') (( overlap == $GROUP_NUM )) && \
206 'raidz') (( overlap > 1 )) && \
209 'draid') (( overlap > 1 )) && \
229 (( overlap = overlap + 1 ))
/freebsd/usr.bin/clang/llvm-profdata/
H A Dllvm-profdata.147 \fI\%overlap\fP
399 .SH OVERLAP
402 \fBllvm\-profdata overlap\fP [\fIoptions\fP] [\fIbase profile file\fP] [\fItest profile file\fP]
405 \fBllvm\-profdata overlap\fP takes two profile data files and displays the
406 \fIoverlap\fP of counter distribution between the whole files and between any of the
409 In this command, \fIoverlap\fP is defined as follows:
419 \fIoverlap\fP = min(c1_1/sum_1, c2_1/sum_2) + min(c1_2/sum_1, c2_2/sum_2) + ...
422 The result overlap distribution is a percentage number, ranging from 0.0% to
423 100.0%, where 0.0% means there is no overlap and 100.0% means a perfect
424 overlap.
[all …]
/freebsd/contrib/libfido2/src/
H A Dhid_win.c38 OVERLAPPED overlap; member
431 if ((ctx->overlap.hEvent = CreateEventA(NULL, FALSE, FALSE, in fido_hid_open()
453 if (ctx->overlap.hEvent != NULL) { in fido_hid_close()
456 if (CancelIoEx(ctx->dev, &ctx->overlap) == 0) in fido_hid_close()
460 CloseHandle(ctx->overlap.hEvent); in fido_hid_close()
490 ResetEvent(ctx->overlap.hEvent); in fido_hid_read()
492 &ctx->overlap) == 0 && GetLastError() != ERROR_IO_PENDING) { in fido_hid_read()
500 if (ms > -1 && WaitForSingleObject(ctx->overlap.hEvent, in fido_hid_read()
506 if (GetOverlappedResult(ctx->dev, &ctx->overlap, &n, TRUE) == 0) { in fido_hid_read()
527 OVERLAPPED overlap; in fido_hid_write() local
[all …]
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_import/
H A Dzpool_import_missing_003_pos.ksh171 typeset -i overlap=1
175 while (( overlap <= $GROUP_NUM )); do
177 (( begin = $GROUP_NUM - overlap ))
178 (( end = 2 * $GROUP_NUM - overlap - 1 ))
201 'mirror') (( overlap == $GROUP_NUM )) && \
204 'raidz') (( overlap > 1 )) && \
224 (( overlap = overlap + 1 ))
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h157 /// Set union. If \p RHS is guaranteed to not overlap with this, \ref set may
183 for (IntervalT Overlap : Overlaps) variable
184 insert(Overlap.first, Overlap.second);
191 // If there is no overlap with Other, the intersection is empty. in intersectWithComplement()
196 // intersect an overlap. in intersectWithComplement()
197 for (IntervalT Overlap : Overlaps) { in intersectWithComplement() local
199 std::tie(OlapStart, OlapStop) = Overlap; in intersectWithComplement()
207 // Split the overlap interval into up to two parts: one from [CurrStart, in intersectWithComplement()
402 /// true if there is any overlap.
418 /// interval which do not overlap with this.
[all …]
/freebsd/sys/dev/wdatwd/
H A Dwdatwd.c438 #define OVERLAP_NONE 0x0 // no overlap.
451 int overlap; in wdat_compare_region() local
455 * b) res2 and res1 have no overlap. == OVERLAP_NONE in wdat_compare_region()
457 * d) res2 and res1 overlap partially. == OVERLAP_START or in wdat_compare_region()
461 overlap = 0; in wdat_compare_region()
465 overlap |= OVERLAP_NONE; in wdat_compare_region()
468 overlap |= OVERLAP_SUBSET; in wdat_compare_region()
470 overlap |= OVERLAP_START; in wdat_compare_region()
472 overlap |= OVERLAP_END; in wdat_compare_region()
475 return (overlap); in wdat_compare_region()
[all …]
/freebsd/tools/test/stress2/misc/
H A Doverlap.sh42 sed '1,/^EOF/d' < $0 > /tmp/overlap.c
43 mycc -o /tmp/overlap -Wall -Wextra -O2 /tmp/overlap.c -lpthread || exit 1
44 rm -f /tmp/overlap.c
54 (cd $mntpoint; /tmp/overlap)
61 rm -f /tmp/overlap
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp745 void InstrProfValueSiteRecord::overlap(InstrProfValueSiteRecord &Input, in overlap() function in llvm::InstrProfValueSiteRecord
747 OverlapStats &Overlap, in overlap() argument
759 Overlap.Base.ValueCounts[ValueKind], in overlap()
760 Overlap.Test.ValueCounts[ValueKind]); in overlap()
771 Overlap.Overlap.ValueCounts[ValueKind] += Score; in overlap()
772 FuncLevelOverlap.Overlap.ValueCounts[ValueKind] += FuncLevelScore; in overlap()
778 OverlapStats &Overlap, in overlapValueProfData() argument
790 ThisSiteRecords[I].overlap(OtherSiteRecords[I], ValueKind, Overlap, in overlapValueProfData()
794 void InstrProfRecord::overlap(InstrProfRecord &Other, OverlapStats &Overlap, in overlap() function in llvm::InstrProfRecord
814 Overlap.addOneMismatch(FuncLevelOverlap.Test); in overlap()
[all …]
/freebsd/usr.sbin/bhyve/
H A Dmem.c103 struct mmio_rb_range *overlap; in mmio_rb_add() local
105 overlap = RB_INSERT(mmio_rb_tree, rbt, new); in mmio_rb_add()
107 if (overlap != NULL) { in mmio_rb_add()
109 printf("overlap detected: new %lx:%lx, tree %lx:%lx, '%s' " in mmio_rb_add()
112 overlap->mr_base, overlap->mr_end, in mmio_rb_add()
113 new->mr_param.name, overlap->mr_param.name); in mmio_rb_add()
/freebsd/sys/powerpc/powerpc/
H A Dptrace_machdep.c90 * Doubleword 0 of VSR0-VSR31 overlap with FPR0-FPR31 and in cpu_ptrace()
91 * VSR32-VSR63 overlap with VR0-VR31, so we only copy in cpu_ptrace()
109 * Doubleword 0 of VSR0-VSR31 overlap with FPR0-FPR31 and in cpu_ptrace()
110 * VSR32-VSR63 overlap with VR0-VR31, so we only copy in cpu_ptrace()
/freebsd/usr.bin/gprof/
H A Dgprof.c442 * as shown in the following diagram. overlap computes the
467 * have any overlap (the two end cases, above).
477 unsigned long overlap; in asgnsamples() local
513 overlap = min(pch, svalue1) - max(pcl, svalue0); in asgnsamples()
514 if (overlap > 0) { in asgnsamples()
517 printf("[asgnsamples] (0x%lx->0x%lx-0x%lx) %s gets %f ticks %lu overlap\n", in asgnsamples()
520 overlap * thetime / scale, overlap); in asgnsamples()
523 nl[j].time += overlap * thetime / scale; in asgnsamples()
/freebsd/lib/libc/amd64/string/
H A Dmemmove.S52 .macro MEMMOVE erms overlap begin end
62 .if \overlap == 1
191 .if \overlap == 1
300 MEMMOVE erms=0 overlap=1 begin=MEMMOVE_BEGIN end=MEMMOVE_END
304 MEMMOVE erms=0 overlap=1 begin=MEMMOVE_BEGIN end=MEMMOVE_END
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrFormats.td68 // cannot overlap the source mask register (v0), unless the destination vector
73 // EMUL is at least 1. The destination vector register group cannot overlap
78 // destination vector register group cannot overlap with the source vector
82 // * vmsbf.m/vmsif.m/vmsof.m: The destination register cannot overlap the
83 // source register and, if masked, cannot overlap the mask register ('v0').
85 // * viota: The destination register cannot overlap the source register and,
86 // if masked, cannot overlap the mask register ('v0').
89 // overlap the source vector register group.
91 // * vrgather: The destination vector register group cannot overlap with the
94 // * vcompress: The destination vector register group cannot overlap the
[all …]
/freebsd/usr.bin/bsdiff/bsdiff/
H A Dbsdiff.c125 off_t overlap,Ss,lens; in main()
244 overlap=(lastscan+lenf)-(scan-lenb); in main()
246 for(i=0;i<overlap;i++) { in main()
247 if(new[lastscan+lenf-overlap+i]== in main()
248 old[lastpos+lenf-overlap+i]) s++; in main()
254 lenf+=lens-overlap; in main()
124 off_t overlap,Ss,lens; main() local
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp65 "overlap",
66 "Computes and displays the overlap between two profiles. See detailed "
68 "https://llvm.org/docs/CommandGuide/llvm-profdata.html#profdata-overlap");
321 // Options specific to overlap subcommand.
344 "Function level overlap information for every function (with calling "
624 /// Computer the overlap b/w profile BaseFilename and TestFileName,
625 /// and store the program level result to Overlap.
628 OverlapStats &Overlap, in overlapInput() argument
647 WC->Writer.overlapRecord(std::move(I), Overlap, FuncOverlap, FuncFilter); in overlapInput()
1718 /// Computer the overlap b/w profile BaseFilename and profile TestFilename.
[all …]
/freebsd/usr.bin/diff3/
H A Ddiff3.c117 * components of "de" contain line positions. Array overlap indicates which
121 static char *overlap; variable
172 { "show-overlap", no_argument, NULL, 'E' },
173 { "overlap-only", no_argument, NULL, 'x' },
611 overlap[j] = !dup; in edit()
678 if (!oflag || !overlap[n]) { in edscript()
685 if (!oflag || !overlap[n]) { in edscript()
723 if (!oflag || !overlap[n]) { in Ascript()
745 if (!oflag || !overlap[n]) { in Ascript()
764 if (!oflag || !overlap[n]) { in Ascript()
[all …]
/freebsd/tests/sys/netpfil/pf/
H A Dfrag6.py130 # Fragment with overlap
131 overlap = sp.IPv6(src="2001:db8::1", dst="2001:db8::2") \
134 frags = [ frags[0], frags[1], overlap, frags[2] ]
/freebsd/contrib/diff/man/
H A Ddiff3.114 \fB\-E\fR \fB\-\-show\-overlap\fR
20 \fB\-x\fR \fB\-\-overlap\-only\fR
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Datmel-classd.txt31 - atmel,non-overlap-time
54 atmel,non-overlap-time = <10>;
/freebsd/lib/libc/string/
H A Dbcopy.353 The two strings may overlap.
83 If the input and output buffer do not overlap, then
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_overlay.c47 overlap(const WINDOW *const src, WINDOW *const dst, int const flag) in overlap() function
51 T((T_CALLED("overlap(%p,%p,%d)"), (const void *) src, (void *) dst, flag)); in overlap()
113 returnCode(overlap(win1, win2, TRUE)); in overlay()
130 returnCode(overlap(win1, win2, FALSE)); in overwrite()
/freebsd/share/man/man9/
H A Dbus_adjust_resource.953 The new resource range must overlap the existing range of
86 The new address range does not overlap with the existing address range of
/freebsd/crypto/openssl/crypto/modes/
H A Dwrap128.c41 * Input and output buffers can overlap if block function
90 * Input and output buffers can overlap if block function
140 * Input and output buffers can overlap if block function
175 * Input and output buffers can overlap if block function
241 * Input and output buffers can overlap if block function

12345678910>>...28