Home
last modified time | relevance | path

Searched refs:abs_i (Results 1 – 25 of 45) sorted by relevance

12

/dports/biology/diamond/diamond-2.0.13/src/lib/alp/
H A Dnjn_integer.hpp89 Int abs_i = maximum <Int> (i_ >= 0 ? i_ : -i_, j_ >= 0 ? j_ : -j_); in euclidAlgorithm() local
95 remainder = mod <Int> (abs_i, abs_j); in euclidAlgorithm()
96 abs_i = abs_j; in euclidAlgorithm()
100 return abs_i; in euclidAlgorithm()
/dports/biology/mmseqs2/MMseqs2-13-45111/lib/alp/
H A Dnjn_integer.hpp89 Int abs_i = maximum <Int> (i_ >= 0 ? i_ : -i_, j_ >= 0 ? j_ : -j_); in euclidAlgorithm() local
95 remainder = mod <Int> (abs_i, abs_j); in euclidAlgorithm()
96 abs_i = abs_j; in euclidAlgorithm()
100 return abs_i; in euclidAlgorithm()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/algo/blast/gumbel_params/
H A Dnjn_integer.hpp94 Int abs_i = maximum <Int> (i_ >= 0 ? i_ : -i_, j_ >= 0 ? j_ : -j_); in euclidAlgorithm() local
100 remainder = mod <Int> (abs_i, abs_j); in euclidAlgorithm()
101 abs_i = abs_j; in euclidAlgorithm()
105 return abs_i; in euclidAlgorithm()
/dports/devel/lua-posix/luaposix-35.1/ext/include/
H A Dcompat-5.2.c26 int abs_i = lua_absindex(L, i); in lua_rawgetp() local
28 lua_rawget(L, abs_i); in lua_rawgetp()
32 int abs_i = lua_absindex(L, i); in lua_rawsetp() local
36 lua_rawset(L, abs_i); in lua_rawsetp()
141 int abs_i = lua_absindex(L, i); in luaL_getsubtable() local
144 lua_gettable(L, abs_i); in luaL_getsubtable()
151 lua_settable(L, abs_i); in luaL_getsubtable()
/dports/audio/carla/Carla-2.4.1/source/modules/lilv/serd-0.24.0/src/
H A Dnode.c313 int64_t abs_i = (i < 0) ? -i : i; in serd_node_new_integer() local
314 const unsigned digits = serd_digits(abs_i); in serd_node_new_integer()
329 *s-- = '0' + (abs_i % 10); in serd_node_new_integer()
330 } while ((abs_i /= 10) > 0); in serd_node_new_integer()
/dports/audio/audacity/audacity-Audacity-3.1.3/lib-src/lv2/serd/src/
H A Dnode.c315 int64_t abs_i = (i < 0) ? -i : i; in serd_node_new_integer() local
316 const unsigned digits = serd_digits(abs_i); in serd_node_new_integer()
331 *s-- = '0' + (abs_i % 10); in serd_node_new_integer()
332 } while ((abs_i /= 10) > 0); in serd_node_new_integer()
/dports/audio/sonic-visualiser/sonic-visualiser-4.0.1/piper-vamp-cpp/ext/serd/src/
H A Dnode.c311 int64_t abs_i = (i < 0) ? -i : i; in serd_node_new_integer() local
312 const unsigned digits = serd_digits(abs_i); in serd_node_new_integer()
327 *s-- = '0' + (abs_i % 10); in serd_node_new_integer()
328 } while ((abs_i /= 10) > 0); in serd_node_new_integer()
/dports/devel/serd/serd-0.30.10/src/
H A Dnode.c350 uint64_t abs_i = (i < 0) ? -i : i; in serd_node_new_integer() local
351 const unsigned digits = serd_digits((double)abs_i); in serd_node_new_integer()
366 *s-- = (char)('0' + (abs_i % 10)); in serd_node_new_integer()
367 } while ((abs_i /= 10) > 0); in serd_node_new_integer()
/dports/games/minetestmapper/minetestmapper-20200328/
H A Ddb-redis.cpp133 std::size_t abs_i = 0; in HMGET() local
165 result(abs_i + i, ustring((const unsigned char *) subreply->str, subreply->len)); in HMGET()
168 abs_i += reply->elements; in HMGET()
/dports/math/gnuplot/gnuplot-5.4.1/src/
H A Deval.c335 double abs_i = fabs(val->v.cmplx_val.imag); in magnitude() local
338 if (abs_i == 0) in magnitude()
340 if (abs_r > abs_i) { in magnitude()
341 quotient = abs_i / abs_r; in magnitude()
344 quotient = abs_r / abs_i; in magnitude()
345 return abs_i * sqrt(1 + quotient*quotient); in magnitude()
/dports/math/gnuplot-lite/gnuplot-5.4.1/src/
H A Deval.c335 double abs_i = fabs(val->v.cmplx_val.imag); in magnitude() local
338 if (abs_i == 0) in magnitude()
340 if (abs_r > abs_i) { in magnitude()
341 quotient = abs_i / abs_r; in magnitude()
344 quotient = abs_r / abs_i; in magnitude()
345 return abs_i * sqrt(1 + quotient*quotient); in magnitude()
/dports/devel/luv/luv-1.41.0-0/deps/lua-compat-5.3/c-api/
H A Dcompat-5.3.c192 int abs_i = lua_absindex(L, i); in lua_rawgetp() local
194 lua_rawget(L, abs_i); in lua_rawgetp()
199 int abs_i = lua_absindex(L, i); in lua_rawsetp() local
203 lua_rawset(L, abs_i); in lua_rawsetp()
243 int abs_i = lua_absindex(L, i); in luaL_getsubtable() local
246 lua_gettable(L, abs_i); in luaL_getsubtable()
253 lua_settable(L, abs_i); in luaL_getsubtable()
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/sol/compatibility/
H A Dcompat-5.3.c192 int abs_i = lua_absindex(L, i); in lua_rawgetp() local
194 lua_rawget(L, abs_i); in lua_rawgetp()
199 int abs_i = lua_absindex(L, i); in lua_rawsetp() local
203 lua_rawset(L, abs_i); in lua_rawsetp()
234 int abs_i = lua_absindex(L, i); in luaL_getsubtable() local
237 lua_gettable(L, abs_i); in luaL_getsubtable()
244 lua_settable(L, abs_i); in luaL_getsubtable()
/dports/devel/sol2/sol2-4.0.0-alpha/include/sol/compatibility/
H A Dcompat-5.3.c.h187 int abs_i = lua_absindex(L, i); in lua_rawgetp() local
189 lua_rawget(L, abs_i); in lua_rawgetp()
194 int abs_i = lua_absindex(L, i); in lua_rawsetp() local
198 lua_rawset(L, abs_i); in lua_rawsetp()
229 int abs_i = lua_absindex(L, i); in luaL_getsubtable() local
232 lua_gettable(L, abs_i); in luaL_getsubtable()
239 lua_settable(L, abs_i); in luaL_getsubtable()
/dports/devel/lua-cqueues/cqueues-rel-20200726/vendor/compat53/c-api/
H A Dcompat-5.3.c193 int abs_i = lua_absindex(L, i); in lua_rawgetp() local
195 lua_rawget(L, abs_i); in lua_rawgetp()
200 int abs_i = lua_absindex(L, i); in lua_rawsetp() local
204 lua_rawset(L, abs_i); in lua_rawsetp()
235 int abs_i = lua_absindex(L, i); in luaL_getsubtable() local
238 lua_gettable(L, abs_i); in luaL_getsubtable()
245 lua_settable(L, abs_i); in luaL_getsubtable()
/dports/math/gnuplot-tex-extras/gnuplot-5.2.8/src/
H A Deval.c344 double abs_i = fabs(val->v.cmplx_val.imag); in magnitude() local
347 if (abs_i == 0) in magnitude()
349 if (abs_r > abs_i) { in magnitude()
350 quotient = abs_i / abs_r; in magnitude()
353 quotient = abs_r / abs_i; in magnitude()
354 return abs_i * sqrt(1 + quotient*quotient); in magnitude()
/dports/mail/rspamd-devel/rspamd-93430bb/src/lua/
H A Dlua_common.h73 int abs_i = lua_absindex(L, i); in lua_rawgetp() local
75 lua_rawget(L, abs_i); in lua_rawgetp()
80 int abs_i = lua_absindex(L, i); in lua_rawsetp() local
84 lua_rawset(L, abs_i); in lua_rawsetp()
/dports/mail/rspamd/rspamd-3.1/src/lua/
H A Dlua_common.h73 int abs_i = lua_absindex(L, i); in lua_rawgetp() local
75 lua_rawget(L, abs_i); in lua_rawgetp()
80 int abs_i = lua_absindex(L, i); in lua_rawsetp() local
84 lua_rawset(L, abs_i); in lua_rawsetp()
/dports/misc/xplr/xplr-0.17.0/cargo-crates/mlua-0.7.0/src/ffi/
H A Dcompat53.rs435 let abs_i = lua_absindex(L, idx); in lua_rawgetp() localVariable
437 lua_rawget(L, abs_i); in lua_rawgetp()
474 let abs_i = lua_absindex(L, idx); in lua_rawsetp() localVariable
478 lua_rawset(L, abs_i); in lua_rawsetp()
798 let abs_i = lua_absindex(L, idx); in luaL_getsubtable() localVariable
801 lua_gettable(L, abs_i); in luaL_getsubtable()
809 lua_settable(L, abs_i); in luaL_getsubtable()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/src/
H A DDakotaNonD.cpp832 RealVector& abs_i = computedPDFAbscissas[i]; abs_i.resize(pdf_size+1); in compute_densities() local
836 abs_i[0] = min; ord_i[0] = prev_p/(prev_r - min); in compute_densities()
843 abs_i[j+offset] = prev_r; in compute_densities()
848 abs_i[pdf_size-1] = last_r; in compute_densities()
850 abs_i[pdf_size] = max; // no ordinate for final abscissa in compute_densities()
853 abs_i[pdf_size] = last_r; // no ordinate for final abscissa in compute_densities()
949 const RealVector& abs_i = computedPDFAbscissas[i]; in print_densities() local
956 s << " " << std::setw(wpp7) << abs_i[j] in print_densities()
957 << " " << std::setw(wpp7) << abs_i[j+1] in print_densities()
/dports/science/mbdyn/mbdyn-1.7.3/mbdyn/elec/
H A Dmotor.cc245 const doublereal abs_i = fabs(i); in AssJac() local
246 const doublereal dfi_di = -dR.dGet(abs_i) - dR.dGetP(abs_i) * i; in AssJac()
/dports/emulators/qemu42/qemu-4.2.1/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_calib.c380 s32 abs_i = abs(in_re), in ar9003_hw_find_mag_approx() local
384 if (abs_i > abs_q) { in ar9003_hw_find_mag_approx()
385 max_abs = abs_i; in ar9003_hw_find_mag_approx()
389 min_abs = abs_i; in ar9003_hw_find_mag_approx()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_calib.c380 s32 abs_i = abs(in_re), in ar9003_hw_find_mag_approx() local
384 if (abs_i > abs_q) { in ar9003_hw_find_mag_approx()
385 max_abs = abs_i; in ar9003_hw_find_mag_approx()
389 min_abs = abs_i; in ar9003_hw_find_mag_approx()
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_calib.c380 s32 abs_i = abs(in_re), in ar9003_hw_find_mag_approx() local
384 if (abs_i > abs_q) { in ar9003_hw_find_mag_approx()
385 max_abs = abs_i; in ar9003_hw_find_mag_approx()
389 min_abs = abs_i; in ar9003_hw_find_mag_approx()
/dports/emulators/qemu5/qemu-5.2.0/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_calib.c380 s32 abs_i = abs(in_re), in ar9003_hw_find_mag_approx() local
384 if (abs_i > abs_q) { in ar9003_hw_find_mag_approx()
385 max_abs = abs_i; in ar9003_hw_find_mag_approx()
389 min_abs = abs_i; in ar9003_hw_find_mag_approx()

12