Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Dtime.h96 uint64_t _p1, _p2; in bintime_mul() local
98 _p1 = (_bt->frac & 0xffffffffull) * _x; in bintime_mul()
99 _p2 = (_bt->frac >> 32) * _x + (_p1 >> 32); in bintime_mul()
102 _bt->frac = (_p2 << 32) | (_p1 & 0xffffffffull); in bintime_mul()
/freebsd/usr.sbin/lpr/common_source/
H A Dcommon.c67 static int compar(const void *_p1, const void *_p2);