Displaying 7 results from an estimated 7 matches for "32be".
Did you mean:
32b
2017 May 01
3
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
...("\n", to = "UTF-16LE"))
>> try (iconv ("\n", to = "UTF-16BE"))
>> try (iconv ("\n", to = "UTF-16"))
>>
>> try (iconv ("\n", to = "UTF-32LE"))
>> try (iconv ("\n", to = "UTF-32BE"))
>> try (iconv ("\n", to = "UTF-32"))
>> ----------------------------------------------------------------------------
>> ------------------------
>>
>> TEST SCRIPT OUTPUT
>>
>>> source ("bug_encoding.R")
>> R ve...
2017 Apr 29
2
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
...", to = "UTF-8"))
try (iconv ("\n", to = "UTF-16LE"))
try (iconv ("\n", to = "UTF-16BE"))
try (iconv ("\n", to = "UTF-16"))
try (iconv ("\n", to = "UTF-32LE"))
try (iconv ("\n", to = "UTF-32BE"))
try (iconv ("\n", to = "UTF-32"))
----------------------------------------------------------------------------
------------------------
TEST SCRIPT OUTPUT
> source ("bug_encoding.R")
R version 3.4.0 (2017-04-21)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Ru...
2017 May 02
1
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
...3:4)
>
> $`UTF-32LE`$default.eol$raw
> [1] 22 00 00 00 78 00 00 00 22 00 00 00 2c 00 00 00 22 00 00 00 79 00 00 00
> 22
> [26] 00 00 00 0d 0a 00 00 00 31 00 00 00 2c 00 00 00 33 00 00 00 0d 0a 00 00
> 00
> [51] 32 00 00 00 2c 00 00 00 34 00 00 00 0d 0a 00 00 00
>
> $`UTF-32BE`$default.eol$raw
> [1] 00 00 00 22 00 00 00 78 00 00 00 22 00 00 00 2c 00 00 00 22 00 00 00 79
> 00
> [26] 00 00 22 00 00 00 0d 0a 00 00 00 31 00 00 00 2c 00 00 00 33 00 00 00 0d
> 0a
> [51] 00 00 00 32 00 00 00 2c 00 00 00 34 00 00 00 0d 0a
>
> (Nevertheless, Microsoft Excel...
2017 May 02
0
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
...CR+LF):
df <- data.frame (x = 1:2, y = 3:4)
$`UTF-32LE`$default.eol$raw
[1] 22 00 00 00 78 00 00 00 22 00 00 00 2c 00 00 00 22 00 00 00 79 00 00 00
22
[26] 00 00 00 0d 0a 00 00 00 31 00 00 00 2c 00 00 00 33 00 00 00 0d 0a 00 00
00
[51] 32 00 00 00 2c 00 00 00 34 00 00 00 0d 0a 00 00 00
$`UTF-32BE`$default.eol$raw
[1] 00 00 00 22 00 00 00 78 00 00 00 22 00 00 00 2c 00 00 00 22 00 00 00 79
00
[26] 00 00 22 00 00 00 0d 0a 00 00 00 31 00 00 00 2c 00 00 00 33 00 00 00 0d
0a
[51] 00 00 00 32 00 00 00 2c 00 00 00 34 00 00 00 0d 0a
(Nevertheless, Microsoft Excel 2013 tolerates these CSVs!)
One t...
2017 Apr 30
0
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
...>
> try (iconv ("\n", to = "UTF-16LE"))
> try (iconv ("\n", to = "UTF-16BE"))
> try (iconv ("\n", to = "UTF-16"))
>
> try (iconv ("\n", to = "UTF-32LE"))
> try (iconv ("\n", to = "UTF-32BE"))
> try (iconv ("\n", to = "UTF-32"))
> ----------------------------------------------------------------------------
> ------------------------
>
> TEST SCRIPT OUTPUT
>
>> source ("bug_encoding.R")
> R version 3.4.0 (2017-04-21)
> Pl...
2009 Jul 25
2
[RFC] patch 0/4: DRM MMIO accessor cleanup
Hi,
this is continuation for the MMIO accessor rewrite and cleanup.
I am currently running nv28 with these patches applied, but
I cannot test on PPC.
Please, review and comment. If the direction is good, I'll do the
same to INSTANCE_{RD,WR} as I did for nv_{rd,wr}32, and change
PRAMIN from drm_local_map to simple ioremap.
Can the same be done for channel specific mappings, that is
2007 Nov 26
0
14 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_file_reference.c libswfdec/swfdec_load_object.c libswfdec/swfdec_sprite_movie_as.c libswfdec/swfdec_system_security.c test/trace
...bom handling
diff --git a/libswfdec/swfdec_load_object.c b/libswfdec/swfdec_load_object.c
index 6104240..322b3e7 100644
--- a/libswfdec/swfdec_load_object.c
+++ b/libswfdec/swfdec_load_object.c
@@ -99,8 +99,6 @@ typedef struct {
} ByteOrderMark;
static ByteOrderMark boms[] = {
- /*{ "UTF-32BE", 4, {0x00, 0x00, 0xFE, 0xFF} },
- { "UTF-32LE", 4, {0xFE, 0xFF, 0x00, 0x00} },*/
{ "UTF-8", 3, {0xEF, 0xBB, 0xBF, 0} },
{ "UTF-16BE", 2, {0xFE, 0xFF, 0, 0} },
{ "UTF-16LE", 2, {0xFF, 0xFE, 0, 0} },
@@ -116,6 +114,7 @@ swfdec_load_object_loader...