Home
last modified time | relevance | path

Searched refs:numerator (Results 1 – 10 of 10) sorted by relevance

/titanic_41/usr/src/cmd/dispadmin/
H A Dsubr.c110 long numerator; in _hrtnewres() local
139 numerator = interval * new_res; in _hrtnewres()
141 if (numerator / new_res == interval) { in _hrtnewres()
149 result = numerator / htp->hrt_res; in _hrtnewres()
171 modulus = numerator - result * htp->hrt_res; in _hrtnewres()
191 if (result * htp->hrt_res != numerator) { in _hrtnewres()
/titanic_41/usr/src/cmd/priocntl/
H A Dsubr.c585 register long numerator; local
613 numerator = interval * new_res;
615 if (numerator / new_res == interval) {
623 result = numerator / htp->hrt_res;
645 modulus = numerator - result * htp->hrt_res;
665 if (result * htp->hrt_res != numerator) {
/titanic_41/usr/src/cmd/sort/common/
H A Dcheck.c105 int numerator, denominator; in check_if_sorted() local
121 set_memory_ratio(S, &numerator, &denominator); in check_if_sorted()
143 input_mem = numerator * S->m_memory_available / denominator / 4; in check_if_sorted()
H A Dinternal.c317 int numerator, denominator; in internal_sort() local
325 set_memory_ratio(S, &numerator, &denominator); in internal_sort()
355 input_mem = (size_t)(((u_longlong_t)numerator * in internal_sort()
400 input_mem = numerator * in internal_sort()
H A Dutility.c375 set_memory_ratio(sort_t *S, int *numerator, int *denominator) in set_memory_ratio() argument
378 *numerator = CHAR_AVG_LINE; in set_memory_ratio()
385 *numerator = CHAR_AVG_LINE; in set_memory_ratio()
391 *numerator = WCHAR_AVG_LINE; in set_memory_ratio()
/titanic_41/usr/src/lib/libc/i386/gen/
H A Dldivide.s49 orl %edx,%edx / force numerator positive
70 rcll $1,%edx / numerator * 2 (also quotient)
/titanic_41/usr/src/cmd/sgs/gprof/common/
H A Dgprof.callg.blurb46 this parent. This is the numerator of the
73 function. This is the numerator of the
/titanic_41/usr/src/uts/common/io/usb/clients/video/usbvc/
H A Dusbvc_v4l2.c1616 n = parm->parm.capture.timeperframe.numerator; in usbvc_v4l2_set_parm()
1710 parm->parm.capture.timeperframe.numerator = i; in usbvc_v4l2_set_parm()
1752 parm->parm.capture.timeperframe.numerator = n; in usbvc_v4l2_get_parm()
/titanic_41/usr/src/uts/common/sys/
H A Dvideodev2.h199 uint32_t numerator; member
/titanic_41/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c133 uint64_t numerator, uint64_t denom, int frac_digits) in snprintfrac() argument
140 whole = numerator / denom; in snprintfrac()
141 frac = mul * numerator / denom - mul * whole; in snprintfrac()