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

/freebsd-10-stable/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
346 ctrl_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
541 OVERLAPPED overlap; member in struct:wpa_global_dst
685 global_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
762 global_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
[all...]
/freebsd-10-stable/lib/libvgl/
H A Dmouse.c241 int overlap; local
244 overlap = (VGLMouseXpos + MOUSE_IMG_SIZE) - x;
246 overlap = (x + width) - VGLMouseXpos;
247 if (overlap > 0) {
249 overlap = (VGLMouseYpos + MOUSE_IMG_SIZE) - y;
251 overlap = (y + hight) - VGLMouseYpos;
252 if (overlap > 0)
/freebsd-10-stable/sys/kern/
H A Dkern_lockf.c851 * Return non-zero if locks 'x' and 'y' overlap.
994 struct lockf_entry *overlap; local
997 LIST_FOREACH(overlap, &state->ls_active, lf_link) {
1002 if (overlap->lf_start > lock->lf_end)
1004 if (!lf_blocks(lock, overlap))
1012 error = lf_add_edge(lock, overlap);
1032 LIST_FOREACH(overlap, &state->ls_pending, lf_link) {
1033 if (!lf_blocks(lock, overlap))
1040 error = lf_add_edge(lock, overlap);
1062 struct lockf_entry *overlap; local
1215 struct lockf_entry *overlap, *lf; local
1551 struct lockf_entry *overlap; local
1658 struct lockf_entry *overlap; local
1700 lf_findoverlap(struct lockf_entry **overlap, struct lockf_entry *lock, int type) argument
[all...]
/freebsd-10-stable/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\n",
111 overlap->mr_base, overlap->mr_end);
/freebsd-10-stable/usr.bin/gprof/
H A Dgprof.c455 * as shown in the following diagram. overlap computes the
480 * have any overlap (the two end cases, above).
490 unsigned long overlap; local
526 overlap = min(pch, svalue1) - max(pcl, svalue0);
527 if (overlap > 0) {
530 printf("[asgnsamples] (0x%lx->0x%lx-0x%lx) %s gets %f ticks %lu overlap\n",
533 overlap * thetime / scale, overlap);
536 nl[j].time += overlap * thetime / scale;
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A Dlib_overlay.c46 overlap(const WINDOW *const src, WINDOW *const dst, int const flag) function
55 T((T_CALLED("overlap(%p,%p,%d)"), src, dst, flag));
114 returnCode(overlap(win1, win2, TRUE));
131 returnCode(overlap(win1, win2, FALSE));
/freebsd-10-stable/usr.bin/bsdiff/bsdiff/
H A Dbsdiff.c220 off_t overlap,Ss,lens; local
344 overlap=(lastscan+lenf)-(scan-lenb);
346 for(i=0;i<overlap;i++) {
347 if(new[lastscan+lenf-overlap+i]==
348 old[lastpos+lenf-overlap+i]) s++;
354 lenf+=lens-overlap;
/freebsd-10-stable/sys/geom/vinum/
H A Dgeom_vinum_raid5.c147 int overlap; local
153 overlap = 0;
159 overlap++;
164 overlap++;
169 return (overlap);
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h35 overlap(const LiveInterval::Segment &VRSeg, function in namespace:llvm
76 // Provide public access to the underlying map to allow overlap iteration.
/freebsd-10-stable/contrib/gcc/
H A Dregmove.c1677 rtx overlap = 0; /* need to move insn ? */
1752 if (overlap && GET_MODE (PREV_INSN (p)) != VOIDmode)
1854 overlap = p;
1889 if (overlap)
1891 /* The lifetime of src and dest overlap,
1895 remove_note (overlap, src_note);
1898 && try_auto_increment (overlap, insn, 0, src, insn_const, 0))
1899 insn = overlap;
1919 if (! overlap && (code == PLUS || code == MINUS))
2022 if (! overlap)
1670 rtx overlap = 0; /* need to move insn ? */ local
[all...]
H A Dstmt.c577 /* Return DECL iff there's an overlap between *REGS and DECL, where DECL
610 /* If there is an overlap between *REGS and DECL, return the first overlap
618 /* Check for overlap between registers marked in CLOBBERED_REGS and
627 tree overlap = tree_overlaps_hard_reg_set (t, clobbered_regs);
629 if (overlap)
632 IDENTIFIER_POINTER (DECL_NAME (overlap)));
636 DECL_REGISTER (overlap) = 0;
1070 /* Do sanity check for overlap between clobbers and respectively
1071 input and outputs that hasn't been handled. Such overlap
621 tree overlap = tree_overlaps_hard_reg_set (t, clobbered_regs); local
[all...]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_delta/
H A Dtext_delta.c635 * create repeating patterns if the source and target ranges overlap.
640 /* If the source and target overlap, repeat the overlapping pattern
645 const apr_size_t overlap = target - source;
646 while (len > overlap)
648 memcpy(target, source, overlap);
649 target += overlap;
650 len -= overlap;
766 * overlap to the beginning of the new buffer. */
637 const apr_size_t overlap = target - source; local
/freebsd-10-stable/sys/i386/i386/
H A Dvm86.c487 goto overlap;
502 overlap:
503 panic("vm86_addpage: overlap");
/freebsd-10-stable/contrib/binutils/gas/config/
H A Dtc-i386.c1769 making sure the overlap of the given operands types is consistent
2524 #define MATCH(overlap, given, template) \
2525 ((overlap & ~JumpAbsolute) \
2527 == ((overlap) & (BaseIndex | JumpAbsolute))))
2530 unless the expected operand type register overlap is null.
/freebsd-10-stable/sys/dev/hyperv/netvsc/
H A Dif_hn.c7153 bool overlap; local
7167 overlap = hn_rndis_check_overlap(pktinfo_off, pktinfo_len,
7169 if (__predict_false(overlap)) {
7171 "pktinfo overlap data, pktinfo abs %d len %d, "
/freebsd-10-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c128529 float overlap = 0.0; local
128633 float overlap = 0.0; local
129068 float overlap; local
[all...]
/freebsd-10-stable/contrib/sqlite3/
H A Dsqlite3.c161795 RtreeDValue overlap = RTREE_ZERO; local
162121 RtreeDValue overlap; local
[all...]

Completed in 942 milliseconds