/src/games/number/ |
number.c | 130 char *p, *fraction; local in function:convert 133 fraction = NULL; 146 if (fraction != NULL) 148 fraction = p + 1; 163 (fraction != NULL && (flen = strlen(fraction)) > MAXNUM)) 173 if (fraction != NULL && flen != 0) 174 for (p = fraction; *p != '\0'; ++p) 180 if (unit(flen, fraction)) {
|
/src/tests/bin/sleep/ |
t_sleep.sh | 31 atf_test_case fraction 89 atf_add_test_case fraction
|
/src/lib/libc/arch/mips/gen/ |
ldexp.S | 80 sll t2, v1, 32 - 20 # get x fraction 128 subu t9, t9, v0 # shift fraction left >= 32 bits 133 subu v0, v0, t9 # shift fraction left < 32 bits 154 sll t2, v1, 31 - 20 # clear exponent, extract fraction 157 srl t2, t2, 31 - 20 # shift fraction back to normal position 180 mtc1 zero, $f1 # exponent and upper fraction 189 mtc1 ta0, $f1 # exponent and upper fraction
|
modf.S | 67 j 1f # integer fraction got
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
socfpga_cyclone5_mcvevk.dts | 69 ts,fraction-z = <7>;
|
stm32f429-disco.dts | 136 st,fraction-z = <7>;
|
imx53-m53.dtsi | 67 st,fraction-z = <7>;
|
imx6ul-phytec-segin-peb-av-02.dtsi | 73 st,fraction-z = <7>;
|
imx6qdl-phytec-mira.dtsi | 171 st,fraction-z = <7>;
|
imx6ul-isiot.dtsi | 144 st,fraction-z = <7>;
|
r8a7745-iwg22d-sodimm.dts | 203 st,fraction-z = <7>;
|
spear1310-evb.dts | 377 ts,fraction-z = <7>;
|
spear320-hmi.dts | 262 ts,fraction-z = <7>;
|
spear1340-evb.dts | 488 ts,fraction-z = <7>;
|
imx6q-novena.dts | 300 st,fraction-z = <7>;
|
am5729-beagleboneai.dts | 444 st,fraction-z = <7>;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/ |
nouveau_dispnv50_base907c.c | 101 u32 fraction = in & 0xffffffff; local in function:csc_drm_to_base 106 u32 ret = (integer << 16) | (fraction >> 16);
|
/src/sys/arch/mips/mips/ |
fp.S | 940 move t2, zero # FSs fraction shifted is zero 943 move ta2, zero # FTs fraction shifted is zero 951 srl t2, t2, v1 # shift FSs fraction 955 srl ta2, ta2, v1 # shift FTs fraction 1065 move t2, zero # FSs fraction shifted is zero 1069 move ta2, zero # FTs fraction shifted is zero 1082 srl t3, t2, v1 # shift FSs fraction 1088 srl t3, t3, v1 # shift FSs fraction 1098 srl ta3, ta2, v1 # shift FTs fraction 1104 srl ta3, ta3, v1 # shift FTs fraction [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce110/ |
amdgpu_dce110_transform_v.c | 443 inits->h_init_luma.fraction, 457 inits->v_init_luma.fraction, 471 inits->h_init_chroma.fraction, 485 inits->v_init_chroma.fraction,
|
/src/lib/libm/arch/vax/ |
n_cbrt.S | 70 addl2 B,%r2 # restore bias, diminish fraction
|
/src/sys/external/bsd/drm/dist/shared-core/ |
r600_blit.c | 1648 u32 result, i, exponent, fraction; local in function:i2f 1654 fraction = (input & 0x3fff) << 10; /* cheat and only 1657 if (fraction & 0x800000) 1660 fraction = fraction << 1; /* keep 1665 result = exponent << 23 | (fraction & 0x7fffff); /* mask
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/ |
amdgpu_dce_transform.c | 275 inits->h_init.fraction = dc_fixpt_u0d19(h_init) << 5; 284 inits->v_init.fraction = dc_fixpt_u0d19(v_init) << 5; 300 SCL_H_INIT_FRAC, inits->h_init.fraction); 304 SCL_V_INIT_FRAC, inits->v_init.fraction);
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_cdclk.c | 2543 int divider, fraction; local in function:cnp_rawclk 2548 fraction = 0; 2552 fraction = 200; 2556 if (fraction) { 2560 fraction) - 1); 2566 return divider + fraction;
|
/src/sys/arch/vax/vax/ |
unimpl_emul.S | 295 1: insv (%r3),$0,$3,%r0 # insert fraction 553 * %r7, and both the fraction and integer parts have the same sign. 683 * there aren't any bits left for the fraction. Therefore we're 721 # we have the integer in TMPFRAC1, now get the fraction in TMPFRAC2 813 * The fltext_X routines separate fraction and exponent* bits. 814 * They return (via %r0) the amount of bits in the fraction. 820 * sign-> |s|exponent| fract.| (10-3F = fraction bits) 831 movl 0x8(%ap), %r1 # %r1 - addr of fraction destination
|
/src/sys/dev/usb/ |
uaudio.c | 173 u_int fraction; /* fraction/1000 is the extra samples/frame */ member in struct:chan 3600 "fraction=0.%03d\n", ch->sample_size, ch->bytes_per_frame, 3601 ch->fraction); 3656 "fraction=0.%03d\n", ch->sample_size, ch->bytes_per_frame, 3657 ch->fraction); 3827 residue += ch->fraction; 3939 residue += ch->fraction; 4057 ch->fraction = 0; 4060 ch->fraction = param->sample_rate % sc->sc_usb_frames_per_second [all...] |