HomeSort by: relevance | last modified time | path
    Searched refs:overlap (Results 1 - 25 of 80) sorted by relevancy

1 2 3 4

  /src/sys/kern/
vfs_lockf.c 235 struct lockf ***prev, struct lockf **overlap)
239 *overlap = lf;
244 lf_print("lf_findoverlap: looking for overlap in", lock);
252 *overlap = lf = lf->lf_next;
260 * OK, check for overlap
263 * 0) no overlap
264 * 1) overlap == lock
265 * 2) overlap contains lock
266 * 3) lock contains overlap
267 * 4) overlap starts before loc
416 struct lockf *overlap, **prev; local
483 struct lockf **prev, *overlap, *lf = *(lock->lf_head); local
510 struct lockf **prev, *overlap, *ltmp; local
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
ctrl_iface_named_pipe.c 62 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.hEvent)
544 OVERLAPPED overlap; member in struct:wpa_global_dst
    [all...]
  /src/external/lgpl3/gmp/dist/tests/mpq/
t-md_2exp.c 164 int i, muldiv, sign, overlap; local
198 for (overlap = 0; overlap <= 1; overlap++)
200 q = overlap ? got : sep;
215 printf ("%s wrong at data[%d], sign %d, overlap %d\n",
216 name, i, sign, overlap);
  /src/external/lgpl3/mpc/dist/src/
