Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/
H A Dvuid_queue.c40 static struct timeval32 tv_subt(struct timeval32 atv, struct timeval32 btv);
298 tv_subt(struct timeval32 atv, struct timeval32 btv) in tv_subt() argument
300 if ((atv.tv_usec < btv.tv_usec) && atv.tv_sec) { in tv_subt()
304 if (atv.tv_usec > btv.tv_usec) in tv_subt()
305 atv.tv_usec -= btv.tv_usec; in tv_subt()
308 if (atv.tv_sec > btv.tv_sec) in tv_subt()
309 atv.tv_sec -= btv.tv_sec; in tv_subt()
311 if (atv.tv_sec < btv.tv_sec) in tv_subt()
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStoreInMemory.java923 BtreeVector btv, in InMemoryEvaluator() argument
926 attrLevelNot = btv; in InMemoryEvaluator()