| /openbsd-src/gnu/gcc/gcc/config/ |
| H A D | fp-bit.c | 209 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 …]
|
| H A D | fp-bit.h | 372 } fraction; member 391 fractype fraction:FRACBITS __attribute__ ((packed)); member 403 fractype fraction:FRACBITS __attribute__ ((packed)); member 409 fractype fraction:FRACBITS __attribute__ ((packed)); member
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/ |
| H A D | fp-bit.c | 194 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */ 204 fraction = ((fractype) 1 << FRACBITS) - 1; 211 fraction |= QUIET_NAN; 217 fraction = 0; 222 fraction = 0; 224 else if (fraction == 0) 237 fraction = 0; 250 fraction = 0; 254 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0; 255 fraction = (fraction >> shift) | lowbit; [all …]
|
| H A D | fp-bit.h | 368 } fraction; member 387 fractype fraction:FRACBITS __attribute__ ((packed)); member 399 fractype fraction:FRACBITS __attribute__ ((packed)); member 405 fractype fraction:FRACBITS __attribute__ ((packed)); member
|
| /openbsd-src/games/number/ |
| H A D | number.c | 121 char *p, *fraction; in convert() local 132 fraction = NULL; in convert() 140 if (fraction != NULL) in convert() 142 fraction = p + 1; in convert() 158 ((fraction != NULL) && (flen = strlen(fraction)) > MAXNUM)) in convert() 173 if (fraction != NULL && flen != 0) in convert() 174 for (p = fraction; *p != '\0'; ++p) in convert() 180 if (unit(flen, fraction)) { in convert()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | i387-tdep.c | 74 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() 732 unsigned long fraction[2]; in i387_tag() local 736 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in i387_tag() 737 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in i387_tag() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/gdbserver/ |
| H A D | i387-fp.c | 201 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()
|
| /openbsd-src/usr.sbin/tcpdump/ |
| H A D | print-ntp.c | 205 f = ntohs(sfp->fraction); in p_sfix() 222 uf = ntohl(lfp->fraction); in p_ntp_time() 244 uf = ntohl(lfp->fraction); in p_ntp_delta() 245 ouf = ntohl(olfp->fraction); in p_ntp_delta()
|
| H A D | ntp.h | 34 u_int32_t fraction; member 39 u_short fraction; member
|
| /openbsd-src/usr.bin/less/ |
| H A D | os.c | 86 percent_pos(off_t pos, int percent, long fraction) in percent_pos() argument 92 off_t perden = (percent * (NUM_FRAC_DENOM / 100)) + (fraction / 100); in percent_pos()
|
| H A D | jump.c | 111 jump_percent(int percent, long fraction) in jump_percent() argument 127 pos = percent_pos(len, percent, fraction); in jump_percent()
|
| H A D | command.c | 54 static long fraction; /* The fractional part of the number */ variable 500 number = cmd_int(&fraction); in mca_char() 1218 fraction = 0; in commands() 1222 fraction = 0; in commands() 1225 jump_percent((int)number, fraction); in commands()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| H A D | bf-spl1.c | 28 fractype fraction:52 __attribute__ ((packed)); member 43 x = dst.bits.fraction; in pack_d()
|
| /openbsd-src/gnu/usr.bin/binutils/gprof/ |
| H A D | bsd_callg_bl.m | 50 fraction which divides up the function's time to 55 the propagation fraction. 77 propagation fraction for this child. 81 propagation fraction.
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gprof/ |
| H A D | bsd_callg_bl.m | 50 fraction which divides up the function's time to 55 the propagation fraction. 77 propagation fraction for this child. 81 propagation fraction.
|
| /openbsd-src/usr.bin/gprof/ |
| H A D | gprof.callg | 30 the numerator of the fraction which divides up the function's time to 33 This is the denominator of the propagation fraction. 46 the numerator of the propagation fraction for this child. 48 the denominator of the propagation fraction.
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Math-BigRat/t/ |
| H A D | dparts-mbr.t | |
| /openbsd-src/lib/libc/arch/mips64/gen/ |
| H A D | ldexp.S | 70 dsll t2, t3, 64 - 52 # get x fraction 131 dsll t2, t3, 63 - 52 # clear exponent, extract fraction 133 dsrl t2, t2, 63 - 52 # shift fraction back to normal position
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | cfg.c | 980 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()
|
| /openbsd-src/sys/dev/pci/drm/amd/display/dc/dce/ |
| H A D | dce_transform.c | 297 inits->h_init.fraction = dc_fixpt_u0d19(h_init) << 5; in calculate_inits() 306 inits->v_init.fraction = dc_fixpt_u0d19(v_init) << 5; in calculate_inits() 335 inits->v_init.fraction = dc_fixpt_u0d19(v_init) << 5; in dce60_calculate_inits() 352 SCL_H_INIT_FRAC, inits->h_init.fraction); in program_scl_ratios_inits() 356 SCL_V_INIT_FRAC, inits->v_init.fraction); in program_scl_ratios_inits() 376 SCL_H_INIT_FRAC_RGB_Y, inits->h_init_luma.fraction); in dce60_program_scl_ratios_inits() 381 SCL_H_INIT_FRAC_CBCR, inits->h_init_chroma.fraction); in dce60_program_scl_ratios_inits() 385 SCL_V_INIT_FRAC, inits->v_init.fraction); in dce60_program_scl_ratios_inits()
|
| /openbsd-src/regress/usr.bin/mandoc/eqn/over/ |
| H A D | noarg.out_ascii | 4 oovveerr--nnooaarrgg - fraction operator without arguments
|
| H A D | precedence.out_ascii | 4 oovveerr--pprreecceeddeennccee - precedence of the fraction operator
|
| /openbsd-src/sys/dev/pci/drm/amd/display/dc/dce110/ |
| H A D | dce110_transform_v.c | 435 inits->h_init_luma.fraction, in program_scl_ratios_inits() 449 inits->v_init_luma.fraction, in program_scl_ratios_inits() 463 inits->h_init_chroma.fraction, in program_scl_ratios_inits() 477 inits->v_init_chroma.fraction, in program_scl_ratios_inits()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | bld.h | 628 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent, 634 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent, 640 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent, 646 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent, 652 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent, 658 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent, 664 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent, 670 ffelexToken decimal, ffelexToken fraction, ffelexToken exponent,
|
| /openbsd-src/gnu/gcc/gcc/doc/include/ |
| H A D | funding.texi | 33 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.
|