Re: [v8-users] Arraybuffer

2018-09-27 Thread Caitlin Potter
You can find places where ArrayBufferBuilder::Append is called, by looking for the ArrayBufferBuilder symbol on cs.chromium.org. For example, here’s one use of it: https://cs.chromium.org/chromium/src/third_party/blink/renderer/core/fileapi/file_reader_loader.cc?type=cs&g=0&l=260 I don’t have a

Re: [v8-users] Help

2018-09-27 Thread Zac Hansen
I'm not sure if you have social interaction problems, but you need to understand that your behavior in this mailing list is not appropriate. People have tried to help you with your questions, but you refuse to listen to what they have to say and seem to feel that you are owed support to your s

Re: [v8-users] Help

2018-09-27 Thread dan Med
yes under the WTF directory Il giorno gio 27 set 2018 alle ore 22:55 J Decker ha scritto: > > > On Thu, Sep 27, 2018 at 10:50 AM dan Med wrote: > >> When v8 calls the arraybufferappend method ? >> > ARRAYBUFFERAPPEND IS NOT DEFINED IN V8 IT IS NEVER CALLED. > > >> >> Il giorno mar 4 set 2018 al

Re: [v8-users] Help

2018-09-27 Thread J Decker
On Thu, Sep 27, 2018 at 10:50 AM dan Med wrote: > When v8 calls the arraybufferappend method ? > ARRAYBUFFERAPPEND IS NOT DEFINED IN V8 IT IS NEVER CALLED. > > Il giorno mar 4 set 2018 alle ore 12:12 Graham Reeves < > gra...@grahamreeves.com> ha scritto: > >> memcpy is this >> memcpy( writable_

Re: [v8-users] Arraybuffer and arraybufferbuilde

2018-09-27 Thread dan Med
What i'm looking generally is how to understand the code in general and by this i mean the following So processes in chrome talk to each other via the IPC, other than reading the source code which just scratched the surface i want to understand from the lowest point of the implementation and then n

[v8-users] Arraybuffer and arraybufferbuilde

2018-09-27 Thread litokis . tarin
1) Can someone help me understand how v8 will parse my arraybuffer specified in one of my scripts ? If you could supply the links to the source code that does this function it will be helpful. 2) When is ArrayBufferBuilder::Append called ? -- -- v8-users mailing list v8-users@googlegroups.c

Re: [v8-users] Help

2018-09-27 Thread dan Med
When v8 calls the arraybufferappend method ? Il giorno mar 4 set 2018 alle ore 12:12 Graham Reeves < gra...@grahamreeves.com> ha scritto: > memcpy is this > memcpy( writable_destination, const_source, length_in_bytes ) > > if you're unsure what it's doing, expand the arguments so the code is more