/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | ctrl_iface_named_pipe.c | 62 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/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/ |
H A D | zpool_import_missing_003_pos.ksh | 173 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/tests/sys/cddl/zfs/tests/cli_root/zpool_import/ |
H A D | zpool_import_missing_003_pos.ksh | 171 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/libfido2/src/ |
H A D | hid_win.c | 38 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/tools/test/stress2/misc/ |
H A D | overlap.sh | 42 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/sys/kern/ |
H A D | kern_lockf.c | 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 1052 LIST_FOREACH(overlap, &state->ls_pending, lf_link) { in lf_add_incoming() [all …]
|
/freebsd/sys/dev/wdatwd/ |
H A D | wdatwd.c | 451 int overlap; in wdat_compare_region() local 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() 485 int overlap; in wdat_merge_region() local 492 overlap = OVERLAP_NONE; in wdat_merge_region() 495 overlap = wdat_compare_region(res1, newres); in wdat_merge_region() [all …]
|
/freebsd/usr.sbin/bhyve/ |
H A D | mem.c | 103 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() 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/lib/libc/amd64/string/ |
H A D | memmove.S | 52 .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/usr.bin/gprof/ |
H A D | gprof.c | 477 unsigned long overlap; in asgnsamples() local 513 overlap = min(pch, svalue1) - max(pcl, svalue0); in asgnsamples() 514 if (overlap > 0) { in asgnsamples() 520 overlap * thetime / scale, overlap); in asgnsamples() 523 nl[j].time += overlap * thetime / scale; in asgnsamples()
|
/freebsd/usr.bin/bsdiff/bsdiff/ |
H A D | bsdiff.c | 125 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/sys/compat/linuxkpi/common/src/ |
H A D | linux_aperture.c | 144 static bool overlap(resource_size_t base1, resource_size_t end1, in overlap() function 175 if (overlap(base, end, ap->base, ap->base + ap->size)) { in devm_aperture_acquire() 261 if (!overlap(base, end, ap->base, ap->base + ap->size)) in aperture_detach_devices()
|
/freebsd/usr.bin/diff3/ |
H A D | diff3.c | 121 static char *overlap; variable 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() 833 if (!oflag || !overlap[n]) { in mergescript() 916 q = reallocarray(overlap, newsz, 1); in increase() 920 overlap = q; in increase()
|
/freebsd/contrib/ncurses/ncurses/base/ |
H A D | lib_overlay.c | 47 overlap(const WINDOW *const src, WINDOW *const dst, int const flag) in overlap() function 113 returnCode(overlap(win1, win2, TRUE)); in overlay() 130 returnCode(overlap(win1, win2, FALSE)); in overwrite()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrFormats.td | 68 // 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/lib/libvgl/ |
H A D | mouse.c | 381 int overlap; in VGLMouseOverlap() local 386 overlap = (VGLMouseXpos + VGLMouseAndMask->VXsize) - x; in VGLMouseOverlap() 388 overlap = (x + width) - VGLMouseXpos; in VGLMouseOverlap() 389 if (overlap <= 0) in VGLMouseOverlap() 392 overlap = (VGLMouseYpos + VGLMouseAndMask->VYsize) - y; in VGLMouseOverlap() 394 overlap = (y + hight) - VGLMouseYpos; in VGLMouseOverlap() 395 return overlap > 0; in VGLMouseOverlap()
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | atmel-classd.txt | 31 - atmel,non-overlap-time 54 atmel,non-overlap-time = <10>;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | MemoryTagManagerAArch64MTE.cpp | 168 MemoryRegionInfos::const_iterator overlap = std::adjacent_find( in MakeTaggedRanges() local 173 UNUSED_IF_ASSERT_DISABLED(overlap); in MakeTaggedRanges() 174 assert(overlap == memory_regions.end()); in MakeTaggedRanges()
|
/freebsd/tests/sys/netpfil/pf/ |
H A D | frag6.py | 131 overlap = sp.IPv6(src="2001:db8::1", dst="2001:db8::2") \ 134 frags = [ frags[0], frags[1], overlap, frags[2] ]
|
/freebsd/sys/dev/mlx5/mlx5_accel/ |
H A D | ipsec.h | 87 u8 overlap : 1; member 151 u8 overlap: 1; member
|
/freebsd/sys/amd64/amd64/ |
H A D | support.S | 285 .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=0 begin=COPYINOUT_BEGIN end=COPYINOUT_SMAP_END [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticRefactoringKinds.td | 22 "not overlap with the AST nodes of interest">;
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | armada-xp-matrix.dts | 25 * RAM are not usable due to the overlap with the MBus
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | RSA_public_encrypt.pod | 64 B<to> and B<from> may overlap. 76 B<to> and B<from> may overlap.
|
/freebsd/crypto/openssl/crypto/bn/asm/ |
H A D | bn-c64xplus.asm | 125 SPKERNEL 2,0 ; fully overlap BNOP RA,5 149 SPKERNEL 0,0 ; fully overlap BNOP RA,5
|