Home
last modified time | relevance | path

Searched refs:xbn (Results 1 – 25 of 386) sorted by relevance

12345678910>>...16

/dports/editors/libreoffice/libreoffice-7.2.6.2/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/
H A DScriptSelector.java92 XBrowseNode xbn = selectorPanel.getSelection(); in show()
95 if (xbn != null && in show()
96 xbn.getType() == BrowseNodeTypes.SCRIPT) in show()
242 XBrowseNode xbn = getSelection(); in initUI()
244 XPropertySet.class, xbn); in initUI()
246 if (xbn == null) { in initUI()
251 String str = xbn.getName(); in initUI()
338 XBrowseNode xbn = (XBrowseNode)node.getUserObject(); in getTreeCellRendererComponent() local
339 if (xbn.getType() == BrowseNodeTypes.SCRIPT) { in getTreeCellRendererComponent()
342 else if(xbn.getType() == BrowseNodeTypes.CONTAINER) { in getTreeCellRendererComponent()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/
H A DScriptSelector.java92 XBrowseNode xbn = selectorPanel.getSelection(); in show()
95 if (xbn != null && in show()
96 xbn.getType() == BrowseNodeTypes.SCRIPT) in show()
242 XBrowseNode xbn = getSelection(); in initUI()
244 XPropertySet.class, xbn); in initUI()
246 if (xbn == null) { in initUI()
251 String str = xbn.getName(); in initUI()
338 XBrowseNode xbn = (XBrowseNode)node.getUserObject(); in getTreeCellRendererComponent() local
339 if (xbn.getType() == BrowseNodeTypes.SCRIPT) { in getTreeCellRendererComponent()
342 else if(xbn.getType() == BrowseNodeTypes.CONTAINER) { in getTreeCellRendererComponent()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/scripting/examples/java/selector/
H A DScriptSelector.java122 if (xbn != null && in showOrganizer()
123 xbn.getType() == BrowseNodeTypes.SCRIPT) { in showOrganizer()
260 XBrowseNode xbn = (XBrowseNode) in doCreate() local
262 selectorPanel.addNode(node, xbn); in doCreate()
368 XBrowseNode xbn = getSelection(); in initUI()
372 if (xbn == null) { in initUI()
377 String str = xbn.getName(); in initUI()
409 new DefaultMutableTreeNode(xbn) { in addNode()
476 XBrowseNode xbn = (XBrowseNode)node.getUserObject(); in getTreeCellRendererComponent() local
478 if (xbn.getType() == BrowseNodeTypes.SCRIPT) { in getTreeCellRendererComponent()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/scripting/examples/java/selector/
H A DScriptSelector.java122 if (xbn != null && in showOrganizer()
123 xbn.getType() == BrowseNodeTypes.SCRIPT) { in showOrganizer()
260 XBrowseNode xbn = (XBrowseNode) in doCreate() local
262 selectorPanel.addNode(node, xbn); in doCreate()
368 XBrowseNode xbn = getSelection(); in initUI()
372 if (xbn == null) { in initUI()
377 String str = xbn.getName(); in initUI()
409 new DefaultMutableTreeNode(xbn) { in addNode()
476 XBrowseNode xbn = (XBrowseNode)node.getUserObject(); in getTreeCellRendererComponent() local
478 if (xbn.getType() == BrowseNodeTypes.SCRIPT) { in getTreeCellRendererComponent()
[all …]
/dports/misc/visp/visp-3.4.0/modules/vision/src/homography-estimation/
H A DvpHomographyDLT.cpp262 std::vector<double> xan, yan, xbn, ybn; in DLT() local
269 vpHomography::HartleyNormalization(xb, yb, xbn, ybn, xg1, yg1, coef1); in DLT()
272 xbn = xb; in DLT()
295 A[2 * i][3] = -xbn[i]; in DLT()
298 A[2 * i][6] = xbn[i] * yan[i]; in DLT()
302 A[2 * i + 1][0] = xbn[i]; in DLT()
308 A[2 * i + 1][6] = -xbn[i] * xan[i]; in DLT()
H A DvpHomography.cpp606 std::vector<double> xan, yan, xbn, ybn; in robust() local
613 vpHomography::HartleyNormalization(xb, yb, xbn, ybn, xg1, yg1, coef1); in robust()
616 xbn = xb; in robust()
640 A[nbLinesA * i][0] = xbn[i]; in robust()
646 A[nbLinesA * i][6] = -xbn[i] * xan[i]; in robust()
652 A[nbLinesA * i + 1][3] = xbn[i]; in robust()
655 A[nbLinesA * i + 1][6] = -xbn[i] * yan[i]; in robust()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/webauthn-rs-0.3.0/src/
H A Dcrypto.rs438 let mut xbn = openssl::bn::BigNum::new().map_err(WebauthnError::OpenSSLError)?; in try_from() localVariable
443 .affine_coordinates_gfp(ec_grpref, &mut xbn, &mut ybn, &mut ctx) in try_from()
452 x.copy_from_slice(xbn.to_vec().as_slice()); in try_from()
507 let xbn = bn::BigNum::from_slice(&ec2k.x).map_err(WebauthnError::OpenSSLError)?; in validate() localVariable
510 let ec_key = ec::EcKey::from_public_key_affine_coordinates(&ec_group, &xbn, &ybn) in validate()
541 let xbn = bn::BigNum::from_slice(&ec2k.x).map_err(WebauthnError::OpenSSLError)?; in get_openssl_pkey() localVariable
544 let ec_key = ec::EcKey::from_public_key_affine_coordinates(&ec_group, &xbn, &ybn) in get_openssl_pkey()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/lang/gleam/gleam-0.18.2/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/net/routinator/routinator-0.10.2/cargo-crates/openssl-0.10.35/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/www/ffsend/ffsend-ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/net/krill/krill-0.9.4/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/security/acmed/acmed-0.18.0/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/net/oha/oha-0.4.7/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/www/websocat/websocat-1.9.0/cargo-crates/openssl-0.10.37/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/www/xh/xh-0.14.1/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/www/zola/zola-0.15.2/cargo-crates/openssl-0.10.38/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/openssl-0.10.36/src/
H A Dec.rs1105 let xbn = BigNum::from_slice(&x).unwrap(); in key_from_affine_coordinates() localVariable
1108 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in key_from_affine_coordinates()
1121 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates() localVariable
1124 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates()
1133 assert_eq!(xbn2, xbn); in get_affine_coordinates()
1145 let xbn = BigNum::from_slice(&x).unwrap(); in get_affine_coordinates_gfp() localVariable
1148 let ec_key = EcKey::from_public_key_affine_coordinates(&group, &xbn, &ybn).unwrap(); in get_affine_coordinates_gfp()
1157 assert_eq!(xbn2, xbn); in get_affine_coordinates_gfp()

12345678910>>...16