Home
last modified time | relevance | path

Searched refs:fraction (Results 1 – 25 of 123) sorted by relevance

12345

/freebsd-11-stable/contrib/gcc/config/
HDfp-bit.c209 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */
219 fraction = ((fractype) 1 << FRACBITS) - 1;
227 fraction |= QUIET_NAN - 1;
229 fraction |= QUIET_NAN;
236 fraction = 0;
241 fraction = 0;
243 else if (fraction == 0)
256 fraction = 0;
269 fraction = 0;
273 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
[all …]
HDfp-bit.h372 } fraction; member
391 fractype fraction:FRACBITS __attribute__ ((packed)); member
403 fractype fraction:FRACBITS __attribute__ ((packed)); member
409 fractype fraction:FRACBITS __attribute__ ((packed)); member
/freebsd-11-stable/usr.bin/number/
HDnumber.c126 char *p, *fraction; in convert() local
129 fraction = NULL; in convert()
142 if (fraction != NULL) in convert()
144 fraction = p + 1; in convert()
159 (fraction != NULL && ((flen = strlen(fraction)) > MAXNUM))) in convert()
169 if (fraction != NULL && flen != 0) in convert()
170 for (p = fraction; *p != '\0'; ++p) in convert()
176 if (unit(flen, fraction)) { in convert()
/freebsd-11-stable/contrib/gdb/gdb/
HDi387-tdep.c74 unsigned long fraction[2]; in print_i387_ext() local
79 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in print_i387_ext()
80 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in print_i387_ext()
85 if (fraction[0] == 0x00000000 && fraction[1] == 0x00000000) in print_i387_ext()
88 else if (sign && fraction[0] == 0x00000000 && fraction[1] == 0x40000000) in print_i387_ext()
91 else if (fraction[1] & 0x40000000) in print_i387_ext()
109 else if (fraction[0] || fraction[1]) in print_i387_ext()
707 unsigned long fraction[2]; in i387_tag() local
711 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in i387_tag()
712 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in i387_tag()
[all …]
/freebsd-11-stable/usr.bin/setchannel/
HDsetchannel.c96 unsigned int fraction; in main() local
188 fraction = strtol(ptr, &endptr, 10); in main()
195 fraction /= 10; in main()
197 fraction *= 10; in main()
199 freq += fraction; in main()
/freebsd-11-stable/contrib/ofed/librdmacm/examples/
HDcommon.c78 long long base, fraction = 0; in size_str() local
96 fraction = (size % base) * 10 / base; in size_str()
97 if (fraction) { in size_str()
98 snprintf(str, ssize, "%lld.%lld%c", size / base, fraction, mag); in size_str()
/freebsd-11-stable/contrib/gdb/gdb/gdbserver/
HDi387-fp.c201 unsigned long fraction[2]; in i387_ftag() local
206 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in i387_ftag()
207 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in i387_ftag()
217 if (fraction[0] == 0x0000 && fraction[1] == 0x0000 && !integer) in i387_ftag()
/freebsd-11-stable/contrib/tcpdump/
HDprint-ntp.c70 uint32_t fraction; member
75 uint16_t fraction; member
333 f = EXTRACT_16BITS(&sfp->fraction); in p_sfix()
351 uf = EXTRACT_32BITS(&lfp->fraction); in p_ntp_time()
390 uf = EXTRACT_32BITS(&lfp->fraction); in p_ntp_delta()
391 ouf = EXTRACT_32BITS(&olfp->fraction); in p_ntp_delta()
/freebsd-11-stable/lib/libc/mips/gen/
HDldexp.S82 sll t2, v1, 32 - 20 # get x fraction
130 subu t9, t9, v0 # shift fraction left >= 32 bits
135 subu v0, v0, t9 # shift fraction left < 32 bits
156 sll t2, v1, 31 - 20 # clear exponent, extract fraction
159 srl t2, t2, 31 - 20 # shift fraction back to normal position
182 mtc1 zero, $f1 # exponent and upper fraction
191 mtc1 ta0, $f1 # exponent and upper fraction
/freebsd-11-stable/contrib/netbsd-tests/bin/sleep/
HDt_sleep.sh31 atf_test_case fraction
69 atf_add_test_case fraction
/freebsd-11-stable/contrib/less/
HDjump.c138 jump_percent(percent, fraction) in jump_percent() argument
140 long fraction;
158 pos = percent_pos(len, percent, fraction);
HDos.c337 percent_pos(pos, percent, fraction) in percent_pos() argument
340 long fraction;
343 POSITION perden = (percent * (NUM_FRAC_DENOM / 100)) + (fraction / 100);
HDcommand.c75 static long fraction; /* The fractional part of the number */ variable
620 number = cmd_int(&fraction);
1512 fraction = 0; in commands()
1514 if (number > 100 || (number == 100 && fraction != 0)) in commands()
1517 fraction = 0; in commands()
1520 jump_percent((int) number, fraction); in commands()
/freebsd-11-stable/usr.bin/gprof/
HDgprof.callg50 fraction which divides up the function's time to
55 the propagation fraction.
77 propagation fraction for this child.
81 propagation fraction.
/freebsd-11-stable/sys/dev/iicbus/
HDmax6690.c326 uint8_t fraction = 0; in max6690_sensor_read() local
347 err = max6690_read(sc->sc_dev, sc->sc_addr, reg_ext, &fraction); in max6690_sensor_read()
352 fraction &= MAX6690_TEMP_MASK; in max6690_sensor_read()
357 temp = (integer * 10) + (fraction >> 5) * 10 / 8; in max6690_sensor_read()
/freebsd-11-stable/sys/mips/mips/
HDfp.S704 move t2, zero # FSs fraction shifted is zero
707 move ta2, zero # FTs fraction shifted is zero
715 srl t2, t2, v1 # shift FSs fraction
719 srl ta2, ta2, v1 # shift FTs fraction
829 move t2, zero # FSs fraction shifted is zero
833 move ta2, zero # FTs fraction shifted is zero
846 srl t3, t2, v1 # shift FSs fraction
852 srl t3, t3, v1 # shift FSs fraction
862 srl ta3, ta2, v1 # shift FTs fraction
868 srl ta3, ta3, v1 # shift FTs fraction
[all …]
/freebsd-11-stable/contrib/gcc/
HDcfg.c980 gcov_type fraction = RDIV (num * 65536, den); in scale_bbs_frequencies_gcov_type() local
982 gcc_assert (fraction >= 0); in scale_bbs_frequencies_gcov_type()
992 bbs[i]->count = RDIV (bbs[i]->count * fraction, 65536); in scale_bbs_frequencies_gcov_type()
997 e->count = RDIV (e->count * fraction, 65536); in scale_bbs_frequencies_gcov_type()
1006 bbs[i]->frequency = RDIV (bbs[i]->frequency * fraction, 65536); in scale_bbs_frequencies_gcov_type()
1007 bbs[i]->count = RDIV (bbs[i]->count * fraction, 65536); in scale_bbs_frequencies_gcov_type()
1009 e->count = RDIV (e->count * fraction, 65536); in scale_bbs_frequencies_gcov_type()
HDparams.def220 "gcse-after-reload-partial-fraction",
227 "gcse-after-reload-critical-fraction",
322 "hot-bb-count-fraction",
323 …"Select fraction of the maximal count of repetitions of basic block in program given basic block n…
326 "hot-bb-frequency-fraction",
327 …"Select fraction of the maximal frequency of executions of basic block in function given basic blo…
/freebsd-11-stable/sys/dev/drm/
HDr600_blit.c1648 u32 result, i, exponent, fraction; in i2f() local
1654 fraction = (input & 0x3fff) << 10; /* cheat and only in i2f()
1657 if (fraction & 0x800000) in i2f()
1660 fraction = fraction << 1; /* keep in i2f()
1665 result = exponent << 23 | (fraction & 0x7fffff); /* mask in i2f()
/freebsd-11-stable/contrib/gcc/doc/include/
HDfunding.texi33 Even a precise fraction ``of the profits from this disk'' is not very
35 can greatly alter what fraction of the sales price counts as profit.
/freebsd-11-stable/sys/geom/bde/
HDg_bde_work.c83 static void g_bde_purge_sector(struct g_bde_softc *sc, int fraction);
303 g_bde_purge_sector(struct g_bde_softc *sc, int fraction) in g_bde_purge_sector() argument
309 if (fraction > 0) in g_bde_purge_sector()
310 n = sc->ncache / fraction + 1; in g_bde_purge_sector()
/freebsd-11-stable/sys/contrib/ncsw/Peripherals/FM/Pcd/
HDfm_plcr.c168 uint64_t integer, fraction; in calcRates() local
178 …am->rateMode, p_NonPassthroughAlgParam->comittedInfoRate, tsuInTenthNanos, 0, &integer, &fraction); in calcRates()
180 …eMode, p_NonPassthroughAlgParam->peakOrAccessiveInfoRate, tsuInTenthNanos, 0, &integer, &fraction); in calcRates()
209 temp = (uint32_t)fraction; /* fraction will alyas be smaller than 2^16 */ in calcRates()
233 …eMode, p_NonPassthroughAlgParam->comittedInfoRate, tsuInTenthNanos, fppShift, &integer, &fraction); in calcRates()
234 *cir = (uint32_t)(integer << 16 | (fraction & 0xFFFF)); in calcRates()
235 …p_NonPassthroughAlgParam->peakOrAccessiveInfoRate, tsuInTenthNanos, fppShift, &integer, &fraction); in calcRates()
236 *pir_eir = (uint32_t)(integer << 16 | (fraction & 0xFFFF)); in calcRates()
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/utf8proc/
HDlump.md8 U+002F / <-- fraction slash U+2044,
/freebsd-11-stable/contrib/groff/font/devps/
HDSS105 --- 149,603,11,391,214,99 3 164 fraction
/freebsd-11-stable/sys/gnu/dts/arm/
HDsocfpga_cyclone5_mcvevk.dts82 ts,fraction-z = <7>;

12345