Home
last modified time | relevance | path

Searched refs:len_u (Results 1 – 16 of 16) sorted by relevance

/dports/misc/vxl/vxl-3.3.2/core/vpgl/xio/
H A Dvpgl_xio_lvcs.cxx26 std::string len_u = "meters", ang_u = "degrees"; in x_write() local
28 len_u = "feet"; in x_write()
31 xml_element.add_attribute("local_XYZ_unit", len_u); in x_write()
/dports/misc/vxl/vxl-3.3.2/core/vpgl/
H A Dvpgl_lvcs.cxx827 std::string len_u = "meters", ang_u = "degrees"; in print() local
829 len_u = "feet"; in print()
835 << "length unit " << len_u << '\n' in print()
846 std::string len_u = "meters", ang_u = "degrees"; in read() local
861 strm >> len_u >> ang_u; in read()
862 if (len_u.compare("feet") == 0) in read()
864 else if (len_u.compare("meters") == 0) in read()
867 std::cerr << "undefined localXYZUnit_ " << len_u << '\n'; in read()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/src/
H A Dflb_http_client.c1038 int len_u; in flb_http_add_auth_header() local
1054 len_u = strlen(user); in flb_http_add_auth_header()
1063 p = flb_malloc(len_u + len_p + 2); in flb_http_add_auth_header()
1069 memcpy(p, user, len_u); in flb_http_add_auth_header()
1070 p[len_u] = ':'; in flb_http_add_auth_header()
1071 len_out = len_u + 1; in flb_http_add_auth_header()
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/uccsdt/
H A Dcterm.F491 len_u = urange(2,symu)-urange(1,symu)+1
498 & dbl_mb(k_uf),len_u)
545 len_u = urange(2,symu)-urange(1,symu)+1
554 & dbl_mb(k_uf),len_u)
/dports/science/nwchem-data/nwchem-7.0.2-release/src/uccsdt/
H A Dcterm.F491 len_u = urange(2,symu)-urange(1,symu)+1
498 & dbl_mb(k_uf),len_u)
545 len_u = urange(2,symu)-urange(1,symu)+1
554 & dbl_mb(k_uf),len_u)
/dports/graphics/py-geomdl/geomdl-5.2.10/geomdl/
H A DCPGen.py178 len_u = len(self._grid_points)
189 u = random.randint(base_extent, (len_u - 1) - base_extent)
/dports/math/polymake/polymake-4.5/apps/fan/src/
H A Dplanar_net.cc235 len_u=norm(u), len_v=norm(v); in layout_one_facet() local
237 u /= len_u; v /= len_v; // scaling to unit lengths in layout_one_facet()
259 << ": len_u=" << len_u << " beta=" << beta << " a=" << a << " b=" << b in layout_one_facet()
/dports/irc/hexchat/hexchat-2.16.0/src/common/
H A Dserver.c1120 int len_u=0, len_p=0; in traverse_socks5() local
1131 len_u = strlen (prefs.hex_net_proxy_user); in traverse_socks5()
1134 packetlen = 2 + len_u + 1 + len_p; in traverse_socks5()
1138 u_p_buf[1] = len_u; in traverse_socks5()
1139 memcpy (u_p_buf + 2, prefs.hex_net_proxy_user, len_u); in traverse_socks5()
1140 u_p_buf[2 + len_u] = len_p; in traverse_socks5()
1141 memcpy (u_p_buf + 3 + len_u, prefs.hex_net_proxy_pass, len_p); in traverse_socks5()
H A Ddcc.c1105 int len_u=0, len_p=0; in dcc_socks5_proxy_traverse() local
1119 len_u = strlen (prefs.hex_net_proxy_user); in dcc_socks5_proxy_traverse()
1122 proxy->buffer[1] = len_u; in dcc_socks5_proxy_traverse()
1123 memcpy (proxy->buffer + 2, prefs.hex_net_proxy_user, len_u); in dcc_socks5_proxy_traverse()
1124 proxy->buffer[2 + len_u] = len_p; in dcc_socks5_proxy_traverse()
1125 memcpy (proxy->buffer + 3 + len_u, prefs.hex_net_proxy_pass, len_p); in dcc_socks5_proxy_traverse()
1127 proxy->buffersize = 3 + len_u + len_p; in dcc_socks5_proxy_traverse()
/dports/net-im/pidgin-sipe/pidgin-sipe-1.24.0/src/core/
H A Dsip-sec-ntlm.c524 int len_u = 2 * strlen(password); // utf16 should not be more in NTOWFv1() local
525 unsigned char *unicode_password = g_malloc(len_u); in NTOWFv1()
529 len_u = unicode_strconvcopy((gchar *)unicode_password, password, len_u); in NTOWFv1()
530 MD4 (unicode_password, len_u, result); in NTOWFv1()
/dports/math/stp/stp-2.3.3/lib/Simplifier/
H A DSimplifier.cpp2368 const unsigned int len_u = u.GetValueWidth(); in simplify_term_switch() local
2370 if (len_u > i_val) in simplify_term_switch()
2377 else if (len_a0 > i_val && j_val >= len_u) in simplify_term_switch()
2382 i = _bm->CreateBVConst(32, i_val - len_u); in simplify_term_switch()
2383 j = _bm->CreateBVConst(32, j_val - len_u); in simplify_term_switch()
2390 i = _bm->CreateBVConst(32, i_val - len_u); in simplify_term_switch()
2391 ASTNode m = _bm->CreateBVConst(32, len_u - 1); in simplify_term_switch()
2393 nf->CreateTerm(BVEXTRACT, i_val - len_u + 1, t, i, zero), in simplify_term_switch()
2395 u = SimplifyTerm(nf->CreateTerm(BVEXTRACT, len_u - j_val, u, m, j), in simplify_term_switch()
/dports/lang/mono/mono-5.10.1.57/external/boringssl/ssl/
H A Dt1_lib.c2710 unsigned len_u; in tls1_channel_id_hash() local
2711 EVP_DigestFinal_ex(&ctx, out, &len_u); in tls1_channel_id_hash()
2712 *out_len = len_u; in tls1_channel_id_hash()
/dports/lang/perl5.30/perl-5.30.3/
H A Dregcomp.c9525 UV len_u = 0; in Perl__invlist_union_maybe_complement_2nd() local
9738 len_u = i_u; in Perl__invlist_union_maybe_complement_2nd()
9749 len_u = i_u + copy_count; in Perl__invlist_union_maybe_complement_2nd()
9755 if (len_u != _invlist_len(u)) { in Perl__invlist_union_maybe_complement_2nd()
9756 invlist_set_len(u, len_u, *get_invlist_offset_addr(u)); in Perl__invlist_union_maybe_complement_2nd()
/dports/lang/perl5.34/perl-5.34.0/
H A Dregcomp.c9591 UV len_u = 0; in Perl__invlist_union_maybe_complement_2nd() local
9804 len_u = i_u; in Perl__invlist_union_maybe_complement_2nd()
9815 len_u = i_u + copy_count; in Perl__invlist_union_maybe_complement_2nd()
9821 if (len_u != _invlist_len(u)) { in Perl__invlist_union_maybe_complement_2nd()
9822 invlist_set_len(u, len_u, *get_invlist_offset_addr(u)); in Perl__invlist_union_maybe_complement_2nd()
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/
H A Dregcomp.c9620 UV len_u = 0; in Perl__invlist_union_maybe_complement_2nd() local
9833 len_u = i_u; in Perl__invlist_union_maybe_complement_2nd()
9844 len_u = i_u + copy_count; in Perl__invlist_union_maybe_complement_2nd()
9850 if (len_u != _invlist_len(u)) { in Perl__invlist_union_maybe_complement_2nd()
9851 invlist_set_len(u, len_u, *get_invlist_offset_addr(u)); in Perl__invlist_union_maybe_complement_2nd()
/dports/lang/perl5.32/perl-5.32.1/
H A Dregcomp.c9628 UV len_u = 0; in Perl__invlist_union_maybe_complement_2nd() local
9841 len_u = i_u; in Perl__invlist_union_maybe_complement_2nd()
9852 len_u = i_u + copy_count; in Perl__invlist_union_maybe_complement_2nd()
9858 if (len_u != _invlist_len(u)) { in Perl__invlist_union_maybe_complement_2nd()
9859 invlist_set_len(u, len_u, *get_invlist_offset_addr(u)); in Perl__invlist_union_maybe_complement_2nd()