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

/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dctrl_iface_named_pipe.c68 OVERLAPPED overlap; member in struct:wpa_ctrl_dst
96 LPOVERLAPPED overlap);
103 LPOVERLAPPED overlap);
153 dst->overlap.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
154 if (dst->overlap.hEvent == NULL) {
160 eloop_register_event(dst->overlap.hEvent,
161 sizeof(dst->overlap.hEvent),
187 if (ConnectNamedPipe(dst->pipe, &dst->overlap)) {
204 if (SetEvent(dst->overlap.hEvent))
232 if (dst->overlap
260 ctrl_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
352 ctrl_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
547 OVERLAPPED overlap; member in struct:wpa_global_dst
691 global_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
768 global_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
[all...]
/freebsd-9.3-release/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-9.3-release/sys/kern/
H A Dkern_lockf.c842 * Return non-zero if locks 'x' and 'y' overlap.
985 struct lockf_entry *overlap; local
988 LIST_FOREACH(overlap, &state->ls_active, lf_link) {
993 if (overlap->lf_start > lock->lf_end)
995 if (!lf_blocks(lock, overlap))
1003 error = lf_add_edge(lock, overlap);
1023 LIST_FOREACH(overlap, &state->ls_pending, lf_link) {
1024 if (!lf_blocks(lock, overlap))
1031 error = lf_add_edge(lock, overlap);
1053 struct lockf_entry *overlap; local
1206 struct lockf_entry *overlap, *lf; local
1542 struct lockf_entry *overlap; local
1649 struct lockf_entry *overlap; local
1691 lf_findoverlap(struct lockf_entry **overlap, struct lockf_entry *lock, int type) argument
[all...]
/freebsd-9.3-release/usr.bin/gprof/
H A Dgprof.c466 * as shown in the following diagram. overlap computes the
491 * have any overlap (the two end cases, above).
501 unsigned long overlap; local
537 overlap = min(pch, svalue1) - max(pcl, svalue0);
538 if (overlap > 0) {
541 printf("[asgnsamples] (0x%lx->0x%lx-0x%lx) %s gets %f ticks %lu overlap\n",
544 overlap * time / scale, overlap);
547 nl[j].time += overlap * time / scale;
/freebsd-9.3-release/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-9.3-release/usr.bin/bsdiff/bsdiff/
H A Dbsdiff.c209 off_t overlap,Ss,lens; local
315 overlap=(lastscan+lenf)-(scan-lenb);
317 for(i=0;i<overlap;i++) {
318 if(new[lastscan+lenf-overlap+i]==
319 old[lastpos+lenf-overlap+i]) s++;
325 lenf+=lens-overlap;
/freebsd-9.3-release/sys/geom/vinum/
H A Dgeom_vinum_raid5.c147 int overlap; local
153 overlap = 0;
159 overlap++;
164 overlap++;
169 return (overlap);
/freebsd-9.3-release/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-9.3-release/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-9.3-release/sys/i386/i386/
H A Dvm86.c488 goto overlap;
503 overlap:
504 panic("vm86_addpage: overlap");
/freebsd-9.3-release/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.

Completed in 124 milliseconds