A buffer is an area of memory set aside for temporary storage of data while it is being moved from one place to another. This is typically done to speed up processes with significant latency, such as writing to a disk, printer or other physical device. The output is ready to be sent to the device ...

learn more… | top users | synonyms (1)

0
votes
0answers
16 views

Why does it take longer for some internet audio streams to start playing on a Samsung S3?

We are experiencing almost the exact opposite of what is mentioned here: Why does it take so long for Android's MediaPlayer to prepare some live streams for playback? I've tested multiple streams ...
0
votes
0answers
19 views

How to setup a constantbuffer in sharpDx DirectX11

I'm trying to access a Uniform Paramter and change it's Value in SharpDx. I've already posted this on the SharpDx board but I did not get a Reply so I'm trying my luck here. Through google I found ...
0
votes
0answers
7 views

Receive data buffers from HTTP asynchronous request

I've started to develop some stuff in C#, and now I need to listen and receive data that's being constantly sent from a HTTP server in my local machine. The goal is to get the connection with this ...
0
votes
0answers
7 views

how to fill a buffergeometry with circles in three.js?

I would like to create a lot of plane circles (like THREE.CircleGeometry) and fill a buffergeometry with them, dont know how to do this. I dont use sprites o particles because I need to intersect ...
0
votes
1answer
34 views

Undoing the effects of ungetc() : “How” do fseek(),rewind() and fsetpos() do it?Is buffer refilled each time?

Huh!!How shall I put the whole thing in a clear question!!Let me try: I know that the files opened using fopen() are buffered into memory.We use a buffer for efficiency and ease.During a read from ...
1
vote
1answer
22 views

How can you stream a JSON file in Node.js and interpret it as JSON?

I have a JSON file that I want to use in a Node.js script. I want to pass the json and then the script to parse it. I tried using fs.readFileSync(filename), but that returns a buffer. How can I ...
0
votes
0answers
16 views

C# - mciSendString, any solution to get the buffer (array)?

I'm creating a reader / recorder using MCI through the DllImport of winmm.dll: mciSendString see here. It works for many things, recording, playing, that's pretty cool. I would like to do some ...
0
votes
0answers
7 views

How to flush the FMOD PCMREADCALLBACK buffer

I am trying to learn a bit about FMOD by making a basic synthesiser. When the it starts up the FMOD system is set up like this: memset(&soundInfo, 0, sizeof(FMOD_CREATESOUNDEXINFO)); ...
2
votes
3answers
68 views

Python writing binary files, bytes

Python 3. I'm using QT's file dialog widget to save PDFs downloaded from the internet. I've been reading the file using 'open', and attempting to write it using the file dialog widget. However, I've ...
-1
votes
0answers
7 views

How many nginx buffers is too many?

Reading the nginx documentation, the proxy_buffer command has this explanatory message: This directive sets the number and the size of buffers, into which will be read the answer, obtained from ...
1
vote
1answer
58 views

“Invalid string or buffer length” when i copy over more than 106 values?

I'm trying to copy an Access database over to Oracle SQL. It works up top the point that it has to copy over more than 106 values. (The problematic table contains over 1000 values) I've used both the ...
0
votes
1answer
38 views

How Buffered Streams works?

In Java and C# there are several classes for buffering streams: BufferedStream in C#, Buffered(Input|Output)Stream and Buffered(Reader|Writer). They gets some stream in constructor and implements ...
6
votes
1answer
98 views

How to disable buffering on a stream?

In C, I can easily set a stream to unbuffered I/O: FILE * f = fopen( "test", "r" ); setvbuf( f, (char *)NULL, _IONBF, 0 ); How would I achieve similarly unbuffered I/O using C++ IOStreams?
1
vote
1answer
14 views

CFStreamCreateBoundPair streams lose data with small buffer size

I am attempting to create a streaming html parser with libxml2 in Objective-C. I have a NSURLConnection that downloads the data, and I have created in NSInputStream and NSOutputstream with ...
0
votes
3answers
49 views

How to read first 256 bits from a file to store them in two arrays

I am coding a cipher, for which key file is 256 bit long. Out of which 128 bits have to go in key and 128 into IV. I am explicitly defining the sizes of those arrays and then reading, and still ...
1
vote
2answers
47 views

