Home
last modified time | relevance | path

Searched refs:lendiff (Results 1 – 25 of 71) sorted by relevance

123

/dports/math/cln/cln-1.3.6/src/float/dfloat/conv/
H A Dcl_RA_to_double.cc34 var sintC lendiff = (sintC)integer_length(a) // (integer-length a) in double_approx() local
62 if (lendiff >= DF_mant_len+2) in double_approx()
64 { nenner = ash(b,lendiff - (DF_mant_len+2)); // (ash b n-m-54) in double_approx()
86 lendiff = lendiff+1; // Exponent := n-m+1 in double_approx()
115 { mant = mant>>1; lendiff = lendiff+1; } in double_approx()
118 if (lendiff < (sintL)(DF_exp_low-DF_exp_mid)) in double_approx()
120 else if (lendiff > (sintL)(DF_exp_high-DF_exp_mid)) in double_approx()
140 lendiff = lendiff+1; // Exponent := n-m+1 in double_approx()
171 { manthi = manthi>>1; lendiff = lendiff+1; } in double_approx()
175 if (lendiff < (sintL)(DF_exp_low-DF_exp_mid)) in double_approx()
[all …]
/dports/math/cln/cln-1.3.6/src/float/dfloat/elem/
H A Dcl_DF_from_RA.cc44 var sintC lendiff = (sintC)integer_length(a) // (integer-length a) in cl_RA_to_DF() local
46 if (lendiff > DF_exp_high-DF_exp_mid) // Exponent >= n-m > Obergrenze ? in cl_RA_to_DF()
56 if (lendiff >= DF_mant_len+2) in cl_RA_to_DF()
58 { nenner = ash(b,lendiff - (DF_mant_len+2)); // (ash b n-m-54) in cl_RA_to_DF()
62 { zaehler = ash(a,(DF_mant_len+2) - lendiff); // (ash a -n+m+54) in cl_RA_to_DF()
81 lendiff = lendiff+1; // Exponent := n-m+1 in cl_RA_to_DF()
110 { mant = mant>>1; lendiff = lendiff+1; } in cl_RA_to_DF()
113 return encode_DF(sign,lendiff,mant); in cl_RA_to_DF()
122 lendiff = lendiff+1; // Exponent := n-m+1 in cl_RA_to_DF()
153 { manthi = manthi>>1; lendiff = lendiff+1; } in cl_RA_to_DF()
[all …]
/dports/math/cln/cln-1.3.6/src/float/ffloat/conv/
H A Dcl_RA_to_float.cc34 var sintC lendiff = (sintC)integer_length(a) // (integer-length a) in float_approx() local
36 if (lendiff > FF_exp_high-FF_exp_mid) // Exponent >= n-m > Obergrenze ? in float_approx()
40 if (lendiff < FF_exp_low-FF_exp_mid-2) // Exponent <= n-m+2 < Untergrenze ? in float_approx()
46 if (lendiff >= FF_mant_len+2) in float_approx()
48 { nenner = ash(b,lendiff - (FF_mant_len+2)); // (ash b n-m-25) in float_approx()
52 { zaehler = ash(a,(FF_mant_len+2) - lendiff); // (ash a -n+m+25) in float_approx()
67 lendiff = lendiff+1; // Exponent := n-m+1 in float_approx()
96 { mant = mant>>1; lendiff = lendiff+1; } in float_approx()
99 if (lendiff < (sintL)(FF_exp_low-FF_exp_mid)) in float_approx()
101 else if (lendiff > (sintL)(FF_exp_high-FF_exp_mid)) in float_approx()
[all …]
/dports/math/cln/cln-1.3.6/src/float/sfloat/elem/
H A Dcl_SF_from_RA.cc43 var sintC lendiff = (sintC)integer_length(a) // (integer-length a) in cl_RA_to_SF() local
45 if (lendiff > SF_exp_high-SF_exp_mid) // Exponent >= n-m > Obergrenze ? in cl_RA_to_SF()
47 if (lendiff < SF_exp_low-SF_exp_mid-2) // Exponent <= n-m+2 < Untergrenze ? in cl_RA_to_SF()
55 if (lendiff >= SF_mant_len+2) in cl_RA_to_SF()
57 { nenner = ash(b,lendiff - (SF_mant_len+2)); // (ash b n-m-18) in cl_RA_to_SF()
61 { zaehler = ash(a,(SF_mant_len+2) - lendiff); // (ash a -n+m+18) in cl_RA_to_SF()
73 lendiff = lendiff+1; // Exponent := n-m+1 in cl_RA_to_SF()
102 { mant = mant>>1; lendiff = lendiff+1; } in cl_RA_to_SF()
105 return encode_SF(sign,lendiff,mant); in cl_RA_to_SF()
/dports/math/cln/cln-1.3.6/src/float/ffloat/elem/
H A Dcl_FF_from_RA.cc44 var sintC lendiff = (sintC)integer_length(a) // (integer-length a) in cl_RA_to_FF() local
46 if (lendiff > FF_exp_high-FF_exp_mid) // Exponent >= n-m > Obergrenze ? in cl_RA_to_FF()
48 if (lendiff < FF_exp_low-FF_exp_mid-2) // Exponent <= n-m+2 < Untergrenze ? in cl_RA_to_FF()
56 if (lendiff >= FF_mant_len+2) in cl_RA_to_FF()
58 { nenner = ash(b,lendiff - (FF_mant_len+2)); // (ash b n-m-25) in cl_RA_to_FF()
62 { zaehler = ash(a,(FF_mant_len+2) - lendiff); // (ash a -n+m+25) in cl_RA_to_FF()
77 lendiff = lendiff+1; // Exponent := n-m+1 in cl_RA_to_FF()
106 { mant = mant>>1; lendiff = lendiff+1; } in cl_RA_to_FF()
109 return encode_FF(sign,lendiff,mant); in cl_RA_to_FF()
/dports/databases/xapian-core/xapian-core-1.4.18/api/
H A Deditdistance.cc172 int lendiff = len2 - len1; in seqcmp_editdist() local
174 if (lendiff < 0) { in seqcmp_editdist()
175 lendiff = -lendiff; in seqcmp_editdist()
185 int p = lendiff; /* This is the minimum possible edit distance. */ in seqcmp_editdist()
189 if (abs(lendiff - inc) <= temp_p) { in seqcmp_editdist()
190 state.edist_calc_f_kp(lendiff - inc, temp_p); in seqcmp_editdist()
192 if (abs(lendiff + inc) <= temp_p) { in seqcmp_editdist()
193 state.edist_calc_f_kp(lendiff + inc, temp_p); in seqcmp_editdist()
196 state.edist_calc_f_kp(lendiff, p); in seqcmp_editdist()
198 if (state.get_f_kp(lendiff, p) == len1) break; in seqcmp_editdist()
/dports/databases/xapian-core12/xapian-core-1.2.25/api/
H A Deditdistance.cc176 int lendiff = len2 - len1; in seqcmp_editdist() local
178 if (lendiff < 0) { in seqcmp_editdist()
179 lendiff = -lendiff; in seqcmp_editdist()
189 int p = lendiff; /* This is the minimum possible edit distance. */ in seqcmp_editdist()
193 if (abs(lendiff - inc) <= temp_p) { in seqcmp_editdist()
194 state.edist_calc_f_kp(lendiff - inc, temp_p); in seqcmp_editdist()
196 if (abs(lendiff + inc) <= temp_p) { in seqcmp_editdist()
197 state.edist_calc_f_kp(lendiff + inc, temp_p); in seqcmp_editdist()
200 state.edist_calc_f_kp(lendiff, p); in seqcmp_editdist()
202 if (state.get_f_kp(lendiff, p) == len1) break; in seqcmp_editdist()
/dports/news/golded+/golded-plus/golded+/goldlib/gall/
H A Dgstrbags.cpp108 int lendiff = length - oldlen; in Change() local
112 int newsizeblks = ((oldsize+lendiff)/blocksize) + 1; in Change()
113 if(lendiff > 0) { in Change()
115 bag = (char*)throw_realloc(bag, oldsize+lendiff); in Change()
118 else if(lendiff < 0) { in Change()
121 bag = (char*)throw_realloc(bag, oldsize+lendiff); in Change()
124 bagsize += lendiff; in Change()
126 Pos(n) += lendiff; in Change()
/dports/math/cln/cln-1.3.6/src/base/digitseq/
H A Dcl_2DS_div.cc111 var uintC lendiff = a_len - b_len; in div2adic() local
132 if (lendiff <= b_len) in div2adic()
133 { sub_loop_lsp(a_LSDptr lspop b_len,p_LSDptr lspop b_len,dest_LSDptr lspop b_len,lendiff); } in div2adic()
136 copy_loop_lsp(a_LSDptr lspop 2*b_len,dest_LSDptr lspop 2*b_len,lendiff-b_len); in div2adic()
137 if (carry) { dec_loop_lsp(dest_LSDptr lspop 2*b_len,lendiff-b_len); } in div2adic()
162 until (a_len==lendiff); in div2adic()
/dports/math/cln/cln-1.3.6/src/float/lfloat/elem/
H A Dcl_LF_from_RA.cc58 var sintC lendiff = (sintC)integer_length(a) // (integer-length a) in cl_RA_to_LF() local
65 if (lendiff > (sintC)difflimit) in cl_RA_to_LF()
67 { nenner = ash(b,(uintC)(lendiff - difflimit)); in cl_RA_to_LF()
72 { zaehler = ash(a,(uintC)(difflimit - lendiff)); // (ash a -k+m+16n+1) in cl_RA_to_LF()
80 var Lfloat y = allocate_lfloat(len,lendiff+LF_exp_mid,sign); // neues Long-Float in cl_RA_to_LF()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/readline/
H A Ddisplay.c1043 int temp, lendiff, wsatend, od, nd; local
1271 _rl_last_c_pos = lendiff;
1280 lendiff = (nls - nfd) - (ols - ofd);
1284 col_lendiff = lendiff;
1300 col_lendiff = lendiff;
1351 if ((temp - lendiff) > 0)
1353 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1357 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1377 -lendiff == visible_wrap_offset)
1399 lendiff = (oe - old) - (ne - new);
[all …]
/dports/cad/magic/magic-8.3.245/readline/readline-4.3/
H A Ddisplay.c1039 int temp, lendiff, wsatend, od, nd; local
1267 _rl_last_c_pos = lendiff;
1276 lendiff = (nls - nfd) - (ols - ofd);
1280 col_lendiff = lendiff;
1296 col_lendiff = lendiff;
1347 if ((temp - lendiff) > 0)
1349 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1353 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1373 -lendiff == visible_wrap_offset)
1395 lendiff = (oe - old) - (ne - new);
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/readline/
H A Ddisplay.c1043 int temp, lendiff, wsatend, od, nd; local
1271 _rl_last_c_pos = lendiff;
1280 lendiff = (nls - nfd) - (ols - ofd);
1284 col_lendiff = lendiff;
1300 col_lendiff = lendiff;
1351 if ((temp - lendiff) > 0)
1353 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1357 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1377 -lendiff == visible_wrap_offset)
1399 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/gqlplus/gqlplus-1.16/readline/
H A Ddisplay.c1039 int temp, lendiff, wsatend, od, nd; local
1267 _rl_last_c_pos = lendiff;
1276 lendiff = (nls - nfd) - (ols - ofd);
1280 col_lendiff = lendiff;
1296 col_lendiff = lendiff;
1347 if ((temp - lendiff) > 0)
1349 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1351 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff) - col_lendiff;
1373 -lendiff == visible_wrap_offset)
1395 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/gqlplus/gqlplus-1.16/gqlplus-1.15/readline/
H A Ddisplay.c1039 int temp, lendiff, wsatend, od, nd; local
1267 _rl_last_c_pos = lendiff;
1276 lendiff = (nls - nfd) - (ols - ofd);
1280 col_lendiff = lendiff;
1296 col_lendiff = lendiff;
1347 if ((temp - lendiff) > 0)
1349 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1351 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff) - col_lendiff;
1373 -lendiff == visible_wrap_offset)
1395 lendiff = (oe - old) - (ne - new);
[all …]
/dports/devel/avr-gdb/gdb-7.3.1/readline/
H A Ddisplay.c1172 int temp, lendiff, wsatend, od, nd; local
1430 _rl_last_c_pos = lendiff;
1439 lendiff = (nls - nfd) - (ols - ofd);
1443 col_lendiff = lendiff;
1459 col_lendiff = lendiff;
1510 if ((temp - lendiff) > 0)
1512 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1520 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1544 -lendiff == visible_wrap_offset)
1566 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/extra/readline/
H A Ddisplay.c1196 int temp, lendiff, wsatend, od, nd; local
1434 lendiff = local_prompt_len;
1454 _rl_last_c_pos = lendiff;
1475 lendiff = (nls - nfd) - (ols - ofd);
1479 col_lendiff = lendiff;
1495 col_lendiff = lendiff;
1546 if ((temp - lendiff) > 0)
1548 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1556 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1602 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/extra/readline/
H A Ddisplay.c1196 int temp, lendiff, wsatend, od, nd; local
1434 lendiff = local_prompt_len;
1454 _rl_last_c_pos = lendiff;
1475 lendiff = (nls - nfd) - (ols - ofd);
1479 col_lendiff = lendiff;
1495 col_lendiff = lendiff;
1546 if ((temp - lendiff) > 0)
1548 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1556 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1602 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/extra/readline/
H A Ddisplay.c1196 int temp, lendiff, wsatend, od, nd; local
1434 lendiff = local_prompt_len;
1454 _rl_last_c_pos = lendiff;
1475 lendiff = (nls - nfd) - (ols - ofd);
1479 col_lendiff = lendiff;
1495 col_lendiff = lendiff;
1546 if ((temp - lendiff) > 0)
1548 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1556 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1602 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/extra/readline/
H A Ddisplay.c1196 int temp, lendiff, wsatend, od, nd;
1434 lendiff = local_prompt_len;
1454 _rl_last_c_pos = lendiff;
1475 lendiff = (nls - nfd) - (ols - ofd);
1479 col_lendiff = lendiff;
1495 col_lendiff = lendiff;
1546 if ((temp - lendiff) > 0)
1548 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1556 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1602 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/extra/readline/
H A Ddisplay.c1196 int temp, lendiff, wsatend, od, nd; local
1434 lendiff = local_prompt_len;
1454 _rl_last_c_pos = lendiff;
1475 lendiff = (nls - nfd) - (ols - ofd);
1479 col_lendiff = lendiff;
1495 col_lendiff = lendiff;
1546 if ((temp - lendiff) > 0)
1548 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1556 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1602 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/extra/readline/
H A Ddisplay.c1196 int temp, lendiff, wsatend, od, nd; local
1434 lendiff = local_prompt_len;
1454 _rl_last_c_pos = lendiff;
1475 lendiff = (nls - nfd) - (ols - ofd);
1479 col_lendiff = lendiff;
1495 col_lendiff = lendiff;
1546 if ((temp - lendiff) > 0)
1548 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1556 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1602 lendiff = (oe - old) - (ne - new);
[all …]
/dports/databases/mysql55-client/mysql-5.5.62/cmd-line-utils/readline/
H A Ddisplay.c1200 int temp, lendiff, wsatend, od, nd; local
1438 lendiff = local_prompt_len;
1458 _rl_last_c_pos = lendiff;
1479 lendiff = (nls - nfd) - (ols - ofd);
1483 col_lendiff = lendiff;
1499 col_lendiff = lendiff;
1550 if ((temp - lendiff) > 0)
1552 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1560 _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
1606 lendiff = (oe - old) - (ne - new);
[all …]
/dports/devel/gdb761/gdb-7.6.1/readline/
H A Ddisplay.c1519 lendiff = local_prompt_len;
1541 _rl_last_c_pos = lendiff + modmark;
1570 col_lendiff = lendiff;
1586 col_lendiff = lendiff;
1607 if (lendiff < 0)
1637 lendiff > prompt_visible_length &&
1680 if ((temp - lendiff) > 0)
1682 _rl_output_some_chars (nfd + lendiff, temp - lendiff);
1690 twidth = temp - lendiff;
1778 lendiff = (oe - old) - (ne - new);
[all …]
/dports/graphics/gle/gle-3.1.0/src/
H A Dintersect.h305 double lendiff; \
345 VEC_LENGTH (lendiff, n); \
350 if (lendiff < DEGENERATE_TOLERANCE) { \
354 lendiff = 1.0 / lendiff; \
355 VEC_SCALE (n, lendiff, n); \

123