Home
last modified time | relevance | path

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

/titanic_50/usr/src/cmd/mdb/common/mdb/
H A Dmdb.c984 uintmax_t odot, ndot; in mdb_dot_incr() local
987 ndot = odot + mdb.m_incr; in mdb_dot_incr()
989 if ((odot ^ ndot) & 0x8000000000000000ull) in mdb_dot_incr()
992 return (ndot); in mdb_dot_incr()
998 uintmax_t odot, ndot; in mdb_dot_decr() local
1001 ndot = odot - mdb.m_incr; in mdb_dot_decr()
1003 if (ndot > odot) in mdb_dot_decr()
1006 return (ndot); in mdb_dot_decr()
H A Dmdb_cmds.c526 uintmax_t ndot, dot = mdb_get_dot(); in cmd_print_value() local
544 ndot = mdb_fmt_print(t, MDB_TGT_AS_VIRT, in cmd_print_value()
548 dot = ndot; in cmd_print_value()