Switch a buffer after C-x C-b command USING KEYBOARD

After having typed C-x C-b there will a new window showing currently opened buffers... that is easy. But how can I switch to one of them using only my keyboard? Now I have to move my mouse an click on ...
0
votes
7answers
76 views

Use of Buffer in C++

I am new to c++, learning through Accelerated C++ by Andrew Koenig and Barbara E. Moo. I am unable to grasp the concept of buffer in C++ as the book says "Most systems take a significant amount of ...
0
votes
0answers
15 views

How to use PlayerListener.BUFFERING_STARTED & BUFFERING_STOPPED in j2me

I want to use PlayeListener.BUFFERING_STARTED & PlayeListener.BUFFERING_STOPPED in my j2me Application.Below is my code public void playerUpdate(Player plyr, String evt, Object evtData){ ...
-4
votes
1answer
41 views

Linux Terminal Input/Output C program

I am having some doubts about Linux Terminal output's in a c program i made a printf("Write A Message"); fgets(buffer,BUFSIZ,stdin); which waits for a Message to be typed from keyboard I have ...
0
votes
1answer
22 views

Buffer in driver for PCI device

I'm writing driver for some pci device. My driver need buffer for handling data user wrote. Then driver is providing device with the data. There would be no problem, but my driver must handle many ...
0
votes
1answer
40 views

Android Apps to asynchronously read some kind of buffer

I am currently assigned the task to research and implement two Apps that do the following: App A writes some content to a buffer/register of some sort App A terminates App B starts and reads the ...
0
votes
1answer
23 views

how to queue or buffer a series of commands in thread safe manner?

I am sending several command messages through UDP port. how can i queue them in a background safe thread while the program continues its service.. the commands i want to send are like this: ...
0
votes
0answers
20 views

Vuforia & Unity readpixels frame

Past month i've been working with Unity and Vuforia to create an Augmented Reality game for android/tablet. I've been working with a unity-pro trial and since today i've got a full unity pro license. ...
0
votes
2answers
57 views

c# reading text file with contention from other instances

I have a app that reads data from a text file using: CRD.reader = new StreamReader(fn,Encoding.UTF8,true,1024); CRD.readLine(); BUT I run 16 instances of this app in ...
0
votes
1answer
30 views

Fast way to swap endianness using opencl

I'm reading and writing lots of FITS and DNG images which may contain data of an endianness different from my platform and/or opencl device. Currently I swap the byte order in the host's memory if ...
-5
votes
2answers
71 views

How to remove blank spaces from buffer [closed]

How to remove blank spaces from buffer in O(1) space complexity and O(n) time complexity? What do we mean by buffer in this question? will we consider it as a stream of characters or string? ...
0
votes
1answer
51 views

how to buffer and delay printf() output?

I wrote a C program and in the program there are many printf() which output log information to stdout. Now I want to use multiple processes to run the program simultaneously with different arguments. ...
0
votes
1answer
18 views

How to monitor free memory using newrelic with/out buffers/cached

I am evaluating newrelic for server monitoring and could not find how to monitor the memory used by the operating system to buffer files.
1
vote
1answer
96 views

Linux UDP max size of receive buffer

What's the maximum size of Linux UDP receive buffer? I thought it's limited only by available RAM, but when I set 5GB for rmem_max: echo 5000000000 > /proc/sys/net/core/rmem_max and 4GB for the ...
1
vote
1answer
20 views

RandomaAccessFile, what is actually random?

Having read this oracle java link I would like to know what the writers of this class exactly meant by the term "Random", if the buffer has its own position, limit, capacity indicators. What would be ...
0
votes
1answer
34 views

Applescript: Keeping track of multiple terminal windows and writing into each of them

I've got a setup procedure for a project that involves me using multiple terminal windows. The start up procedure is sort of messy and involves me tabbing between the terminal windows (different tools ...
0
votes
0answers
22 views

Need help figuring out when/where to access a variable in a method. I didn't write the code but I semi understand what it is doing

So the idea of my project is to grab files from a server and then put them on another. As of now it is downloading the files to whatever machine is running the program and THEN re-uploading them to ...
0
votes
1answer
25 views

DX11 minimum buffer sizes

After creating a few constant buffers, some of them started to not initialize correctly. A constant buffer is created with a struct called MiscStream, which is defined: struct MiscStream { int ...
0
votes
1answer
19 views

Can stack overflows be mitigated by having arrays grow upward instead of down into the return address / stack frame?

Can stack overflows be mitigated by having arrays grow upward instead of down into the return address / stack frame?
0
votes
0answers
31 views

HTML5 web audio getting stuck (buffering issue?)

I am working on a (weekly radio show) audio website and I keep getting the same problem, the audio files that are up to 1hr long keep getting stuck. I have tested several different players, both the ...
0
votes
1answer
18 views

Why Response Header is not shown in Client's shell?

I am writing HTTP WEB SERVER code. Till now I implemented GET, HEAD method. Now I have to implement OPTIONS method. But this time there is no response received by client's shell. I didn't understand ...
0
votes
0answers
20 views

What is the standard data-structure to get Http client request in Http Web Server project

I am writing HTTP WEB SERVER. In that code, I used byte array to get the client request, and then process, but that have performance issue, when I call different RequestHandler , i.e., Get, Head and ...
0
votes
1answer
31 views

Android eglSwapBuffers - manual control? (Android)

My understanding is that eglSwapBuffers is called automatically every frame when using a GLSurfaceview, so: onDrawFrame() { //Your drawing code here //system swaps buffers automatically } is ...
0
votes
1answer
20 views

Directx11 where initialize constant shader buffer

I not know where initialize shader constant buffer: before Map(), before Unmnap() or is not difference where initialize ?
1
vote
2answers
28 views

Is output buffering possible inside of flush?

I'm trying to show function status as its looping but delete the previous status before the next one shows. Current code: <?php @ini_set('zlib.output_compression',0); ...
-1
votes
1answer
45 views

OpenCV - Array of Images, or Buffer of Mat

How, can I have a buffer or array of images "Mat" with OpenCV? I mean: Mat images; images[0] = imread(...) images[1] = imread(..) etc... How can I do this?
1
vote
0answers
30 views

To serialize directly to file stream or buffer before

Here I was wondering what is generally considered to be faster. Either writing to the stream directly while serializing data using (var fs = new FileStream(file, FileMode.Create, FileAccess.Write, ...
3
votes
1answer
63 views

GLSL: Removal of dead code causes visual errors

I've been having a lot of strange problem's while trying to write a raytracer in an opengl shader. I try to determine if the source of the error is myself, and often this is the case, but I've come to ...
0
votes
1answer
46 views

How to read the buffer from a paquet (tftp)

I am currently trying to write a tftp in C. But i have some difficulties to read the packet that I sent. Here is what I have : The struct that I am sending : typedef struct { short type; short ...
1
vote
2answers
55 views

high performance buffers in objective-c

I'm wondering what the most applicable kind of buffer implementation is for audio data in objective-c. I'm working with audio data on the iPhone, where I do some direct data manipulation/DSP of the ...
0
votes
1answer
63 views

how to increase TCP window size in android for FTP?

I am trying to develop a simple ftp client using open source ftp4j library for android. I wanted to know if there is any way I can change/increase the tcp window size for data transfer. I have tried ...
0
votes
1answer
47 views

How to get ob_start() working correctly

Im getting an error that states: Warning: Cannot modify header information - headers already sent by (output started at /home/content/21/10941021/html/index.php:4) in ...
1
vote
3answers
117 views

How to add a question mark to the end of a line?

I want to check to see if the user added a ? to the end of the buffer. If not, I want the program to add one automatically. This is what I have so far. I dont know what to do next. First I check to ...
0
votes
2answers
56 views

Memcpy string as void pointer, incorrect read

I'm trying to create a function that puts together a buffer from arbitrary types. Think basic RPC. So the buffer looks something like { char opcode, uint32_t param1_size, param1, ... , uint32_t ...
0
votes
0answers
54 views

insert in database for android _ json parser issue and Error Buffer ()

the listed below code works amazingly fine but it keeps give this stupid error of buffer and json and i don't know whats the problem , i'm desperate for your help folks !! it works fine until ...

1 2 3 4 5 38