HomeSort by relevance Sort by last modified time
    Searched refs:READ_SIZE (Results 1 - 4 of 4) sorted by null

  /cts/suite/audio_quality/lib/src/
SimpleScriptExec.cpp 72 const int READ_SIZE = 1024;
73 char buffer[READ_SIZE];
81 while((len = fread(buffer, 1, READ_SIZE, fpipe)) > 0) {
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDownloadRunnable.java 39 private static final int READ_SIZE = 1024 * 2;
185 byte[] tempBuffer = new byte[READ_SIZE];
252 bufferLeft = READ_SIZE;
259 int newSize = tempBuffer.length + READ_SIZE;
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 32 #define READ_SIZE (1024*8)
34 unsigned char inBuf[READ_SIZE];
221 bytesLeft = ReadFile2Buf(infile,inData.Buffer,READ_SIZE);
261 nRead = ReadFile2Buf(infile, inBuf,READ_SIZE);
  /external/elfutils/0.153/libdwfl/
gzip.c 89 #define READ_SIZE (1 << 20)
156 input_buffer = malloc (READ_SIZE);
160 ssize_t n = pread_retry (fd, input_buffer, READ_SIZE, start_offset);
205 ssize_t n = pread_retry (fd, input_buffer, READ_SIZE,

Completed in 2910 milliseconds