Mercurial > pub > dyncall > bindings
view R/rdyncall/src/rutils_float.c @ 63:9b6cdffd30dd
- further fixes of inccorect overflow errors for int (and long on LLP64 systems)
* prev commit had bugs
* added overflow tests for also int, long, long long (for both, lp64 and llp64)
- while at it, fixing a reference leak when not using python with utf8 caching
author | Tassilo Philipp |
---|---|
date | Sun, 19 May 2024 15:33:18 +0200 |
parents | 0cfcc391201f |
children |
line wrap: on
line source
/** =========================================================================== ** R-Package: rdyncall ** File: src/rutils_float.c ** Description: Utility functions for handling C float data types. **/ #define USE_RINTERNALS #include <Rdefines.h> #include <Rinternals.h> #include <R_ext/RS.h> /* Float utils */ SEXP r_as_floatraw(SEXP x) { SEXP ans; int i, n; double *dp; float *fp; dp = (double*) REAL(x); n = LENGTH(x); if (n < 1) { error("length of x should be >= 1"); return R_NilValue; } ans = PROTECT( Rf_allocVector(RAWSXP, sizeof(float)*n) ); fp = (float*) RAW(ans); for(i = 0 ; i < n ; ++i ) fp[i] = (float) dp[i]; UNPROTECT(1); return ans; } SEXP r_floatraw2numeric(SEXP x) { SEXP ans; int i, n; float *fp; double *dp; fp = (float*) RAW(x); n = LENGTH(x) / sizeof(float); ans = PROTECT( Rf_allocVector(REALSXP, n) ); dp = (double*) REAL(ans); for(i = 0 ; i < n ; ++i ) dp[i] = (double) fp[i]; UNPROTECT(1); return ans; }