balls.c 145 int overlap = (z == z1); local
147 if (!overlap) {
163 int overlap = (z == z1 || z == z2); local
166 if (overlap)
173 if (overlap)
192 int overlap = (z == z1); local
194 /* Compute the error first in case there is overlap. */
200 if (!overlap)
217 additional variable even when there is no overlap. */
244 int overlap = (z == z1 || z == z2) local
292 int overlap = (z == z1); local
323 int overlap = (z == z1 || z == z2); local
    [all...]
sin_cos.c 29 int overlap; local
32 overlap = (rop_sin == op || rop_cos == op);
33 if (overlap) {
170 if (overlap)
236 int overlap; local
239 overlap = (rop_sin == op || rop_cos == op);
240 if (overlap) {
264 if (overlap)
mul.c 144 int overlap = z == x || z == y; local
147 if (overlap)
167 if (overlap)
179 int overlap, inex_re, inex_im; local
184 overlap = (z == x) || (z == y);
185 if (overlap)
196 if (overlap)
213 int overlap; local
216 /* overlap is quite difficult to handle, because we have to tentatively
226 overlap = (rop == op1) || (rop == op2)
    [all...]
div.c 168 /* warning: rop may overlap with z,w so treat the imaginary part first */
191 int overlap = (rop == z) || (rop == w); local
195 mpc_ptr dest = (overlap) ? tmprop : rop;
202 if (overlap)
211 if (overlap) {
  /src/external/mpl/bind/dist/bin/tests/system/isctest/vars/
all.py 32 overlap = keys.intersection(m.keys())
33 if overlap:
34 raise RuntimeError(f"key(s) are defined multiple times: {overlap}")
  /src/external/bsd/libfido2/dist/src/
hid_win.c 38 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...]
  /src/games/gomoku/
makemove.c 241 * still an overlap.
256 overlap[a * FAREA + b] &= 0xA;
257 overlap[b * FAREA + a] &= 0xC;
261 overlap[a * FAREA + b] = 0;
262 overlap[b * FAREA + a] = 0;
266 overlap[a * FAREA + b] &= 0xAF;
267 overlap[b * FAREA + a] &= 0xCF;
269 overlap[a * FAREA + b] &= 0xF;
270 overlap[b * FAREA + a] &= 0xF;
275 /* else no change, still multiple overlap */
    [all...]
bdinit.c 173 * Each entry in the overlap array is a bit mask with eight bits corresponding
174 * to whether frame B overlaps frame A (as indexed by overlap[A * FAREA + B]).
189 * spot will be removed from the overlap array by setting the entry to 0.
198 /* compute the multiple spot overlap values */
232 * Given a single spot 's' of frame A, update the overlap information for
252 u_char *op = &overlap[fia * FAREA + fib];
262 memset(overlap, 0, sizeof(overlap));
gomoku.h 46 * calculating spot coordinates. The left and right border overlap, to save a
266 extern u_char overlap[FAREA * FAREA];
  /src/external/gpl3/binutils/dist/gprofng/src/
gmon_hist.cc 298 which may overlap one more symbol address ranges. If a symbol
304 SYM_HIGH_PC) as shown in the following diagram. OVERLAP computes
329 four bytes of text space and never have any overlap (the two end
337 bfd_vma overlap; local
383 overlap =
385 if (overlap > 0)
389 "[assign_samples] [0x%lx,0x%lx) %s gets %f ticks %ld overlap\n",
392 symtab->base[j].name, overlap * count_time / hist_scale,
393 (long) overlap));
395 credit = overlap * count_time / hist_scale
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-predicate-analysis.h 124 bool overlap (gphi *, unsigned, hash_set<gphi *> *);
  /src/external/lgpl3/gmp/dist/tests/devel/
try.c 85 as s[i].high has no effect. Maybe encode s[i].high into overlap->s[i].
97 When there's no overlap, run with both src>dst and src<dst. A subtle
366 /* Default is allow full overlap. */
373 char overlap; member in struct:try_t
784 p->overlap = OVERLAP_NOT_DST2;
827 p->overlap = OVERLAP_LOW_TO_HIGH;
843 p->overlap = OVERLAP_NOT_SRC2;
897 p->overlap = OVERLAP_NONE;
983 p->overlap = OVERLAP_NONE;
990 p->overlap = OVERLAP_LOW_TO_HIGH
2234 struct overlap_t *overlap, *overlap_limit; variable in typeref:struct:overlap_t
    [all...]
  /src/sys/dev/ic/
arn5416.c 355 int chain, int nxpdgains, uint8_t overlap, uint8_t *boundaries,
389 AR5416_PD_GAIN_ICEPTS, overlap, boundaries, pdadcs);
404 if (boundaries[i] > AR_MAX_RATE_POWER - overlap)
405 boundaries[i] = AR_MAX_RATE_POWER - overlap;
424 uint8_t overlap, txgain; local
431 overlap = MS(AR_READ(sc, AR_PHY_TPCRG5),
435 overlap = modal->pdGainOverlap;
485 overlap = 6;
488 ar5416_get_pdadcs(sc, c, i, nxpdgains, overlap,
494 overlap);
    [all...]
arn9287.c 264 int chain, int nxpdgains, uint8_t overlap, uint8_t *boundaries,
293 AR9287_PD_GAIN_ICEPTS, overlap, boundaries, pdadcs);
341 uint8_t overlap; local
346 overlap = MS(AR_READ(sc, AR_PHY_TPCRG5),
350 overlap = eep->modalHeader.pdGainOverlap;
401 ar9287_get_pdadcs(sc, c, i, nxpdgains, overlap,
407 overlap);
arn9285.c 708 int nxpdgains, uint8_t overlap, uint8_t *boundaries, uint8_t *pdadcs)
734 AR9285_PD_GAIN_ICEPTS, overlap, boundaries, pdadcs);
744 uint8_t overlap; local
749 overlap = MS(AR_READ(sc, AR_PHY_TPCRG5),
753 overlap = eep->modalHeader.pdGainOverlap;
770 ar9285_get_pdadcs(sc, c, nxpdgains, overlap, boundaries, pdadcs);
773 reg = SM(AR_PHY_TPCRG5_PD_GAIN_OVERLAP, overlap);
  /src/usr.bin/diff3/
diff3.c 122 * components of "de" contain line positions. Array overlap indicates which
126 static char *overlap; variable
176 { "show-overlap", no_argument, NULL, 'E' },
177 { "overlap-only", no_argument, NULL, 'x' },
541 overlap[j] = !dup;
599 if (!oflag || !overlap[n]) {
606 if (!oflag || !overlap[n]) {
643 if (!oflag || !overlap[n]) {
668 if (!oflag || !overlap[n]) {
687 if (!oflag || !overlap[n])
    [all...]
  /src/external/gpl3/binutils/dist/gprof/
hist.c 327 which may overlap one more symbol address ranges. If a symbol
333 SYM_HIGH_PC) as shown in the following diagram. OVERLAP computes
358 four bytes of text space and never have any overlap (the two end
366 bfd_vma overlap, addr; local
412 overlap =
414 if (overlap > 0)
418 "[assign_samples] [0x%lx,0x%lx) %s gets %f ticks %ld overlap\n",
421 symtab->base[j].name, overlap * count_time / hist_scale,
422 (long) overlap));
425 credit = overlap * count_time / hist_scale
    [all...]
  /src/external/gpl3/binutils.old/dist/gprof/
hist.c 327 which may overlap one more symbol address ranges. If a symbol
333 SYM_HIGH_PC) as shown in the following diagram. OVERLAP computes
358 four bytes of text space and never have any overlap (the two end
366 bfd_vma overlap, addr; local
412 overlap =
414 if (overlap > 0)
418 "[assign_samples] [0x%lx,0x%lx) %s gets %f ticks %ld overlap\n",
421 symtab->base[j].name, overlap * count_time / hist_scale,
422 (long) overlap));
425 credit = overlap * count_time / hist_scale
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-predicate-analysis.h 156 bool overlap (gphi *, unsigned, hash_set<gphi *> *, const predicate &);
  /src/external/lgpl3/gmp/dist/mpn/x86/p6/
copyd.asm 34 C P6: 1.75 cycles/limb, or 0.75 if no overlap
92 C The usual overlap is
  /src/sbin/fsck_udf/
main.c 608 /* NOTE returns non 0 for overlap, not an error code */
618 int overlap = 0; local
644 overlap++;
646 if (overlap == 0)
649 /* overlap */
650 // pwarn("%s allocation OVERLAP found, type %d\n",
668 return overlap;
674 /* no overlap */
679 /* NOTE returns non 0 for overlap, not an error code */
684 struct udf_fsck_overlap *overlap; local
3950 struct udf_fsck_overlap *overlap; local
    [all...]
  /src/sys/netinet/
tcp_input.c 622 int overlap = q->ipqe_seq + q->ipqe_len - pkt_seq; local
623 m_adj(m, overlap);
624 rcvpartdupbyte += overlap;
628 pkt_len += q->ipqe_len - overlap;
629 rcvoobyte -= overlap;
642 int overlap = pkt_seq + pkt_len - q->ipqe_seq; local
643 m_adj(m, -overlap);
644 pkt_len -= overlap;
645 rcvpartdupbyte += overlap;
647 rcvoobyte -= overlap;
    [all...]

Completed in 50 milliseconds

1 2 3 4