Home | History | Annotate | Download | only in examples

Lines Matching full:readbuffer

40 signed char readbuffer[READ*4+44]; /* out of the data segment, not the stack */
83 readbuffer[0] = '\0';
86 fread(readbuffer,1,2,stdin);
88 if ( ! strncmp((char*)readbuffer, "da", 2) ){
90 fread(readbuffer,1,6,stdin);
182 long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here */
199 buffer[0][i]=((readbuffer[i*4+1]<<8)|
200 (0x00ff&(int)readbuffer[i*4]))/32768.f;
201 buffer[1][i]=((readbuffer[i*4+3]<<8)|
202 (0x00ff&(int)readbuffer[i*4+2]))/32768.f;