Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
31708f70
Commit
31708f70
authored
8 years ago
by
Lukas Stadler
Browse files
Options
Downloads
Patches
Plain Diff
provide macros and public functions for IS_UTF8, etc.
parent
d05a54a9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
com.oracle.truffle.r.native/fficall/src/common/inlined_fastr.c
+2
-1
2 additions, 1 deletion
...racle.truffle.r.native/fficall/src/common/inlined_fastr.c
mx.fastr/mx_fastr_edinclude.py
+13
-0
13 additions, 0 deletions
mx.fastr/mx_fastr_edinclude.py
with
15 additions
and
1 deletion
com.oracle.truffle.r.native/fficall/src/common/inlined_fastr.c
+
2
−
1
View file @
31708f70
...
...
@@ -6,7 +6,7 @@
* Copyright (c) 1995, 1996, 1997 Robert Gentleman and Ross Ihaka
* Copyright (c) 1995-2014, The R Core Team
* Copyright (c) 2002-2008, The R Foundation
* Copyright (c) 2015, 201
6
, Oracle and/or its affiliates
* Copyright (c) 2015, 201
7
, Oracle and/or its affiliates
*
* All rights reserved.
*/
...
...
@@ -545,3 +545,4 @@ Rboolean IS_BYTES(SEXP x) { return FALSE; }
Rboolean
IS_LATIN1
(
SEXP
x
)
{
return
FALSE
;
}
Rboolean
IS_ASCII
(
SEXP
x
)
{
return
FALSE
;
}
Rboolean
IS_UTF8
(
SEXP
x
)
{
return
TRUE
;
}
Rboolean
ENC_KNOWN
(
SEXP
x
)
{
return
TRUE
;
}
This diff is collapsed.
Click to expand it.
mx.fastr/mx_fastr_edinclude.py
+
13
−
0
View file @
31708f70
...
...
@@ -61,6 +61,19 @@ sexp = '''#ifdef FASTR
typedef void *SEXP;
#define DATAPTR(x)
\t\t
R_DATAPTR(x)
void *(R_DATAPTR)(SEXP x);
#define IS_BYTES IS_BYTES
#define IS_LATIN1 IS_LATIN1
#define IS_ASCII IS_ASCII
#define IS_UTF8 IS_UTF8
#define ENC_KNOWN ENC_KNOWN
Rboolean IS_BYTES(SEXP x);
Rboolean IS_LATIN1(SEXP x);
Rboolean IS_ASCII(SEXP x);
Rboolean IS_UTF8(SEXP x);
Rboolean ENC_KNOWN(SEXP x);
#else
'''
use_internals_begin
=
'''
#if defined (USE_RINTERNALS_DEFS) && (defined (USE_RINTERNALS) || defined (FASTR))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment