Home
last modified time | relevance | path

Searched refs:hi_pos (Results 1 – 24 of 24) sorted by relevance

/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/clippy_lints/src/
H A Dlarge_const_arrays.rs61 let hi_pos = item.ident.span.lo() - BytePos::from_usize(1); in check_item() localVariable
63 hi_pos - BytePos::from_usize("const".len()), in check_item()
64 hi_pos, in check_item()
/dports/misc/gnuls/coreutils-8.30/src/
H A Dwc.c271 off_t hi_pos = end_pos - end_pos % (ST_BLKSIZE (fstatus->st) + 1); in wc() local
272 if (0 <= current_pos && current_pos < hi_pos in wc()
273 && 0 <= lseek (fd, hi_pos, SEEK_CUR)) in wc()
274 bytes = hi_pos - current_pos; in wc()
/dports/sysutils/coreutils/coreutils-8.32/src/
H A Dwc.c289 off_t hi_pos = end_pos - end_pos % (ST_BLKSIZE (fstatus->st) + 1); in wc() local
290 if (0 <= current_pos && current_pos < hi_pos in wc()
291 && 0 <= lseek (fd, hi_pos, SEEK_CUR)) in wc()
292 bytes = hi_pos - current_pos; in wc()
/dports/cad/graywolf/graywolf-0.1.6-4-gf47937b/src/twsc/
H A Dpads.h78 INT hi_pos ; /* hi valid position PINFINITY if valid */ member
H A Dconfigpads.c503 &spacing_restricted, &(pad->lo_pos), &(pad->hi_pos) ) ; in update_pad_groups()
521 &(pad->lo_pos), &(pad->hi_pos) );
625 valid_right_edge = MIN( valid_right_edge, padptr->hi_pos ) ;
/dports/cad/graywolf/graywolf-0.1.6-4-gf47937b/src/twmc/
H A Dconfigpads.c499 &spacing_restricted, &(pad->lo_pos), &(pad->hi_pos) ) ; in update_pad_groups()
517 &(pad->lo_pos), &(pad->hi_pos) );
625 valid_right_edge = MIN( valid_right_edge, padptr->hi_pos ) ;
H A Dcustom.h145 INT hi_pos ; /* hi valid position */ member
259 INT hi_pos ; /* hi valid position PINFINITY if valid */ member
/dports/lang/rust/rustc-1.58.1-src/src/tools/rustfmt/src/
H A Dpatterns.rs350 let hi_pos = if let Some(last) = self.attrs.last() { in rewrite() localVariable
368 mk_sp(hi_pos, self.pat.span.lo()), in rewrite()
390 mk_sp(hi_pos, self.pat.span.lo()), in rewrite()
/dports/math/py-jax/jax-0.2.9/jax/
H A Dlax_reference.py250 lo_pos, hi_pos = np.clip(lo, 0, None), np.clip(hi, 0, None)
251 outshape = np.add(np.add(np.add(lo_pos, hi_pos), operand.shape),
255 for l, h, step in zip(lo_pos, hi_pos, np.add(1, interior)))
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/kernel/
H A Dqwidget_mac.mm3117 HIPoint hi_pos = CGPointMake(tmp.x(), tmp.y());
3121 return QPoint((int)hi_pos.x+win_rect.left, (int)hi_pos.y+win_rect.top);
3124 NSPoint hi_pos = NSMakePoint(tmp.x(), tmp.y());
3125 hi_pos = [qt_mac_nativeview_for(this) convertPoint:hi_pos toView:nil];
3127 hi_pos.x += win_rect.origin.x;
3128 hi_pos.y += win_rect.origin.y;
3130 …return ((window()->windowFlags() & Qt::Desktop) == Qt::Desktop) ? QPointF(hi_pos.x, hi_pos.y).toPo…
3147 return d->mapFromWS(QPoint((int)hi_pos.x, (int)hi_pos.y));
3152 NSPoint hi_pos = NSMakePoint(pos.x()-win_rect.origin.x,
3154 hi_pos = [qt_mac_nativeview_for(this) convertPoint:hi_pos fromView:0];
[all …]
/dports/games/mirrormagic/mirrormagic-2.0.2/src/
H A Dgame.c3550 int hi_pos; in GameWon() local
3641 if ((hi_pos = NewHiScore()) >= 0) in GameWon()
3644 DrawHallOfFame(hi_pos); in GameWon()
/dports/textproc/py-regex/regex-2020.7.14/regex_3/
H A D_regex.c9271 guard_list, Py_ssize_t lo_pos, Py_ssize_t hi_pos, BOOL protect) { in guard_range() argument
9303 if (above < count && spans[above].low - hi_pos <= 1 && in guard_range()
9311 hi_pos = min_ssize_t(hi_pos, spans[above].low - 1); in guard_range()
9313 spans[below].high = hi_pos; in guard_range()
9317 } else if (above < count && spans[above].low - hi_pos <= 1 && in guard_range()
9328 hi_pos = min_ssize_t(hi_pos, spans[above].low - 1); in guard_range()
9331 spans[above].high = hi_pos; in guard_range()
9341 Py_ssize_t lo_pos, Py_ssize_t hi_pos, RE_STATUS_T guard_type, BOOL protect) { in guard_repeat_range() argument
9354 while (lo_pos <= hi_pos) { in guard_repeat_range()
9355 lo_pos = guard_range(state, guard_list, lo_pos, hi_pos, protect); in guard_repeat_range()
/dports/textproc/py-regex/regex-2020.7.14/regex_2/
H A D_regex.c9225 guard_list, Py_ssize_t lo_pos, Py_ssize_t hi_pos, BOOL protect) { in guard_range() argument
9257 if (above < count && spans[above].low - hi_pos <= 1 && in guard_range()
9265 hi_pos = min_ssize_t(hi_pos, spans[above].low - 1); in guard_range()
9267 spans[below].high = hi_pos; in guard_range()
9271 } else if (above < count && spans[above].low - hi_pos <= 1 && in guard_range()
9282 hi_pos = min_ssize_t(hi_pos, spans[above].low - 1); in guard_range()
9285 spans[above].high = hi_pos; in guard_range()
9295 Py_ssize_t lo_pos, Py_ssize_t hi_pos, RE_STATUS_T guard_type, BOOL protect) { in guard_repeat_range() argument
9308 while (lo_pos <= hi_pos) { in guard_repeat_range()
9309 lo_pos = guard_range(state, guard_list, lo_pos, hi_pos, protect); in guard_repeat_range()
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/binutils-2.16.1/gas/config/
H A Dtc-mips.c10755 fixS **hi_pos, **lo_pos, **pos; in mips_frob_file() local
10776 hi_pos = NULL; in mips_frob_file()
10782 hi_pos = pos; in mips_frob_file()
10811 *hi_pos = l->fixp->fx_next; in mips_frob_file()
/dports/devel/djgpp-binutils/binutils-2.17/gas/config/
H A Dtc-mips.c11302 fixS **hi_pos, **lo_pos, **pos; in mips_frob_file() local
11323 hi_pos = NULL; in mips_frob_file()
11329 hi_pos = pos; in mips_frob_file()
11358 *hi_pos = l->fixp->fx_next; in mips_frob_file()
/dports/lang/gnatdroid-binutils-x86/binutils-2.27/gas/config/
H A Dtc-mips.c14724 fixS **hi_pos, **lo_pos, **pos; in mips_frob_file() local
14747 hi_pos = NULL; in mips_frob_file()
14755 hi_pos = pos; in mips_frob_file()
14783 *hi_pos = l->fixp->fx_next; in mips_frob_file()
/dports/devel/gnulibiberty/binutils-2.37/gas/config/
H A Dtc-mips.c15453 fixS **hi_pos, **lo_pos, **pos; in mips_frob_file() local
15476 hi_pos = NULL; in mips_frob_file()
15484 hi_pos = pos; in mips_frob_file()
15512 *hi_pos = l->fixp->fx_next; in mips_frob_file()
/dports/devel/arm-elf-binutils/binutils-2.37/gas/config/
H A Dtc-mips.c15453 fixS **hi_pos, **lo_pos, **pos; in mips_frob_file() local
15476 hi_pos = NULL; in mips_frob_file()
15484 hi_pos = pos; in mips_frob_file()
15512 *hi_pos = l->fixp->fx_next; in mips_frob_file()
/dports/lang/gnatdroid-binutils/binutils-2.27/gas/config/
H A Dtc-mips.c14724 fixS **hi_pos, **lo_pos, **pos; in mips_frob_file() local
14747 hi_pos = NULL; in mips_frob_file()
14755 hi_pos = pos; in mips_frob_file()
14783 *hi_pos = l->fixp->fx_next; in mips_frob_file()
/dports/devel/binutils/binutils-2.37/gas/config/
H A Dtc-mips.c15453 fixS **hi_pos, **lo_pos, **pos; in mips_frob_file() local
15476 hi_pos = NULL; in mips_frob_file()
15484 hi_pos = pos; in mips_frob_file()
15512 *hi_pos = l->fixp->fx_next; in mips_frob_file()
/dports/games/rnd_jue/rnd_jue-3.3.0.0/src/
H A Dgame.c4992 int hi_pos; in GameEnd() local
5047 if ((hi_pos = NewHiScore()) >= 0) in GameEnd()
5051 DrawHallOfFame(hi_pos); in GameEnd()
/dports/games/rnd_jue/rocksndiamonds-3.3.1.0/src/
H A Dgame.c4849 int hi_pos; in GameEnd() local
4905 if ((hi_pos = NewHiScore()) >= 0) in GameEnd()
4909 DrawHallOfFame(hi_pos); in GameEnd()
/dports/games/rocksndiamonds/rnd_jue-3.3.0.0/src/
H A Dgame.c4992 int hi_pos; in GameEnd() local
5047 if ((hi_pos = NewHiScore()) >= 0) in GameEnd()
5051 DrawHallOfFame(hi_pos); in GameEnd()
/dports/games/rocksndiamonds/rocksndiamonds-3.3.1.2/src/
H A Dgame.c4849 int hi_pos; in GameEnd() local
4905 if ((hi_pos = NewHiScore()) >= 0) in GameEnd()
4909 DrawHallOfFame(hi_pos); in GameEnd()