Searched refs:fraction (Results 1 - 13 of 13) sorted by relevance

/opensolaris-onvv-gate/usr/src/cmd/touch/
H A Dtouch.c277 char *fraction; local
314 fraction = p;
323 (fraction != NULL && (*fraction == '\0' || !isnumber(fraction))))
345 if (fraction == NULL) {
349 if (strlen(fraction) > 9)
350 fraction[9] = '\0';
351 nanoseconds = atoi(fraction);
353 switch (strlen(fraction)) {
[all...]
/opensolaris-onvv-gate/usr/src/lib/libast/common/sfio/
H A Dsfstrtof.h210 int fraction; local
244 fraction = -1;
268 fraction = digits;
307 if (fraction >= 0)
308 m -= 4 * (digits - fraction);
332 fraction = 0;
413 fraction = digits;
437 if (fraction >= 0)
438 digits = fraction;
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_ntp.c166 ntohs(ntp->distance.fraction),
173 ntohs(ntp->dispersion.fraction),
183 ntohl(ntp->reftime.fraction),
190 ntohl(ntp->org.fraction),
197 ntohl(ntp->rec.fraction),
204 ntohl(ntp->xmt.fraction),
438 a = ntohs((int)(~t->fraction) & 0xFFFF);
443 a = ntohs(t->fraction);
480 net_time.fraction = ntohl(pkt_time.fraction);
[all...]
H A Dntp.h240 ulong_t fraction; member in struct:l_fixedpt
245 ushort_t fraction; member in struct:s_fixedpt
/opensolaris-onvv-gate/usr/src/lib/libparted/common/libparted/fs/fat/
H A Dcount.c311 Also, the fraction of each cluster (x/64) is recorded
352 int fraction; local
357 fraction = fs_info->cluster_info [cluster].units_used;
358 if (fraction == 0)
359 fraction = 64;
361 return fraction * fs_info->cluster_sectors / 64;
/opensolaris-onvv-gate/usr/src/cmd/truss/
H A Dmain.c1897 int fraction; local
1903 fraction = Lsp->pr_tstamp.tv_nsec - Cp->basetime.tv_nsec;
1904 if (fraction < 0) {
1906 fraction += NANOSEC;
1908 /* fraction in 1/10 milliseconds, rounded up */
1909 fraction = (fraction + 50000) / 100000;
1910 if (fraction >= (MILLISEC * 10)) {
1912 fraction -= (MILLISEC * 10);
1916 (void) printf("%2d.%4.4d\t", seconds, fraction);
[all...]
H A Dramdata.h122 int seconds; /* seconds, fraction for timestamps */
123 int fraction; /* fraction in 1/10 milliseconds */ member in struct:__anon2052
/opensolaris-onvv-gate/usr/src/uts/common/inet/ip/
H A Dip_dce.c111 * Reclaim a fraction of dce's in the dcb.
115 dcb_reclaim(dcb_t *dcb, ip_stack_t *ipst, uint_t fraction) argument
117 uint_t fraction_pmtu = fraction*4;
140 if (hash % fraction != 0)
H A Dip_ire.c2170 * ire_walk routine to delete a fraction of redirect IREs and IRE_CLONE_IF IREs.
2171 * The fraction argument tells us what fraction of the IREs to delete.
2179 uint_t fraction = *(uint_t *)arg; local
2190 if ((rand/fraction)*fraction == rand) {
2201 * Free a fraction (ips_ip_ire_reclaim_fraction) of things IP added dynamically
2207 uint_t fraction = ipst->ips_ip_ire_reclaim_fraction; local
2211 ire_walk(ire_delete_reclaim, &fraction, ipst);
H A Dip_ndp.c3398 * Free a fraction of the NCE cache entries.
3409 uint_t fraction = *(uint_t *)arg; local
3419 if ((rand/fraction)*fraction == rand) {
3428 * For now we just delete a fixed fraction.
3433 uint_t fraction = ipst->ips_ip_nce_reclaim_fraction; local
3437 ncec_walk(NULL, (pfi_t)ncec_cache_reclaim, (uchar_t *)&fraction, ipst);
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/unicore/
H A DDecomposition.pl17 00BC <fraction> 0031 2044 0034
18 00BD <fraction> 0031 2044 0032
19 00BE <fraction> 0033 2044 0034
1128 2153 <fraction> 0031 2044 0033
1129 2154 <fraction> 0032 2044 0033
1130 2155 <fraction> 0031 2044 0035
1131 2156 <fraction> 0032 2044 0035
1132 2157 <fraction> 0033 2044 0035
1133 2158 <fraction> 0034 2044 0035
1134 2159 <fraction> 003
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigRat.pm1459 Return true if $x has a denominator of 1 (e.g. no fraction parts), otherwise
H A DBigInt.pm517 # split str in m mantissa, e exponent, i integer, f fraction, v value, s sign
555 # adjust fraction and add it to value
564 # fraction and negative/zero E => NOI
2669 ($xl,$f) = $x->length(); # length of number and length of fraction part,
3184 In list context, returns the length of the integer and fraction part. For
3185 BigInt's, the length of the fraction part will always be 0.
4011 It prints both the number of digits in the number and in the fraction part

Completed in 193 milliseconds