==1681884== Memcheck, a memory error detector ==1681884== Copyright (C) 2002-2024, and GNU GPL'd, by Julian Seward et al. ==1681884== Using Valgrind-3.24.0 and LibVEX; rerun with -h for copyright info ==1681884== Command: /data/blackswan/ripley/R/R-devel-vg/bin/exec/R --vanilla ==1681884== R Under development (unstable) (2026-02-25 r89480) -- "Unsuffered Consequences" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > pkgname <- "geographiclib" > source(file.path(R.home("share"), "R", "examples-header.R")) > options(warn = 1) > library('geographiclib') > > base::assign(".oldSearch", base::search(), pos = 'CheckExEnv') > base::assign(".old_wd", base::getwd(), pos = 'CheckExEnv') > cleanEx() > nameEx("albers_fwd") > ### * albers_fwd > > flush(stderr()); flush(stdout()) > > ### Name: albers_fwd > ### Title: Albers Equal Area projection > ### Aliases: albers_fwd albers_rev > > ### ** Examples > > # CONUS Albers Equal Area > pts <- cbind(lon = c(-122, -74, -90), lat = c(37, 41, 30)) > albers_fwd(pts, lon0 = -96, stdlat1 = 29.5, stdlat2 = 45.5) x y convergence scale lon lat lon0 1 -2263686.4 206874.8 -15.675472 0.9904383 -122 37 -96 2 1819414.0 555045.1 13.263861 0.9917843 -74 41 -96 3 577912.5 -867862.5 3.617417 0.9989271 -90 30 -96 > > # Australia > aus <- cbind(lon = c(151.2, 115.9, 153.0), lat = c(-33.9, -32.0, -27.5)) > albers_fwd(aus, lon0 = 132, stdlat1 = -18, stdlat2 = -36) x y convergence scale lon lat lon0 1 2758357 5731265 -8.610797 1.559111 151.2 -33.9 132 2 -2298350 5656779 7.220512 1.514747 115.9 -32.0 132 3 2936616 5219722 -9.418059 1.421592 153.0 -27.5 132 > > # Antarctic projection > ant <- cbind(lon = c(166.67, 77.97, -43.53), lat = c(-77.85, -67.60, -60.72)) > albers_fwd(ant, lon0 = 0, stdlat1 = -72, stdlat2 = -60) x y convergence scale lon lat lon0 1 6362785 -14451441 -151.42898 8.975620 166.67 -77.85 0 2 12396653 1540037 -70.84009 4.891702 77.97 -67.60 0 3 -8241491 7212962 39.54943 3.760209 -43.53 -60.72 0 > > # Round-trip conversion > fwd <- albers_fwd(pts, lon0 = -96, stdlat1 = 29.5, stdlat2 = 45.5) > albers_rev(fwd$x, fwd$y, lon0 = -96, stdlat1 = 29.5, stdlat2 = 45.5) lon lat convergence scale x y lon0 1 -122 37 -15.675472 0.9904383 -2263686.4 206874.8 -96 2 -74 41 13.263861 0.9917843 1819414.0 555045.1 -96 3 -90 30 3.617417 0.9989271 577912.5 -867862.5 -96 > > # Single standard parallel (cylindrical-like) > albers_fwd(pts, lon0 = -96, stdlat = 37) x y convergence scale lon lat lon0 1 -2285643.4 314053.2 -15.64719 1.000000 -122 37 -96 2 1839257.8 657147.1 13.23993 1.002569 -74 41 -96 3 582500.9 -756236.7 3.61089 1.006856 -90 30 -96 > > > > cleanEx() > nameEx("azeq_fwd") > ### * azeq_fwd > > flush(stderr()); flush(stdout()) > > ### Name: azeq_fwd > ### Title: Azimuthal Equidistant projection > ### Aliases: azeq_fwd azeq_rev > > ### ** Examples > > # Project cities relative to Sydney > cities <- cbind( + lon = c(-74, 139.7, 0), + lat = c(40.7, 35.7, 51.5) + ) > azeq_fwd(cities, lon0 = 151.2, lat0 = -33.9) x y azi scale lon lat lon0 lat0 1 14579210 6568621 86.19279 0.2336719 -74.0 40.7 151.2 -33.9 2 -1346704 7680058 -10.16661 0.7676383 139.7 35.7 151.2 -33.9 3 -11109728 12846458 -119.39223 0.1714770 0.0 51.5 151.2 -33.9 > > # Distance from Sydney = sqrt(x^2 + y^2) > result <- azeq_fwd(cities, lon0 = 151.2, lat0 = -33.9) > sqrt(result$x^2 + result$y^2) / 1000 # km [1] 15990.627 7797.237 16984.038 > > # Different center for each point (e.g., distance from home city) > homes <- cbind(lon = c(151.2, 139.7, -0.1), lat = c(-33.9, 35.7, 51.5)) > destinations <- cbind(lon = c(-74, -74, -74), lat = c(40.7, 40.7, 40.7)) > azeq_fwd(destinations, lon0 = homes[,1], lat0 = homes[,2]) x y azi scale lon lat lon0 lat0 1 14579210 6568621 86.19279 0.2336719 -74 40.7 151.2 -33.9 2 4608995 9847721 153.00375 0.5826567 -74 40.7 139.7 35.7 3 -5302905 1761511 -128.76352 0.8770643 -74 40.7 -0.1 51.5 > > > > cleanEx() > nameEx("cassini_fwd") > ### * cassini_fwd > > flush(stderr()); flush(stdout()) > > ### Name: cassini_fwd > ### Title: Cassini-Soldner projection > ### Aliases: cassini_fwd cassini_rev > > ### ** Examples > > # Project relative to a central meridian > pts <- cbind(lon = c(-100, -99, -101), lat = c(40, 41, 39)) > cassini_fwd(pts, lon0 = -100, lat0 = 40) x y azi rk lon lat 1 0.00 7.069289e-10 90.00000 1.0000000 -100 40 2 84133.35 1.115260e+05 90.65610 0.9999129 -99 41 3 -86624.66 -1.105493e+05 89.37064 0.9999076 -101 39 > > # Round-trip > fwd <- cassini_fwd(pts, lon0 = -100, lat0 = 40) > cassini_rev(fwd$x, fwd$y, lon0 = -100, lat0 = 40) lon lat azi rk x y 1 -100 40 90.00000 1.0000000 0.00 7.069289e-10 2 -99 41 90.65610 0.9999129 84133.35 1.115260e+05 3 -101 39 89.37064 0.9999076 -86624.66 -1.105493e+05 > > > > cleanEx() > nameEx("dms_decode") > ### * dms_decode > > flush(stderr()); flush(stdout()) > > ### Name: dms_decode > ### Title: Convert between degrees and DMS (degrees, minutes, seconds) > ### representation > ### Aliases: dms_decode dms_decode_latlon dms_decode_angle > ### dms_decode_azimuth dms_encode dms_split dms_combine > > ### ** Examples > > # Parse DMS strings > dms_decode("40d26'47\"N") angle indicator 1 40.44639 1 > dms_decode(c("40:26:47", "-74:0:21.5", "51d30'N")) angle indicator 1 40.44639 0 2 -74.00597 0 3 51.50000 1 > > # Parse latitude/longitude pairs > dms_decode_latlon("40d26'47\"N", "74d0'21.5\"W") lat lon 1 40.44639 -74.00597 > > # Parse angles (no hemisphere designator) > dms_decode_angle(c("45:30:0", "123d45'6\"")) [1] 45.5000 123.7517 > > # Parse azimuths (E/W allowed) > dms_decode_azimuth(c("45:30:0", "90W", "45E")) [1] 45.5 -90.0 45.0 > > # Encode to DMS strings > dms_encode(40.446, indicator = "latitude") [1] "40d26'45.6\"N" > dms_encode(-74.006, indicator = "longitude") [1] "074d00'21.6\"W" > dms_encode(c(40.446, -74.006), prec = 2) [1] "40d27'" "-74d00'" > > # With colon separator > dms_encode(40.446, sep = ":") [1] "40:26:45.6" > > # Split angle into components > dms_split(40.446) d m 1 40 26.76 > dms_split(c(40.446, -74.006), seconds = TRUE) d m s 1 40 26 45.6 2 -74 0 -21.6 > > # Combine components to decimal degrees > dms_combine(40, 26, 47) [1] 40.44639 > dms_combine(d = c(40, -74), m = c(26, 0), s = c(47, 21.5)) [1] 40.44639 -73.99403 > > > > cleanEx() > nameEx("ellipsoid_params") > ### * ellipsoid_params > > flush(stderr()); flush(stdout()) > > ### Name: ellipsoid_params > ### Title: WGS84 Ellipsoid parameters and calculations > ### Aliases: ellipsoid_params ellipsoid_circle ellipsoid_latitudes > ### ellipsoid_latitudes_inv ellipsoid_curvature > > ### ** Examples > > # WGS84 parameters > ellipsoid_params() $a [1] 6378137 $f [1] 0.003352811 $b [1] 6356752 $e2 [1] 0.00669438 $ep2 [1] 0.006739497 $n [1] 0.00167922 $area [1] 5.100656e+14 $volume [1] 1.083207e+21 > > # Radius at different latitudes > ellipsoid_circle(c(0, 30, 45, 60, 90)) lat radius quarter_meridian meridian_distance 1 0 6378137 10001966 0 2 30 5528257 10001966 3320113 3 45 4517591 10001966 4984944 4 60 3197105 10001966 6654073 5 90 0 10001966 10001966 > > # Compare auxiliary latitudes > ellipsoid_latitudes(c(0, 30, 45, 60, 90)) lat parametric geocentric rectifying authalic conformal isometric 1 0 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 2 30 29.91675 29.83364 29.87515 29.88900 29.83368 31.28104 3 45 44.90379 44.80758 44.85568 44.87170 44.80768 50.22747 4 60 59.91661 59.83308 59.87489 59.88879 59.83322 75.12340 5 90 90.00000 90.00000 90.00000 90.00000 90.00000 Inf > > # Radii of curvature > ellipsoid_curvature(c(0, 45, 90)) lat meridional transverse 1 0 6335439 6378137 2 45 6367382 6388838 3 90 6399594 6399594 > > > > cleanEx() > nameEx("gars_fwd") > ### * gars_fwd > > flush(stderr()); flush(stdout()) > > ### Name: gars_fwd > ### Title: Global Area Reference System (GARS) > ### Aliases: gars_fwd gars_rev > > ### ** Examples > > # Basic conversion > gars_fwd(c(-74, 40.7)) [1] "213LX31" > > # Different precision levels > gars_fwd(c(-74, 40.7), precision = 0) # 30-minute [1] "213LX" > gars_fwd(c(-74, 40.7), precision = 1) # 15-minute [1] "213LX3" > gars_fwd(c(-74, 40.7), precision = 2) # 5-minute [1] "213LX31" > > # Multiple points > pts <- cbind(lon = c(-74, 139.7, 0), lat = c(40.7, 35.7, 51.5)) > gars_fwd(pts, precision = 2) [1] "213LX31" "640LM33" "361MV37" > > # Reverse conversion > gars_rev(c("213LR29", "498MH18", "361NS47")) lon lat precision lat_resolution lon_resolution 1 -73.5416667 37.79167 2 0.08333333 0.08333333 2 68.6250000 45.79167 2 0.08333333 0.08333333 3 0.2916667 62.04167 2 0.08333333 0.08333333 > > > > cleanEx() > nameEx("geocentric_fwd") > ### * geocentric_fwd > > flush(stderr()); flush(stdout()) > > ### Name: geocentric_fwd > ### Title: Convert between geodetic and geocentric (ECEF) coordinates > ### Aliases: geocentric_fwd geocentric_rev > > ### ** Examples > > # Convert London to ECEF > geocentric_fwd(c(-0.1, 51.5)) X Y Z lon lat h 1 3978642 -6944.048 4968362 -0.1 51.5 0 > > # With height > geocentric_fwd(c(-0.1, 51.5), h = 100) X Y Z lon lat h 1 3978705 -6944.157 4968441 -0.1 51.5 100 > > # Multiple points > pts <- cbind(lon = c(0, 90, -90), lat = c(0, 0, 0)) > geocentric_fwd(pts) X Y Z lon lat h 1 6378137 0 0 0 0 0 2 0 6378137 0 90 0 0 3 0 -6378137 0 -90 0 0 > > # Round-trip > fwd <- geocentric_fwd(c(-0.1, 51.5, 100)) > geocentric_rev(fwd$X, fwd$Y, fwd$Z) lon lat h X Y Z 1 -0.1 51.5 100 3978705 -6944.157 4968441 > > > > cleanEx() > nameEx("geocoords_parse") > ### * geocoords_parse > > flush(stderr()); flush(stdout()) > > ### Name: geocoords_parse > ### Title: Parse Geographic Coordinate Strings > ### Aliases: geocoords_parse > > ### ** Examples > > # Parse MGRS > geocoords_parse("33TWN0500049000") lat lon zone northp easting northing 1 47.39444 15.06626 33 TRUE 505000.5 5249000 > > # Parse UTM > geocoords_parse("33N 505000 4900000") lat lon zone northp easting northing 1 44.25322 15.06263 33 TRUE 505000 4900000 > > # Parse DMS > geocoords_parse("40d26'47\"N 74d0'21\"W") lat lon zone northp easting northing 1 40.44639 -74.00583 18 TRUE 584307.3 4477778 > > # Parse decimal > geocoords_parse("40.446 -74.006") lat lon zone northp easting northing 1 40.446 -74.006 18 TRUE 584293.6 4477735 > > # Vectorized > geocoords_parse(c("33TWN0500049000", "40.446 -74.006")) lat lon zone northp easting northing 1 47.39444 15.06626 33 TRUE 505000.5 5249000 2 40.44600 -74.00600 18 TRUE 584293.6 4477735 > > > > > cleanEx() > nameEx("geodesic_direct") > ### * geodesic_direct > > flush(stderr()); flush(stdout()) > > ### Name: geodesic_direct > ### Title: Geodesic calculations on the WGS84 ellipsoid > ### Aliases: geodesic_direct geodesic_inverse geodesic_path geodesic_line > ### geodesic_distance geodesic_distance_matrix > > ### ** Examples > > # Direct problem: Where do you end up starting from London, > # heading east for 1000 km? > geodesic_direct(c(-0.1, 51.5), azi = 90, s = 1000000) lon1 lat1 azi1 s12 lon2 lat2 azi2 m12 M12 M21 1 -0.1 51.5 90 1e+06 14.12014 50.62607 101.0838 995914 0.9877522 0.9877514 S12 1 7.838198e+12 > > # Inverse problem: Distance from London to New York > geodesic_inverse(c(-0.1, 51.5), c(-74, 40.7)) lon1 lat1 lon2 lat2 s12 azi1 azi2 m12 M12 M21 1 -0.1 51.5 -74 40.7 5587820 -71.62462 -128.7635 4900877 0.6407216 0.6404073 S12 1 -4.040644e+13 > > # Generate a great circle path > path <- geodesic_path(c(-0.1, 51.5), c(-74, 40.7), n = 100) > head(path) lon lat azi s 1 -0.1000000 51.50000 -71.62462 0.00 2 -0.8740577 51.65738 -72.23107 56442.62 3 -1.6534078 51.80961 -72.84297 112885.24 4 -2.4379364 51.95665 -73.46021 169327.86 5 -3.2275218 52.09842 -74.08265 225770.49 6 -4.0220347 52.23486 -74.71015 282213.11 > > # Multiple distances along a bearing > geodesic_line(c(-0.1, 51.5), azi = 45, distances = c(100, 500, 1000) * 1000) lon lat azi s 1 0.9326282 52.13103 45.81169 1e+05 2 5.3673926 54.55656 49.37084 5e+05 3 11.6730192 57.32605 54.59801 1e+06 > > > > cleanEx() > nameEx("geodesic_direct_fast") > ### * geodesic_direct_fast > > flush(stderr()); flush(stdout()) > > ### Name: geodesic_direct_fast > ### Title: Fast geodesic calculations (series approximation) > ### Aliases: geodesic_direct_fast geodesic_inverse_fast geodesic_path_fast > ### geodesic_distance_fast geodesic_distance_matrix_fast > > ### ** Examples > > # Fast inverse: London to New York > geodesic_inverse_fast(c(-0.1, 51.5), c(-74, 40.7)) lon1 lat1 lon2 lat2 s12 azi1 azi2 m12 M12 M21 1 -0.1 51.5 -74 40.7 5587820 -71.62462 -128.7635 4900877 0.6407216 0.6404073 S12 1 -4.040644e+13 > > # Compare to exact version > geodesic_inverse(c(-0.1, 51.5), c(-74, 40.7))$s12 [1] 5587820 > geodesic_inverse_fast(c(-0.1, 51.5), c(-74, 40.7))$s12 [1] 5587820 > > > > cleanEx() > nameEx("geodesic_intersect") > ### * geodesic_intersect > > flush(stderr()); flush(stdout()) > > ### Name: geodesic_intersect > ### Title: Geodesic intersections > ### Aliases: geodesic_intersect geodesic_intersect_segment > ### geodesic_intersect_next geodesic_intersect_all > > ### ** Examples > > # Two geodesics from different starting points > # Geodesic X: starts at (0, 0), azimuth 45 degrees > # Geodesic Y: starts at (1, 0), azimuth 315 degrees > geodesic_intersect(c(0, 0), 45, c(1, 0), 315) x y coincidence lat lon 1 78712.76 78712.76 0 0.5033503 0.5 > > # Vectorized: multiple pairs of geodesics > geodesic_intersect( + cbind(c(0, 0, 0), c(0, 0, 0)), + c(30, 45, 60), + cbind(c(1, 1, 1), c(0, 0, 0)), + c(330, 315, 300) + ) x y coincidence lat lon 1 111310.96 111310.96 0 0.8717833 0.5 2 78712.76 78712.76 0 0.5033503 0.5 3 64269.79 64269.79 0 0.2906144 0.5 > # Intersection of two geodesic segments > # Segment X: (0, -1) to (0, 1) > # Segment Y: (-1, 0) to (1, 0) > geodesic_intersect_segment( + c(0, -1), c(0, 1), + c(-1, 0), c(1, 0) + ) x y segmode coincidence lat lon 1 110574.4 111319.5 0 0 0 0 > # Find the next intersection from a known intersection point > # Two geodesics crossing at (0, 0) with azimuths 45 and 315 > geodesic_intersect_next(c(0, 0), 45, 315) x y coincidence lat lon 1 -19987140 19987140 0 -4.978254e-15 -179.5734 > # Find all intersections within 1,000,000 meters > geodesic_intersect_all(c(0, 0), 45, c(1, 0), 315, maxdist = 1e6) x y coincidence lat lon 1 78712.76 78712.76 0 0.5033503 0.5 > > > > cleanEx() > nameEx("geodesic_nn") > ### * geodesic_nn > > flush(stderr()); flush(stdout()) > > ### Name: geodesic_nn > ### Title: Nearest Neighbor Search Using Geodesic Distance > ### Aliases: geodesic_nn geodesic_nn_radius > > ### ** Examples > > # Create a dataset of cities > cities <- cbind( + lon = c(151.21, 144.96, 153.03, 115.86, 138.60), + lat = c(-33.87, -37.81, -27.47, -31.95, -34.93) + ) > rownames(cities) <- c("Sydney", "Melbourne", "Brisbane", "Perth", "Adelaide") > > # Find 2 nearest neighbors for each city (including itself) > result <- geodesic_nn(cities, cities, k = 2) > result$index [,1] [,2] [,3] [,4] [,5] [1,] 1 2 3 4 5 [2,] 2 5 1 5 2 > result$distance [,1] [,2] [,3] [,4] [,5] [1,] 0.0 0.0 0.0 0 0.0 [2,] 713809.5 653904.1 730609.3 2135437 653904.1 > > # Query points not in the dataset > queries <- cbind( + lon = c(149.13, 147.32), + lat = c(-35.28, -42.88) + ) > rownames(queries) <- c("Canberra", "Hobart") > > geodesic_nn(cities, queries, k = 3) $index [,1] [,2] [1,] 1 2 [2,] 2 1 [3,] 3 5 $distance [,1] [,2] [1,] 246750.8 597549.7 [2,] 467066.8 1055999.9 [3,] 941828.4 1160986.1 > > # Find all cities within 1000 km > geodesic_nn_radius(cities, queries, radius = 1e6) [[1]] index distance 1 1 246750.8 2 2 467066.8 3 3 941828.4 4 5 960368.7 [[2]] index distance 1 2 597549.7 > > > > > cleanEx() > nameEx("geohash_fwd") > ### * geohash_fwd > > flush(stderr()); flush(stdout()) > > ### Name: geohash_fwd > ### Title: Convert coordinates to/from Geohash > ### Aliases: geohash_fwd geohash_rev geohash_resolution geohash_length > > ### ** Examples > > # Single point conversion > (gh <- geohash_fwd(c(147.325, -42.881))) [1] "r22u03yb164p" > geohash_rev(gh) lon lat len lat_resolution lon_resolution 1 147.325 -42.881 12 1.676381e-07 3.352761e-07 > > # Multiple points with varying precision > pts <- cbind( + lon = c(147, -74, 0), + lat = c(-42, 40.7, 51.5) + ) > geohash_fwd(pts, len = c(6, 8, 12)) [1] "r28914" "dr5rs14y" "u10hbp210pb4" > > # Truncation preserves containment > gh <- geohash_fwd(c(147.325, -42.881), len = 12) > substr(gh, 1, 6) # Lower precision, but still contains original point [1] "r22u03" > > # Resolution for different lengths > geohash_resolution(1:12) len lat_resolution lon_resolution 1 1 4.500000e+01 4.500000e+01 2 2 5.625000e+00 1.125000e+01 3 3 1.406250e+00 1.406250e+00 4 4 1.757812e-01 3.515625e-01 5 5 4.394531e-02 4.394531e-02 6 6 5.493164e-03 1.098633e-02 7 7 1.373291e-03 1.373291e-03 8 8 1.716614e-04 3.433228e-04 9 9 4.291534e-05 4.291534e-05 10 10 5.364418e-06 1.072884e-05 11 11 1.341105e-06 1.341105e-06 12 12 1.676381e-07 3.352761e-07 > > # Find length needed for ~1km precision > geohash_length(1/111) # ~1 degree / 111 km [1] 7 > > > > cleanEx() > nameEx("georef_fwd") > ### * georef_fwd > > flush(stderr()); flush(stdout()) > > ### Name: georef_fwd > ### Title: World Geographic Reference System (Georef) > ### Aliases: georef_fwd georef_rev > > ### ** Examples > > # Basic conversion > georef_fwd(c(-0.1, 51.5)) [1] "MKQG5430" > > # Different precision levels > georef_fwd(c(-0.1, 51.5), precision = -1) # 15-degree [1] "MK" > georef_fwd(c(-0.1, 51.5), precision = 0) # 1-degree [1] "MKQG" > georef_fwd(c(-0.1, 51.5), precision = 1) # 1-minute [1] "MKQG5430" > georef_fwd(c(-0.1, 51.5), precision = 2) # 0.1-minute [1] "MKQG5430" > > # Multiple points > pts <- cbind(lon = c(-74, 139.7, 0), lat = c(40.7, 35.7, 51.5)) > georef_fwd(pts) [1] "HJBL0042" "XJEF4142" "NKAG0030" > > # Reverse conversion > georef_rev(c("GJPJ3217", "SKNA2342", "FJBL0630")) lon lat precision lat_resolution lon_resolution 1 -76.45833 38.29167 2 0.001666667 0.001666667 2 72.39167 45.70833 2 0.001666667 0.001666667 3 -103.89167 40.50833 2 0.001666667 0.001666667 > > > > cleanEx() > nameEx("gnomonic_fwd") > ### * gnomonic_fwd > > flush(stderr()); flush(stdout()) > > ### Name: gnomonic_fwd > ### Title: Gnomonic projection > ### Aliases: gnomonic_fwd gnomonic_rev > > ### ** Examples > > # Project cities relative to London > cities <- cbind( + lon = c(-74, 139.7, 151.2, 2.3), + lat = c(40.7, 35.7, -33.9, 48.9) + ) > gnomonic_fwd(cities, lon0 = -0.1, lat0 = 51.5) x y azi rk lon lat 1 -7258985.5 2411279.2 -128.7635 0.64072159 -74.0 40.7 2 46796001.7 75878096.6 156.2494 0.07150066 139.7 35.7 3 NaN NaN 139.2137 -0.88597093 151.2 -33.9 4 176156.3 -286620.1 150.2696 0.99861359 2.3 48.9 > > # Great circle route appears as straight line > # London to NYC path > path <- geodesic_path(c(-0.1, 51.5), c(-74, 40.7), n = 10) > projected <- gnomonic_fwd(cbind(path$lon, path$lat), lon0 = -37, lat0 = 46) > # x and y should be approximately linear > plot(projected$x, projected$y, type = "l") > > > > cleanEx() > nameEx("lcc_fwd") > ### * lcc_fwd > > flush(stderr()); flush(stdout()) > > ### Name: lcc_fwd > ### Title: Lambert Conformal Conic projection > ### Aliases: lcc_fwd lcc_rev > > ### ** Examples > > # Single standard parallel (e.g., for a state plane zone) > pts <- cbind(lon = c(-100, -99, -98), lat = c(40, 41, 42)) > lcc_fwd(pts, lon0 = -100, stdlat = 40) x y convergence scale lon lat 1 0.00 0.0 0.0000000 1.000000 -100 40 2 84146.25 111521.9 0.6427876 1.000152 -99 41 3 165789.24 224013.2 1.2855752 1.000613 -98 42 > > # Two standard parallels (e.g., for continental US) > # CONUS Albers-like setup > lcc_fwd(pts, lon0 = -96, stdlat1 = 33, stdlat2 = 45) x y convergence scale lon lat 1 -339643.8 108321.8 -2.521985 0.9946660 -100 40 2 -251122.5 215464.1 -1.891489 0.9950973 -99 41 3 -164998.9 323691.8 -1.260993 0.9958400 -98 42 > > # Round-trip conversion > fwd <- lcc_fwd(pts, lon0 = -100, stdlat = 40) > lcc_rev(fwd$x, fwd$y, lon0 = -100, stdlat = 40) lon lat convergence scale x y 1 -100 40 0.0000000 1.000000 0.00 0.0 2 -99 41 0.6427876 1.000152 84146.25 111521.9 3 -98 42 1.2855752 1.000613 165789.24 224013.2 > > > > cleanEx() > nameEx("localcartesian_fwd") > ### * localcartesian_fwd > > flush(stderr()); flush(stdout()) > > ### Name: localcartesian_fwd > ### Title: Local Cartesian (ENU) coordinate system > ### Aliases: localcartesian_fwd localcartesian_rev > > ### ** Examples > > # Set up local system centered on London > london <- c(-0.1, 51.5) > > # Convert nearby points to local coordinates > pts <- cbind( + lon = c(-0.1, -0.2, 0.0), + lat = c(51.5, 51.6, 51.4) + ) > localcartesian_fwd(pts, lon0 = london[1], lat0 = london[2]) x y z lon lat h 1 0.000 0.00 0.00000 -0.1 51.5 0 2 -6928.841 11130.61 -13.47326 -0.2 51.6 0 3 6959.234 -11120.93 -13.48954 0.0 51.4 0 > > # Round-trip conversion > fwd <- localcartesian_fwd(pts, lon0 = -0.1, lat0 = 51.5) > localcartesian_rev(fwd$x, fwd$y, fwd$z, lon0 = -0.1, lat0 = 51.5) lon lat h x y z 1 -1.000000e-01 51.5 -1.409643e-09 0.000 0.00 0.00000 2 -2.000000e-01 51.6 0.000000e+00 -6928.841 11130.61 -13.47326 3 5.577971e-18 51.4 -1.409635e-09 6959.234 -11120.93 -13.48954 > > > > cleanEx() > nameEx("mgrs_fwd") > ### * mgrs_fwd > > flush(stderr()); flush(stdout()) > > ### Name: mgrs_fwd > ### Title: Convert coordinates to/from Military Grid Reference System > ### (MGRS) > ### Aliases: mgrs_fwd mgrs_rev > > ### ** Examples > > # Single point conversion > (code <- mgrs_fwd(cbind(147.325, -42.881))) [1] "55GEN2654152348" > mgrs_rev(code) lon lat x y zone northp precision convergence scale 1 147.325 -42.881 526541.5 5252348 55 FALSE 5 -0.2211584 0.9996087 grid_zone square_100km crs 1 55G EN EPSG:32755 > > # Multiple points with varying precision > x <- cbind(lon = c(-63.22, 34.02, 49.45, 45.67, 47.4), + lat = c(17.62, -1.9, 37.47, 39.84, 33.15)) > codes <- mgrs_fwd(x, precision = c(5, 4, 3, 2, 1)) > codes [1] "20QME7666048158" "36MXC13448995" "39SUB629481" "38SNK5710" [5] "38SQB27" > > # Reverse conversion returns detailed coordinate information > result <- mgrs_rev(codes) > result lon lat x y zone northp precision convergence 1 -63.22000 17.620003 476660.5 1948158 20 TRUE 5 -0.06659575 2 34.02000 -1.900033 613445.0 9789955 36 FALSE 4 -0.03382266 3 49.45015 37.470082 362950.0 4148150 39 TRUE 3 -0.94299085 4 45.67208 39.842567 557500.0 4410500 38 TRUE 2 0.43059783 5 47.41350 33.190489 725000.0 3675000 38 TRUE 1 1.32176235 scale grid_zone square_100km crs 1 0.9996067 20Q ME EPSG:32620 2 0.9997593 36M XC EPSG:32736 3 0.9998314 39S UB EPSG:32639 4 0.9996407 38S NK EPSG:32638 5 1.0002242 38S QB EPSG:32638 > > # Polar regions use UPS (zone 0) > polar_codes <- mgrs_fwd(cbind(c(147, -100), c(88, -88))) > mgrs_rev(polar_codes) lon lat x y zone northp precision convergence scale 1 146.99996 88 2120948 2186242 0 TRUE 5 146.99996 0.9943028 2 -99.99989 -88 1781304 1961438 0 FALSE 5 99.99989 0.9943028 grid_zone square_100km crs 1 Z BJ EPSG:32661 2 A XM EPSG:32761 > > > > cleanEx() > nameEx("osgb_fwd") > ### * osgb_fwd > > flush(stderr()); flush(stdout()) > > ### Name: osgb_fwd > ### Title: Ordnance Survey National Grid (Great Britain) > ### Aliases: osgb_fwd osgb_rev osgb_gridref osgb_gridref_rev > > ### ** Examples > > # OSGB36 coordinates for central London (not WGS84!) > # In practice, you would transform from WGS84 first > london_osgb36 <- c(-0.1270, 51.5072) > > # Convert to OSGB grid > osgb_fwd(london_osgb36) easting northing convergence scale lon lat 1 529971.9 180413.2 1.466175 0.9998087 -0.127 51.5072 > > # Get grid reference at various precisions > osgb_gridref(london_osgb36, precision = 2) # 1 km [1] "TQ2980" > osgb_gridref(london_osgb36, precision = 3) # 100 m [1] "TQ299804" > osgb_gridref(london_osgb36, precision = 4) # 10 m [1] "TQ29978041" > > # Parse a grid reference > osgb_gridref_rev("TQ3080") lon lat easting northing precision 1 -0.119362 51.50786 530500 180500 2 > > # Round-trip conversion > fwd <- osgb_fwd(london_osgb36) > osgb_rev(fwd$easting, fwd$northing) lon lat convergence scale easting northing 1 -0.127 51.5072 1.466175 0.9998087 529971.9 180413.2 > > > > cleanEx() > nameEx("polarstereo_fwd") > ### * polarstereo_fwd > > flush(stderr()); flush(stdout()) > > ### Name: polarstereo_fwd > ### Title: Polar Stereographic projection > ### Aliases: polarstereo_fwd polarstereo_rev > > ### ** Examples > > # Antarctic stations > stations <- cbind( + lon = c(166.67, 77.97, -43.53, 0), + lat = c(-77.85, -67.60, -60.72, -90) + ) > polarstereo_fwd(stations, northp = FALSE) x y convergence scale lon lat northp 1 312134.1 -1317339 -166.67 1.005257 166.67 -77.85 FALSE 2 2462526.5 524774 -77.97 1.032951 77.97 -67.60 FALSE 3 -2286985.7 2407454 43.53 1.061771 -43.53 -60.72 FALSE 4 0.0 0 0.00 0.994000 0.00 -90.00 FALSE > > # Arctic points > arctic <- cbind(lon = c(0, 90, 180, -90), lat = c(85, 85, 85, 85)) > polarstereo_fwd(arctic, northp = TRUE) x y convergence scale lon lat northp 1 0.0 -555457.4 0 0.9958948 0 85 TRUE 2 555457.4 0.0 90 0.9958948 90 85 TRUE 3 0.0 555457.4 180 0.9958948 180 85 TRUE 4 -555457.4 0.0 -90 0.9958948 -90 85 TRUE > > # True stereographic (k0 = 1) > polarstereo_fwd(stations, northp = FALSE, k0 = 1.0) x y convergence scale lon lat northp 1 314018.2 -1325290.5 -166.67 1.011325 166.67 -77.85 FALSE 2 2477390.9 527941.6 -77.97 1.039186 77.97 -67.60 FALSE 3 -2300790.5 2421986.2 43.53 1.068180 -43.53 -60.72 FALSE 4 0.0 0.0 0.00 1.000000 0.00 -90.00 FALSE > > # NSIDC Sea Ice projection > polarstereo_fwd(stations, northp = FALSE, k0 = 0.97276901289) x y convergence scale lon lat northp 1 305467.2 -1289201.5 -166.67 0.9837858 166.67 -77.85 FALSE 2 2409929.1 513565.2 -77.97 1.0108881 77.97 -67.60 FALSE 3 -2238137.7 2356033.1 43.53 1.0390928 -43.53 -60.72 FALSE 4 0.0 0.0 0.00 0.9727690 0.00 -90.00 FALSE > > # South Pole is at origin > sp <- polarstereo_fwd(c(0, -90), northp = FALSE) > sp$x # 0 [1] 0 > sp$y # 0 [1] 0 > > # Round-trip conversion > fwd <- polarstereo_fwd(stations, northp = FALSE) > polarstereo_rev(fwd$x, fwd$y, northp = FALSE) lon lat convergence scale x y northp 1 166.67 -77.85 -166.67 1.005257 312134.1 -1317339 FALSE 2 77.97 -67.60 -77.97 1.032951 2462526.5 524774 FALSE 3 -43.53 -60.72 43.53 1.061771 -2286985.7 2407454 FALSE 4 0.00 -90.00 0.00 0.994000 0.0 0 FALSE > > > > cleanEx() > nameEx("polygon_area") > ### * polygon_area > > flush(stderr()); flush(stdout()) > > ### Name: polygon_area > ### Title: Compute geodesic polygon area and perimeter > ### Aliases: polygon_area > > ### ** Examples > > # Triangle: London - New York - Rio de Janeiro > pts <- cbind( + lon = c(0, -74, -43), + lat = c(52, 41, -23) + ) > polygon_area(pts) $area [1] 2.653936e+13 $perimeter [1] 22634340 $n [1] 3 > > # Multiple polygons using id > pts <- cbind( + lon = c(0, -74, -43, 100, 110, 105), + lat = c(52, 41, -23, 10, 10, 20) + ) > polygon_area(pts, id = c(1, 1, 1, 2, 2, 2)) id area perimeter n 1 1 2.653936e+13 22634340 3 2 2 6.061691e+11 3556143 3 > > # Polyline length (not a closed polygon) > polygon_area(pts[1:3, ], polyline = TRUE) $area [1]==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCCA6: Rf_formatReal (svn/R-devel/src/main/format.c:445) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCCB0: scientific (svn/R-devel/src/main/format.c:328) ==1681884== by 0x4FCCB0: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCCB2: scientific (svn/R-devel/src/main/format.c:328) ==1681884== by 0x4FCCB2: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCCB8: scientific (svn/R-devel/src/main/format.c:328) ==1681884== by 0x4FCCB8: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BE008C: log10 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_log10_compat.c:30) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BF8CF6: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:67) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BF8D03: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:69) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BF8D0C: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:71) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BF8D3F: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:78) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4C418DA: __ieee754_log_avx (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:61) ==1681884== by 0x4BF8DAC: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4C418E9: __ieee754_log_avx (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:85) ==1681884== by 0x4BF8DAC: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x4C41966: __ieee754_log_avx (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:117) ==1681884== by 0x4BF8DAC: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x4C4196F: __ieee754_log_avx (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:117) ==1681884== by 0x4BF8DAC: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==1681884== by 0x4FCCEA: scientific (svn/R-devel/src/main/format.c:344) ==1681884== by 0x4FCCEA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCD15: scientific (svn/R-devel/src/main/format.c:348) ==1681884== by 0x4FCD15: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BE7544: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:81) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BE754D: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:84) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BE7556: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:87) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BE7594: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:112) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BE75A6: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:120) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BE75E2: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:146) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BEA0E4: roundl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/ldbl-96/s_roundl.c:34) ==1681884== by 0x4BDDF39: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:219) ==1681884== by 0x4BE769F: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:221) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BEA0E8: roundl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/ldbl-96/s_roundl.c:36) ==1681884== by 0x4BDDF39: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:219) ==1681884== by 0x4BE769F: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:221) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BEA107: roundl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/ldbl-96/s_roundl.c:49) ==1681884== by 0x4BDDF39: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:219) ==1681884== by 0x4BE769F: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:221) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BEA115: roundl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/ieee754/ldbl-96/s_roundl.c:53) ==1681884== by 0x4BDDF39: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:219) ==1681884== by 0x4BE769F: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:221) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BDDF4C: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:223) ==1681884== by 0x4BE769F: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:221) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BDDFBC: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:233) ==1681884== by 0x4BE769F: __powl_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86_64/fpu/e_powl.S:221) ==1681884== by 0x4BDEC27: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:29) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BDEC40: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:30) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BDEC4C: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:54) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BDEC4E: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:54) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x4BDDBC0: __powl_helper (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/../sysdeps/x86/fpu/powl_helper.c:74) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4BDECE4: powl (/usr/src/debug/glibc-2.39-38.fc40.x86_64/math/w_powl_compat.c:55) ==1681884== by 0x4FD0EA: scientific (svn/R-devel/src/main/format.c:354) ==1681884== by 0x4FD0EA: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCD3E: scientific (svn/R-devel/src/main/format.c:361) ==1681884== by 0x4FCD3E: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCD99: scientific (svn/R-devel/src/main/format.c:396) ==1681884== by 0x4FCD99: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCDA5: scientific (svn/R-devel/src/main/format.c:419) ==1681884== by 0x4FCDA5: Rf_formatReal (svn/R-devel/src/main/format.c:453) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FCEE0: Rf_formatReal (svn/R-devel/src/main/format.c:493) ==1681884== by 0x4FD206: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FD213: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4FD232: formatRealS (svn/R-devel/src/main/format.c:528) ==1681884== by 0x568E5C: printRealVectorS (svn/R-devel/src/main/printvector.c:183) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x56AF50: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:208) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x56AF56: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:208) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x56B0A8: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:209) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x56AF6C: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:215) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== by 0x52A40D: Rf_mainloop (svn/R-devel/src/main/main.c:1242) ==1681884== by 0x418A57: main (svn/R-devel/src/main/Rmain.c:29) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553FA9B: _itoa_word (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/_itoa.c:183) ==1681884== by 0x55488E3: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-process-arg.c:155) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AF8E: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:225) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553FAAC: _itoa_word (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/_itoa.c:183) ==1681884== by 0x55488E3: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-process-arg.c:155) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AF8E: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:225) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5548CE5: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-process-arg.c:186) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AF8E: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:225) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x55487A5: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-process-arg.c:208) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AF8E: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:225) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== by 0x52A32F: R_ReplConsole (svn/R-devel/src/main/main.c:317) ==1681884== by 0x52A3C4: run_Rmainloop (svn/R-devel/src/main/main.c:1235) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5541859: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:230) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5541873: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:230) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553BC66: __mpn_extract_double (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/ieee754/dbl-64/dbl2mpn.c:56) ==1681884== by 0x5541FAE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:230) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553BC6B: __mpn_extract_double (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/ieee754/dbl-64/dbl2mpn.c:60) ==1681884== by 0x5541FAE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:230) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5541916: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:271) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5541939: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:271) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x554193B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:271) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554196B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:272) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554198E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:272) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5541990: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:272) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x55419B9: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:273) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x55419DC: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:273) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x55419DE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:273) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x55419FC: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:280) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554248D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:483) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5542C0D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:499) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553A73C: __mpn_lshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/lshift.S:59) ==1681884== by 0x5542C11: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:499) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553A73F: __mpn_lshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/lshift.S:60) ==1681884== by 0x5542C11: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:499) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5542C2B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:500) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542C33: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:501) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542C70: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:511) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542D56: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:623) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542D64: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:511) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553A8C0: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:71) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553A8C7: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:72) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553A8CD: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:74) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x4851904: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x485192E: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x485194A: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4851953: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553A8FC: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:78) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AB12: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:88) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553AB3C: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:91) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553AB1D: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:94) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5539E37: __mpn_add_n (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/add_n.S:37) ==1681884== by 0x553AB60: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:95) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AB61: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:95) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553AB2E: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:88) ==1681884== by 0x5542CCD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:519) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5542CFC: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:531) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542D32: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:540) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542D3E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:562) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542F91: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:575) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5542ECF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:579) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5542F00: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:579) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553BA00: __mpn_rshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:80) ==1681884== by 0x5542F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:613) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553BA28: __mpn_rshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:92) ==1681884== by 0x5542F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:613) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x4851904: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x485192E: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4851944: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x485194A: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x4851953: memset (/builddir/build/BUILD/valgrind-3.24.0/memcheck/../shared/vg_replace_strmem.c:1390) ==1681884== by 0x553A8EE: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:77) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553A8FC: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:78) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5539EEC: __mpn_addmul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/addmul_1.S:40) ==1681884== by 0x1FFEFFBC2F: ??? ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5539EEF: __mpn_addmul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/addmul_1.S:41) ==1681884== by 0x1FFEFFBC2F: ??? ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AB4C: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:98) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x553AB2E: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:88) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553BA3E: __mpn_rshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:98) ==1681884== by 0x5542F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:613) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== ==1681884== More than 100 errors detected. Subsequent errors ==1681884== will still be recorded, but in less detail than before. ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553ACB8: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==1681884== by 0x553AAE8: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:81) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553ACF9: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:60) ==1681884== by 0x553AAE8: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:81) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AD67: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:96) ==1681884== by 0x553AAE8: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:81) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AD50: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:90) ==1681884== by 0x553AAE8: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:81) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AD57: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:92) ==1681884== by 0x553AAE8: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:81) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553ADB2: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:117) ==1681884== by 0x553AAE8: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:81) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AAF5: __mpn_mul (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/mul.c:83) ==1681884== by 0x5542E52: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:524) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542E91: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:562) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5542E97: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:564) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554353C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:580) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5543554: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:590) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553B9A2: __mpn_rshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:46) ==1681884== by 0x5542F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:613) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553B9B1: __mpn_rshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:51) ==1681884== by 0x5542F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:613) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553BA3A: __mpn_rshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:97) ==1681884== by 0x5542F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:613) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553BA24: __mpn_rshift (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/rshift.S:91) ==1681884== by 0x5542F54: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:613) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5541571: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:95) ==1681884== by 0x5541E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:769) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553ACB8: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==1681884== by 0x5541578: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:96) ==1681884== by 0x5541E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:769) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AD17: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:70) ==1681884== by 0x5541578: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:96) ==1681884== by 0x5541E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:769) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AD7A: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:101) ==1681884== by 0x5541578: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:96) ==1681884== by 0x5541E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:769) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AD50: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:90) ==1681884== by 0x5541578: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:96) ==1681884== by 0x5541E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:769) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553AD57: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:92) ==1681884== by 0x5541578: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:96) ==1681884== by 0x5541E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:769) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x553ADB2: __mpn_mul_1 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:117) ==1681884== by 0x5541578: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:96) ==1681884== by 0x5541E2D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:769) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x55420A5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:805) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Use of uninitialised value of size 8 ==1681884== at 0x5541571: hack_digit (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:95) ==1681884== by 0x55420BD: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:806) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x55420D4: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:808) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x5542583: UnknownInlinedFun (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/../include/rounding-mode.h:52) ==1681884== by 0x5542583: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:825) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554258D: UnknownInlinedFun (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/../include/rounding-mode.h:52) ==1681884== by 0x554258D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:825) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554270E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:858) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554274F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:861) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x55422C2: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:987) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== ==1681884== Conditional jump or move depends on uninitialised value(s) ==1681884== at 0x554285A: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:999) ==1681884== by 0x5543B83: __printf_fp_l_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/printf_fp.c:1122) ==1681884== by 0x5549071: __printf_fp_spec (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:266) ==1681884== by 0x5549071: printf_positional (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1404) ==1681884== by 0x554A029: __printf_buffer (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/vfprintf-internal.c:1041) ==1681884== by 0x5570452: __vsnprintf_internal (/usr/src/debug/glibc-2.39-38.fc40.x86_64/libio/vsnprintf.c:96) ==1681884== by 0x5546B85: snprintf (/usr/src/debug/glibc-2.39-38.fc40.x86_64/stdio-common/snprintf.c:31) ==1681884== by 0x56AFAA: Rf_EncodeReal0 (svn/R-devel/src/main/printutils.c:226) ==1681884== by 0x568EB2: printRealVectorS (svn/R-devel/src/main/printvector.c:186) ==1681884== by 0x562262: Rf_PrintValueRec (svn/R-devel/src/main/print.c:957) ==1681884== by 0x5636BC: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x5636BC: PrintGenericVector (svn/R-devel/src/main/print.c:610) ==1681884== by 0x564836: PrintDispatch (svn/R-devel/src/main/print.c:411) ==1681884== by 0x564836: Rf_PrintValueEnv (svn/R-devel/src/main/print.c:1087) ==1681884== by 0x52A0AA: Rf_ReplIteration (svn/R-devel/src/main/main.c:270) ==1681884== Uninitialised value was created by a stack allocation ==1681884== at 0x17470BD2: polygonarea_single_cpp(cpp11::r_vector, cpp11::r_vector, bool) (packages/tests-vg/geographiclib/src/000_polygonarea_geographiclib.cpp:88) ==1681884== 1e-323 $perimeter [1] 13332388 $n [1] 3 > > # Area of Australia (approximate boundary) > australia <- cbind( + lon = c(113, 153, 153, 142, 129, 113), + lat = c(-26, -26, -10, -10, -15, -26) + ) > result <- polygon_area(australia) > # Area in square kilometers > abs(result$area) / 1e6 [1] 5459214 > > > > cleanEx() > nameEx("polygon_area_cumulative") > ### * polygon_area_cumulative > > flush(stderr()); flush(stdout()) > > ### Name: polygon_area_cumulative > ### Title: Compute cumulative polygon area and perimeter > ### Aliases: polygon_area_cumulative > > ### ** Examples > > # Watch area accumulate as vertices are added > pts <- cbind( + lon = c(0, -74, -43, 28), + lat = c(52, 41, -23, -26) + ) > polygon_area_cumulative(pts) lon lat area perimeter 1 0 52 0.000000e+00 0 2 -74 41 0.000000e+00 11111781 3 -43 -23 2.653936e+13 22634340 4 28 -26 6.569003e+13 29506941 > > > > cleanEx() > nameEx("rhumb_direct") > ### * rhumb_direct > > flush(stderr()); flush(stdout()) > > ### Name: rhumb_direct > ### Title: Rhumb line (loxodrome) calculations on the WGS84 ellipsoid > ### Aliases: rhumb_direct rhumb_inverse rhumb_path rhumb_line > ### rhumb_distance rhumb_distance_matrix > > ### ** Examples > > # Direct problem: Where do you end up starting from London, > # heading east on a rhumb line for 1000 km? > rhumb_direct(c(-0.1, 51.5), azi = 90, s = 1000000) lon1 lat1 azi12 s12 lon2 lat2 S12 1 -0.1 51.5 90 1e+06 14.30081 51.5 7.970201e+12 > > # Inverse problem: Rhumb distance from London to New York > rhumb_inverse(c(-0.1, 51.5), c(-74, 40.7)) lon1 lat1 lon2 lat2 s12 azi12 S12 1 -0.1 51.5 -74 40.7 5812568 -101.9189 -3.769914e+13 > > # Compare to geodesic (rhumb is longer!) > geodesic_inverse(c(-0.1, 51.5), c(-74, 40.7))$s12 [1] 5587820 > rhumb_inverse(c(-0.1, 51.5), c(-74, 40.7))$s12 [1] 5812568 > > # Generate a rhumb line path > path <- rhumb_path(c(-0.1, 51.5), c(-74, 40.7), n = 10) > path Warning in format.data.frame(if (omit) x[seq_len(n0), , drop = FALSE] else x, : corrupt data frame: columns will be truncated or padded with NAs lon lat s azi12 1 -0.100000 51.50000 0.0 -101.9189 2 -9.083431 50.30101 645840.9 3 -17.843773 49.10176 1291681.9 4 -26.395482 47.90227 1937522.8 5 -34.751834 46.70252 2583363.7 6 -42.925049 45.50252 3229204.7 7 -50.926405 44.30227 3875045.6 8 -58.766341 43.10177 4520886.5 9 -66.454539 41.90101 5166727.5 10 -74.000000 40.70000 5812568.4 > > > > cleanEx() > nameEx("tm_fwd") > ### * tm_fwd > > flush(stderr()); flush(stdout()) > > ### Name: tm_fwd > ### Title: Transverse Mercator projection > ### Aliases: tm_fwd tm_rev tm_exact_fwd tm_exact_rev > > ### ** Examples > > # Basic Transverse Mercator (like UTM zone 55) > pts <- cbind(lon = c(147, 148, 149), lat = c(-42, -43, -44)) > tm_fwd(pts, lon0 = 147, k0 = 0.9996) x y convergence scale lon lat lon0 1 0.00 -4647916 0.0000000 0.9992002 147 -42 147 2 81476.04 -4759395 -0.6820358 0.9992819 148 -43 147 3 160285.27 -4871868 -1.3896118 0.9995163 149 -44 147 > > # Compare with UTM > utmups_fwd(pts) x y zone northp convergence scale lon lat crs 1 500000.0 5350224 55 FALSE 0.0000000 0.9996000 147 -42 EPSG:32755 2 581508.6 5238700 55 FALSE -0.6820358 0.9996817 148 -43 EPSG:32755 3 660349.4 5126183 55 FALSE -1.3896118 0.9999162 149 -44 EPSG:32755 > > # Custom scale factor (k0 = 1.0) > tm_fwd(pts, lon0 = 147, k0 = 1.0) x y convergence scale lon lat lon0 1 0.00 -4649776 0.0000000 0.9996000 147 -42 147 2 81508.65 -4761300 -0.6820358 0.9996817 148 -43 147 3 160349.41 -4873817 -1.3896118 0.9999162 149 -44 147 > > # Different central meridian for each point > tm_fwd(pts, lon0 = c(147, 148, 149), k0 = 0.9996) x y convergence scale lon lat lon0 1 0 -4647916 0 0.9992002 147 -42 147 2 0 -4758910 0 0.9992002 148 -43 148 3 0 -4869924 0 0.9992002 149 -44 149 > > # Round-trip conversion > fwd <- tm_fwd(pts, lon0 = 147, k0 = 0.9996) > tm_rev(fwd$x, fwd$y, lon0 = 147, k0 = 0.9996) lon lat convergence scale x y lon0 1 147 -42 0.0000000 0.9992002 0.00 -4647916 147 2 148 -43 -0.6820358 0.9992819 81476.04 -4759395 147 3 149 -44 -1.3896118 0.9995163 160285.27 -4871868 147 > > # Exact version for high precision or extreme locations > tm_exact_fwd(pts, lon0 = 147, k0 = 0.9996) x y convergence scale lon lat lon0 1 0.00 -4647916 0.0000000 0.9992002 147 -42 147 2 81476.04 -4759395 -0.6820358 0.9992819 148 -43 147 3 160285.27 -4871868 -1.3896118 0.9995163 149 -44 147 > > > > cleanEx() > nameEx("utmups_fwd") > ### * utmups_fwd > > flush(stderr()); flush(stdout()) > > ### Name: utmups_fwd > ### Title: Convert coordinates to/from UTM/UPS projection > ### Aliases: utmups_fwd utmups_rev > > ### ** Examples > > # Single point forward conversion > result <- utmups_fwd(c(147.325, -42.881)) > result x y zone northp convergence scale lon lat crs 1 526541.3 5252349 55 FALSE -0.2211566 0.9996087 147.325 -42.881 EPSG:32755 > > # Multiple points > pts <- cbind(lon = c(147, 148, -100, 0), + lat = c(-42, -43, -42, 0)) > utmups_fwd(pts) x y zone northp convergence scale lon lat crs 1 500000.0 5350224 55 FALSE 0.0000000 0.9996000 147 -42 EPSG:32755 2 581508.6 5238700 55 FALSE -0.6820358 0.9996817 148 -43 EPSG:32755 3 417181.9 5349740 14 FALSE 0.6691686 0.9996844 -100 -42 EPSG:32714 4 166021.4 0 31 TRUE 0.0000000 1.0009811 0 0 EPSG:32631 > > # Reverse conversion > utmups_rev(result$x, result$y, result$zone, result$northp) lon lat x y zone northp convergence scale crs 1 147.325 -42.881 526541.3 5252349 55 FALSE -0.2211566 0.9996087 EPSG:32755 > > # Round-trip conversion > fwd <- utmups_fwd(pts) > rev <- utmups_rev(fwd$x, fwd$y, fwd$zone, fwd$northp) > cbind(original = pts, converted = rev[, c("lon", "lat")]) original.lon original.lat converted.lon converted.lat 1 147 -42 147 -42 2 148 -43 148 -43 3 -100 -42 -100 -42 4 0 0 0 0 > > # Polar regions use UPS (zone 0) > polar <- cbind(c(147, 148, -100), c(88, -88, -85)) > utmups_fwd(polar) x y zone northp convergence scale lon lat crs 1 2120948 2186243 0 TRUE 147 0.9943028 147 88 EPSG:32661 2 2117679 1811675 0 FALSE -148 0.9943028 148 -88 EPSG:32761 3 1452981 1903546 0 FALSE 100 0.9958948 -100 -85 EPSG:32761 > > > > ### *