Home
last modified time | relevance | path

Searched refs:ndot (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb.c995 uintmax_t odot, ndot; in mdb_dot_incr() local
998 ndot = odot + mdb.m_incr; in mdb_dot_incr()
1000 if ((odot ^ ndot) & 0x8000000000000000ull) in mdb_dot_incr()
1003 return (ndot); in mdb_dot_incr()
1009 uintmax_t odot, ndot; in mdb_dot_decr() local
1012 ndot = odot - mdb.m_incr; in mdb_dot_decr()
1014 if (ndot > odot) in mdb_dot_decr()
1017 return (ndot); in mdb_dot_decr()
H A Dmdb_cmds.c627 uintmax_t ndot, dot = mdb_get_dot(); in cmd_print_value() local
645 ndot = mdb_fmt_print(t, MDB_TGT_AS_VIRT, in cmd_print_value()
649 dot = ndot; in cmd_print_value()