Searched refs:overlap (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-current/contrib/wpa/wpa_supplicant/
H A Dctrl_iface_named_pipe.c62 OVERLAPPED overlap; member in struct:wpa_ctrl_dst
90 LPOVERLAPPED overlap);
97 LPOVERLAPPED overlap);
147 dst->overlap.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
148 if (dst->overlap.hEvent == NULL) {
154 eloop_register_event(dst->overlap.hEvent,
155 sizeof(dst->overlap.hEvent),
181 if (ConnectNamedPipe(dst->pipe, &dst->overlap)) {
198 if (SetEvent(dst->overlap.hEvent))
226 if (dst->overlap
254 ctrl_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
345 ctrl_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
544 OVERLAPPED overlap; member in struct:wpa_global_dst
688 global_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
764 global_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
[all...]
/freebsd-current/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-current/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-current/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-current/contrib/libfido2/src/
H A Dhid_win.c38 OVERLAPPED overlap; member in struct:hid_win
431 if ((ctx->overlap.hEvent = CreateEventA(NULL, FALSE, FALSE,
453 if (ctx->overlap.hEvent != NULL) {
456 if (CancelIoEx(ctx->dev, &ctx->overlap) == 0)
460 CloseHandle(ctx->overlap.hEvent);
490 ResetEvent(ctx->overlap.hEvent);
492 &ctx->overlap) == 0 && GetLastError() != ERROR_IO_PENDING) {
500 if (ms > -1 && WaitForSingleObject(ctx->overlap.hEvent,
506 if (GetOverlappedResult(ctx->dev, &ctx->overlap, &n, TRUE) == 0) {
527 OVERLAPPED overlap; local
[all...]
/freebsd-current/sys/kern/
H A Dkern_lockf.c833 * Return non-zero if locks 'x' and 'y' overlap.
975 struct lockf_entry *overlap; local
978 LIST_FOREACH(overlap, &state->ls_active, lf_link) {
983 if (overlap->lf_start > lock->lf_end)
985 if (!lf_blocks(lock, overlap))
993 error = lf_add_edge(lock, overlap);
1013 LIST_FOREACH(overlap, &state->ls_pending, lf_link) {
1014 if (!lf_blocks(lock, overlap))
1021 error = lf_add_edge(lock, overlap);
1043 struct lockf_entry *overlap; local
1203 struct lockf_entry *overlap, *lf; local
1539 struct lockf_entry *overlap; local
1646 struct lockf_entry *overlap; local
1688 lf_findoverlap(struct lockf_entry **overlap, struct lockf_entry *lock, int type) argument
[all...]
/freebsd-current/sys/dev/wdatwd/
H A Dwdatwd.c438 #define OVERLAP_NONE 0x0 // no overlap.
451 int overlap; local
455 * b) res2 and res1 have no overlap. == OVERLAP_NONE
457 * d) res2 and res1 overlap partially. == OVERLAP_START or
461 overlap = 0;
465 overlap |= OVERLAP_NONE;
468 overlap |= OVERLAP_SUBSET;
470 overlap |= OVERLAP_START;
472 overlap |= OVERLAP_END;
475 return (overlap);
485 int overlap; local
[all...]
/freebsd-current/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-current/sys/compat/linuxkpi/common/src/
H A Dlinux_aperture.c144 static bool overlap(resource_size_t base1, resource_size_t end1, function
175 if (overlap(base, end, ap->base, ap->base + ap->size)) {
261 if (!overlap(base, end, ap->base, ap->base + ap->size))
/freebsd-current/usr.sbin/bhyve/
H A Dmem.c103 struct mmio_rb_range *overlap; local
105 overlap = RB_INSERT(mmio_rb_tree, rbt, new);
107 if (overlap != NULL) {
109 printf("overlap detected: new %lx:%lx, tree %lx:%lx, '%s' "
112 overlap->mr_base, overlap->mr_end,
113 new->mr_param.name, overlap->mr_param.name);
/freebsd-current/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; local
513 overlap = min(pch, svalue1) - max(pcl, svalue0);
514 if (overlap > 0) {
517 printf("[asgnsamples] (0x%lx->0x%lx-0x%lx) %s gets %f ticks %lu overlap\n",
520 overlap * thetime / scale, overlap);
523 nl[j].time += overlap * thetime / scale;
/freebsd-current/usr.bin/bsdiff/bsdiff/
H A Dbsdiff.c125 off_t overlap,Ss,lens; local
244 overlap=(lastscan+lenf)-(scan-lenb);
246 for(i=0;i<overlap;i++) {
247 if(new[lastscan+lenf-overlap+i]==
248 old[lastpos+lenf-overlap+i]) s++;
254 lenf+=lens-overlap;
/freebsd-current/contrib/sendmail/contrib/
H A Dcidrexpand230 for the -O option. By default overlap detection is
236 with a later entry, suppress the overlap from the earlier
/freebsd-current/contrib/ncurses/ncurses/base/
H A Dlib_overlay.c47 overlap(const WINDOW *const src, WINDOW *const dst, int const flag) function
51 T((T_CALLED("overlap(%p,%p,%d)"), (const void *) src, (void *) dst, flag));
113 returnCode(overlap(win1, win2, TRUE));
130 returnCode(overlap(win1, win2, FALSE));
/freebsd-current/usr.bin/diff3/
H A Ddiff3.c117 * components of "de" contain line positions. Array overlap indicates which
121 static char *overlap; variable
171 { "show-overlap", no_argument, NULL, 'E' },
172 { "overlap-only", no_argument, NULL, 'x' },
536 overlap[j] = !dup;
594 if (!oflag || !overlap[n]) {
601 if (!oflag || !overlap[n]) {
638 if (!oflag || !overlap[n]) {
663 if (!oflag || !overlap[n]) {
682 if (!oflag || !overlap[
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DMemoryTagManagerAArch64MTE.cpp167 // and exit early before it sees the overlap.
168 MemoryRegionInfos::const_iterator overlap = std::adjacent_find( local
173 UNUSED_IF_ASSERT_DISABLED(overlap);
174 assert(overlap == memory_regions.end());
187 // If the region doesn't overlap the range at all, ignore it.
/freebsd-current/sys/geom/vinum/
H A Dgeom_vinum_raid5.c150 int overlap; local
156 overlap = 0;
162 overlap++;
167 overlap++;
172 return (overlap);
/freebsd-current/lib/libvgl/
H A Dmouse.c381 int overlap; local
386 overlap = (VGLMouseXpos + VGLMouseAndMask->VXsize) - x;
388 overlap = (x + width) - VGLMouseXpos;
389 if (overlap <= 0)
392 overlap = (VGLMouseYpos + VGLMouseAndMask->VYsize) - y;
394 overlap = (y + hight) - VGLMouseYpos;
395 return overlap > 0;
/freebsd-current/sys/amd64/amd64/
H A Dsupport.S285 .macro MEMMOVE erms overlap begin end
295 .if \overlap == 1
424 .if \overlap == 1
533 MEMMOVE erms=0 overlap=1 begin=MEMMOVE_BEGIN end=MEMMOVE_END
537 MEMMOVE erms=1 overlap=1 begin=MEMMOVE_BEGIN end=MEMMOVE_END
547 MEMMOVE erms=0 overlap=0 begin=MEMMOVE_BEGIN end=MEMMOVE_END
551 MEMMOVE erms=1 overlap=0 begin=MEMMOVE_BEGIN end=MEMMOVE_END
837 MEMMOVE erms=\erms overlap=0 begin=COPYINOUT_BEGIN end=COPYINOUT_SMAP_END
839 MEMMOVE erms=\erms overlap=0 begin=COPYINOUT_BEGIN end=COPYINOUT_END
888 MEMMOVE erms=\erms overlap
[all...]
/freebsd-current/contrib/bmake/mk/
H A Dprogs.mk50 # we need to avoid overlap with its
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp502 // There's at least some overlap between the beginning of the desired range
503 // (addr) and the current range. Figure out where the overlap begins and how
504 // much overlap there is.
511 const size_t overlap = std::min(size, range->range_ref.size() - offset); local
512 return range->range_ref.slice(offset, overlap);
/freebsd-current/sys/contrib/openzfs/lib/libefi/
H A Drdwr_efi.c990 * Sanity-check the input (make sure no partitions overlap)
1269 * the data partition and it would overlap with the reserved
1544 int overlap = 0; local
1547 * make sure no partitions overlap
1609 if (!overlap) {
1617 overlap = 1;
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dbn-c64xplus.asm125 SPKERNEL 2,0 ; fully overlap BNOP RA,5
149 SPKERNEL 0,0 ; fully overlap BNOP RA,5
/freebsd-current/sys/i386/i386/
H A Dvm86.c617 goto overlap;
632 overlap:
633 panic("vm86_addpage: overlap");
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h612 // Function level or program level overlap information.
654 // This is used to filter the functions whose overlap information
687 /// Compute the overlap b/w this record and Input record.
688 void overlap(InstrProfValueSiteRecord &Input, uint32_t ValueKind,
786 /// Compute the overlap b/w this IntrprofRecord and Other.
787 void overlap(InstrProfRecord &Other, OverlapStats &Overlap,
790 /// Compute the overlap of value profile counts.

Completed in 586 milliseconds

12