Searched refs:bufferSize (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/expat-2.0.1/tests/benchmark/
H A Dbenchmark.c21 "usage: %s [-n] filename bufferSize nr_of_loops\n", prog);
31 int nrOfLoops, bufferSize, fileSize, i, isFinal; local
61 bufferSize = atoi (argv[j + 2]);
63 if (bufferSize <= 0 || nrOfLoops <= 0) {
86 if (parseBufferSize <= bufferSize)
89 parseBufferSize = bufferSize;
100 XMLBufPtr += bufferSize;
112 nrOfLoops, bufferSize, cpuTime / (double) nrOfLoops);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DFastOutputStream.java109 private void initBuffer(int bufferSize, int bumpLen) { argument
110 buf = new byte[bufferSize];
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavdevice/
H A Dbeosaudio.cpp114 static void audioplay_callback(void *cookie, void *buffer, size_t bufferSize, const media_raw_audio_format &format) argument
123 while (bufferSize > 0) {
128 len = MIN(AUDIO_BLOCK_SIZE, bufferSize);
149 bufferSize -= len;
155 static void audiorecord_callback(void *cookie, bigtime_t timestamp, void *buffer, size_t bufferSize, const media_multi_audio_format &format) argument
165 while (bufferSize > 0) {
166 len = MIN(bufferSize, AUDIO_BLOCK_SIZE);
183 bufferSize -= len;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/
H A Dtrio.h104 int trio_vsnprintf TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
106 int trio_snprintfv TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
110 int trio_vsnprintfcat TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/expat-2.0.1/lib/
H A Dxmlparse.c1639 int bufferSize = (int)(bufferLim - bufferPtr); local
1640 if (bufferSize == 0)
1641 bufferSize = INIT_BUFFER_SIZE;
1643 bufferSize *= 2;
1644 } while (bufferSize < neededSize);
1645 newBuf = (char *)MALLOC(bufferSize);
1650 bufferLim = newBuf + bufferSize;

Completed in 98 milliseconds