Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
586 views

JavaScript typed arrays: 64-bit integers?

JavaScript typed arrays, implemented in Firefox 4 and Chrome 7, are a very efficient way of storing and working with binary data in JavaScript. However, the current implementations only provide ...
4
votes
1answer
196 views

Websocket binary data messages (ArrayBuffer)

As I understand ArrayBuffer length is set only by constructor and cannot be changed dynamically. So I am curious, is it possible using websockets binary data messages send arraybuffer certain part, ...
4
votes
2answers
1k views

Converting between strings and ArrayBuffers

Is there a commonly accepted technique for efficiently converting JavaScript strings to ArrayBuffers and vice-versa? Specifically, I'd like to be able to write the contents of an ArrayBuffer to ...
4
votes
2answers
413 views

JavaScript: Web Worker and Typed Arrays

I have a web worker (started with new Worker()) that does some processing and is supposed to return a Float32Array. It seems however that after the worker postMessage()s the data, it goes through ...
3
votes
1answer
63 views

Uint32Array( buffer, byteOffset, length ) does not work as expected

According to MSDN I can create a Uint32Array in 3 ways: new Uint32Array( length ); new Uint32Array( array ); new Uint32Array( buffer, byteOffset, length ); First and second method work great, but ...
3
votes
1answer
130 views

Is there a method to set a typed array to zero?

Is there a way to set every element of a Javascript typed array (i.e. a Uint32Array) to some value (something like the C function memset would do)? var foo = new Uint32Array(16384); for (int i=0; ...
3
votes
1answer
437 views

Typed Arrays in Gecko 2: Float32Array concatenation and expansion

I'm a bit confused with Javascript Typed Arrays. What I have are several Float32Array s, that have no concat method. I don't know how many are them in advance, btw. I'd like to concatenate them all ...
2
votes
2answers
69 views

Reinterpret cast floating point number to integer

This question is probably "unusual", but I need to cast a float Number to an integer Number, without modifying its binary representation. For example, the float 37.5 is represented by the bytes ...
2
votes
1answer
132 views

Why is creating a Float32Array with an offset that isn't a multiple of the element size not allowed?

I'd like to read a binary file with a few 32 bit float values at byte offset 31. Unfortunately, new Float32Array(buffer, 31, 6); does not work. An offset of 32 instead of 31 works but I need 31. ...
1
vote
1answer
70 views

Uint16Array access byteOffset 1, 3, 5 etc

new Uint16Array(ArrayBuffer, byteOffset, length); For Uint16 (word) byteOffset can only be 0, 2, 4, 6 etc. How access to 2nd, 4th byte? (byteOffset = 1, 3 etc) DataView is solution for Chrome but ...
1
vote
0answers
86 views

How to use strings with JavaScript Typed Arrays

I've come across a problem in that I don't see a way to easily convert strings to typed arrays, and converting from typed arrays to strings appears to be a real pain requiring a manual char code ...
1
vote
0answers
136 views

Limitations of typed arrays?

I've done some playing around with typed arrays using Firefox 4, and have noticed some things. The size of ArrayBuffer that can be created is an integer in the range [0..2147483647]. Passing ...
0
votes
2answers
23 views

Difference between readAsBinaryString and readAsText using FileReader

So as an example, when I read the π character (\u03C0) from a File using the FileReader API, I get the pi character back to me when I read it using FileReader.readAsText(blob) which is expected. But ...
0
votes
2answers
199 views

Javascript Typed Arrays and Endianness

I'm using WebGL to render a binary encoded mesh file. The binary file is written out in big-endian format (I can verify this by opening the file in a hex editor, or viewing the network traffic using ...
0
votes
0answers
202 views

How to pass JavaScript typed arrays to Java applet through LiveConnect?

I'm trying to pass ArrayBuffer to Java applet, but cannot guess how to do it. It's pretty easy to handle standard JS arrays and they work fine for Sun's plugin (not for IcedTea). I can pass ...
0
votes
1answer
100 views

Custom XML tags won't settle?

I am truly stumped. I followed this link in learning how to create custom xml tags for my views. Well as far as I can tell I did everything correctly. But eclipse still tosses error: No resource ...