Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dhardcopy.c1519 float fraction; in prt_real_bits() local
1522 fraction = (float)(real - integer); in prt_real_bits()
1524 fraction = -fraction; in prt_real_bits()
1526 fraction *= 10.0; in prt_real_bits()
1529 *pfraction = (int)(fraction + 0.5); in prt_real_bits()
1541 int fraction; in prt_write_real() local
1543 prt_real_bits(val, prec, &integer, &fraction); in prt_write_real()
1548 if (fraction != 0) in prt_write_real()
1551 while ((fraction % 10) == 0) in prt_write_real()
1554 fraction /= 10; in prt_write_real()
[all …]
H A Dcindent.c1716 int fraction = 0; in parse_cino() local
1861 fraction = atol((char *)++p); in parse_cino()
1879 n += (sw * fraction + divider / 2) / divider; in parse_cino()
/vim-8.2.3635/runtime/syntax/
H A Dsqlinformix.vim29 syn keyword sqlBoolean year month day hour minute second fraction
H A Dspup.vim106 syn keyword spupTypes entr_mol_sol entr_mol_liq entr_mol_vap fraction contained
H A Dmush.vim32 syntax keyword mushFunction contained fraction fullname functions get get_eval grab
H A Dgnuplot.vim371 syn keyword gnuplotKeyword fraction front function gap graph head[s]
H A Dfortran.vim234 … cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr i…
H A Dpostscr.vim247 …syn keyword postscrConstant contained exclamdown cent sterling fraction yen florin section curre…
/vim-8.2.3635/runtime/doc/
H A Dquotes.txt75 Translated: Even when only using a fraction of Vim-functions, the user will
H A Dgui.txt208 indicates the fraction of the buffer which can be seen in the window.
H A Dversion8.txt2145 Solution: Update w_wrow before calculating the fraction.
6188 Solution: When using "zt", "zb" and "z=" recompute the fraction.
19858 Solution: Sleep a fraction of a second.
24968 Solution: Set the fraction before changing the window height. (closes #2798)
34058 Solution: Don't adjust to fraction if all the text fits in the window.
34189 Solution: Do restore fraction if topline is not one.
H A Dversion7.txt10942 Solution: Don't set the fraction in a window with zero height.
/vim-8.2.3635/src/testdir/
H A Dtest_window_cmd.vim853 " window should restore fraction.