Searched refs:bufferSize (Results 1 – 11 of 11) sorted by relevance
/netbsd-src/external/mit/expat/dist/tests/benchmark/ |
H A D | benchmark.c | 65 int nrOfLoops, bufferSize, fileSize, i, isFinal; in main() local 94 bufferSize = atoi(argv[j + 2]); in main() 96 if (bufferSize <= 0 || nrOfLoops <= 0) { in main() 118 if (parseBufferSize <= bufferSize) in main() 121 parseBufferSize = bufferSize; in main() 133 XMLBufPtr += bufferSize; in main() 145 nrOfLoops, bufferSize, cpuTime / (double)nrOfLoops); in main()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/digest/ |
H A D | murmurhash.d | 509 if (bufferSize + data.length < Element.sizeof) in this() 511 buffer.data[bufferSize .. bufferSize + data.length] = data[]; in this() 512 bufferSize += data.length; in this() 518 if (bufferSize != 0) 520 const bufferLeeway = Element.sizeof - bufferSize; 521 buffer.data[bufferSize .. $] = data[0 .. bufferLeeway]; 581 bufferSize = data.length; 592 auto tail = buffer.data[0 .. bufferSize]; in finish()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/ |
H A D | murmurhash.d | 509 if (bufferSize + data.length < Element.sizeof) in this() 511 buffer.data[bufferSize .. bufferSize + data.length] = data[]; in this() 512 bufferSize += data.length; in this() 518 if (bufferSize != 0) 520 const bufferLeeway = Element.sizeof - bufferSize; 521 buffer.data[bufferSize .. $] = data[0 .. bufferLeeway]; 581 bufferSize = data.length; 592 auto tail = buffer.data[0 .. bufferSize]; in finish()
|
/netbsd-src/sys/dev/raidframe/ |
H A D | rf_paritylogging.c | 293 raidPtr->regionBufferPool.bufferSize = raidPtr->regionLogCapacity * in rf_ConfigureParityLogging() 296 raidPtr->regionBufferPool.bufferSize); in rf_ConfigureParityLogging() 316 (int) (raidPtr->regionBufferPool.bufferSize * in rf_ConfigureParityLogging() 319 RF_Malloc(raidPtr->regionBufferPool.bufferSize); in rf_ConfigureParityLogging() 323 raidPtr->regionBufferPool.bufferSize * in rf_ConfigureParityLogging() 341 raidPtr->parityBufferPool.bufferSize = parityBufferCapacity * in rf_ConfigureParityLogging() 344 raidPtr->parityBufferPool.bufferSize); in rf_ConfigureParityLogging() 365 (int) (raidPtr->parityBufferPool.bufferSize * in rf_ConfigureParityLogging() 368 raidPtr->parityBufferPool.bufferSize); in rf_ConfigureParityLogging() 372 raidPtr->regionBufferPool.bufferSize * in rf_ConfigureParityLogging() [all …]
|
H A D | rf_paritylog.h | 98 int bufferSize; member
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/ |
H A D | string.d | 80 enum bufferSize = radix >= 10 ? 20 : 65; 81 TempStringNoAlloc!bufferSize result = void;
|
/netbsd-src/external/bsd/libc++/dist/libcxxrt/src/ |
H A D | exception.cc | 720 size_t bufferSize = 128; in report_failure() local 721 char *demangled = static_cast<char*>(malloc(bufferSize)); in report_failure() 724 demangled = __cxa_demangle(mangled, demangled, &bufferSize, &status); in report_failure()
|
/netbsd-src/external/mit/expat/dist/lib/ |
H A D | xmlparse.c | 2102 int bufferSize in XML_GetBuffer() local 2104 if (bufferSize == 0) in XML_GetBuffer() 2105 bufferSize = INIT_BUFFER_SIZE; in XML_GetBuffer() 2108 bufferSize = (int)(2U * (unsigned)bufferSize); in XML_GetBuffer() 2109 } while (bufferSize < neededSize && bufferSize > 0); in XML_GetBuffer() 2110 if (bufferSize <= 0) { in XML_GetBuffer() 2114 newBuf = (char *)MALLOC(parser, bufferSize); in XML_GetBuffer() 2119 parser->m_bufferLim = newBuf + bufferSize; in XML_GetBuffer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/ |
H A D | TargetSchedule.td | 560 class RetireControlUnit<int bufferSize, int retirePerCycle> { 561 int ReorderBufferSize = bufferSize;
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/net/ |
H A D | curl.d | 1588 private this(Tid tid, size_t transmitBuffers, size_t bufferSize) in AsyncLineInputRange() 1598 auto arr = new Char[](bufferSize); in AsyncLineInputRange()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/net/ |
H A D | curl.d | 4944 private this(Tid tid, size_t transmitBuffers, size_t bufferSize) in _async() 4956 auto arr = new Char[](bufferSize); in _async()
|