Home
last modified time | relevance | path

Searched refs:abs (Results 1 – 25 of 120) sorted by relevance

12345

/illumos-gate/usr/src/cmd/troff/troff.d/
H A Ddraw.c106 if (abs (xd) > abs (yd)) { in drawline()
333 Xs = abs(ys); in conicarc()
334 Ys = abs(xs); in conicarc()
354 Xs = abs(xs); in conicarc()
355 Ys = abs(ys); in conicarc()
364 Xs = abs(ys); in conicarc()
365 Ys = abs(xs); in conicarc()
389 Xt = abs(xt); in conicarc()
390 Yt = abs(yt); in conicarc()
393 Xt = abs(yt); in conicarc()
[all …]
/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_real_absolute.c46 struct smatch_state *abs; in extra_mod_hook() local
49 abs = get_state(my_id, name, sym); in extra_mod_hook()
50 if (!abs || !estate_rl(abs)) in extra_mod_hook()
52 rl = rl_intersection(estate_rl(abs), estate_rl(state)); in extra_mod_hook()
/illumos-gate/usr/src/cmd/bhyve/
H A Dpci_virtio_input.c118 struct vtinput_absinfo abs; member
377 struct input_absinfo abs; in pci_vtinput_read_config_abs_info() local
378 if (ioctl(sc->vsc_fd, EVIOCGABS(sc->vsc_config.subsel), &abs) < 0) { in pci_vtinput_read_config_abs_info()
383 sc->vsc_config.u.abs.min = abs.minimum; in pci_vtinput_read_config_abs_info()
384 sc->vsc_config.u.abs.max = abs.maximum; in pci_vtinput_read_config_abs_info()
385 sc->vsc_config.u.abs.fuzz = abs.fuzz; in pci_vtinput_read_config_abs_info()
386 sc->vsc_config.u.abs.flat = abs.flat; in pci_vtinput_read_config_abs_info()
387 sc->vsc_config.u.abs.res = abs.resolution; in pci_vtinput_read_config_abs_info()
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dabs.S31 / abs(arg)
39 ENTRY(abs) function
46 SET_SIZE(abs)
/illumos-gate/usr/src/cmd/bnu/
H A Duupick38 abs=""
122 then abs=`expr "$dir" : '/.*'`
123 if test $abs != 0
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dabs.S37 ENTRY(abs) function
44 SET_SIZE(abs)
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dabs.S34 ENTRY(abs) function
41 SET_SIZE(abs)
/illumos-gate/usr/src/lib/libc/amd64/gen/
H A Dabs.S41 ENTRY(abs) function
48 SET_SIZE(abs)
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dfunc.test152 # Test the abs() and round() functions.
161 catchsql {SELECT abs(a,b) FROM t1}
162 } {1 {wrong number of arguments to function abs()}}
164 catchsql {SELECT abs() FROM t1}
165 } {1 {wrong number of arguments to function abs()}}
167 catchsql {SELECT abs(b) FROM t1 ORDER BY a}
170 catchsql {SELECT abs(c) FROM t1 ORDER BY a}
173 execsql {SELECT abs(a) FROM t2}
176 execsql {SELECT abs(t1) FROM tbl1}
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwinsdel.c65 if (w->_maxy < w->_cury + abs(n)) in winsdelln()
86 (void) __m_cc_erase(w, row, 0, row + abs(n) - 1, w->_maxx - 1); in winsdelln()
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwinsdel.c66 if (w->_maxy < w->_cury + abs(n))
91 (void) __m_cc_erase(w, row, 0, row + abs(n), w->_maxx-1);
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/
H A Decore_l2.c257 p_cid->abs = p_cid->rel; in _ecore_eth_queue_to_cid()
271 &p_cid->abs.queue_id); in _ecore_eth_queue_to_cid()
280 &p_cid->abs.stats_id); in _ecore_eth_queue_to_cid()
284 p_cid->abs.stats_id = p_cid->rel.stats_id; in _ecore_eth_queue_to_cid()
301 p_cid->rel.vport_id, p_cid->abs.vport_id, in _ecore_eth_queue_to_cid()
303 p_cid->abs.queue_id, in _ecore_eth_queue_to_cid()
556 OSAL_CPU_TO_LE16(p_queue->abs.queue_id); in ecore_sp_vport_update_rss()
944 p_ramrod->vport_id = p_cid->abs.vport_id; in ecore_eth_rxq_start_ramrod()
1080 p_ramrod->vport_id = p_cid->abs.vport_id; in ecore_sp_eth_rx_queues_update()
1117 p_ramrod->vport_id = p_cid->abs.vport_id; in ecore_eth_pf_rx_queue_stop()
[all …]
/illumos-gate/usr/src/head/iso/
H A Dstdlib_iso.h121 extern int abs(int);
167 inline long abs(long _l) { return labs(_l); } in abs() function
H A Dmath_iso.h152 inline double abs(double __X) { return fabs(__X); } in abs() function
158 inline float abs(float __X) { return __fabsf(__X); } in abs() function
187 inline long double abs(long double __X) { return __fabsl(__X); } in abs() function
/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_timer.c743 int abs; in sctp_update_rtt() local
749 abs = fp->sf_srtt - rtt; in sctp_update_rtt()
750 abs = abs >= 0 ? abs : -abs; in sctp_update_rtt()
751 fp->sf_rttvar = (3 * fp->sf_rttvar + abs) >> 2; in sctp_update_rtt()
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dilogbf.S44 andl $0x7fffffff,%eax / eax <-- abs(x)
56 andl $0x7fffffff,%eax / eax <-- abs(x), and
/illumos-gate/usr/src/lib/libfru/libfru/
H A DPayloadReader.cc141 int abs = tail - index; in calcOffset() local
142 if (abs < 0) in calcOffset()
144 abs = iterPoss + abs; in calcOffset()
145 return (length * abs); in calcOffset()
/illumos-gate/usr/src/cmd/troff/
H A Dn4.c570 int neg, abs, field; local
572 neg = abs = field = digits = 0;
587 abs = 1 + neg;
664 if (abs) {
672 if (abs == 2)
/illumos-gate/usr/src/uts/sun4u/io/
H A Dtodopl.c54 #define abs(x) ((x) < 0 ? -(x) : (x)) macro
231 if (abs(ts.tv_sec - hrestime.tv_sec) > TODOPL_SET_THRESHOLD) { in todopl_set()
/illumos-gate/usr/src/cmd/chmod/
H A Dcommon.c86 abs(mode_t mode, o_mode_t *group_clear_bits, o_mode_t *group_set_bits),
147 return (abs(old_mode, group_clear_bits, group_set_bits)); in newmode_common()
488 abs(mode_t mode, o_mode_t *group_clear_bits, o_mode_t *group_set_bits) in abs() function
/illumos-gate/usr/src/common/pnglite/
H A Dpnglite.c19 #ifndef abs
20 #define abs(x) ((x) < 0? -(x):(x)) macro
438 int pa = abs(p - a); in png_paeth()
439 int pb = abs(p - b); in png_paeth()
440 int pc = abs(p - c); in png_paeth()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dpointtype.sh53 print -r $((abs(_.x)+abs(_.y) ))
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dimaxabs.c54 return (abs(arg)); in _imaxabs_c89()
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_auth.c592 caddr_t *abs, size_t *abs_len) { in make_authblock() argument
653 if (!(*abs = realloc(*abs, *abs_len + ab_len))) { in make_authblock()
659 ab = *abs + *abs_len; in make_authblock()
696 free(*abs); in make_authblock()
/illumos-gate/usr/src/tools/smatch/src/validation/preprocessor/
H A Dhas-builtin.c23 abs

12345