Searched refs:outBuffer (Results 1 - 25 of 29) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DStatisticalSummaryValues.java172 StringBuilder outBuffer = new StringBuilder();
174 outBuffer.append("StatisticalSummaryValues:").append(endl);
175 outBuffer.append("n: ").append(getN()).append(endl);
176 outBuffer.append("min: ").append(getMin()).append(endl);
177 outBuffer.append("max: ").append(getMax()).append(endl);
178 outBuffer.append("mean: ").append(getMean()).append(endl);
179 outBuffer.append("std dev: ").append(getStandardDeviation())
181 outBuffer.append("variance: ").append(getVariance()).append(endl);
182 outBuffer.append("sum: ").append(getSum()).append(endl);
183 return outBuffer
[all...]
H A DMultivariateSummaryStatistics.java310 StringBuilder outBuffer = new StringBuilder();
311 outBuffer.append("MultivariateSummaryStatistics:" + suffix);
312 outBuffer.append("n: " + getN() + suffix);
313 append(outBuffer, getMin(), "min: ", separator, suffix);
314 append(outBuffer, getMax(), "max: ", separator, suffix);
315 append(outBuffer, getMean(), "mean: ", separator, suffix);
316 append(outBuffer, getGeometricMean(), "geometric mean: ", separator, suffix);
317 append(outBuffer, getSumSq(), "sum of squares: ", separator, suffix);
318 append(outBuffer, getSumLog(), "sum of logarithms: ", separator, suffix);
319 append(outBuffer, getStandardDeviatio
[all...]
H A DDescriptiveStatistics.java426 StringBuilder outBuffer = new StringBuilder();
428 outBuffer.append("DescriptiveStatistics:").append(endl);
429 outBuffer.append("n: ").append(getN()).append(endl);
430 outBuffer.append("min: ").append(getMin()).append(endl);
431 outBuffer.append("max: ").append(getMax()).append(endl);
432 outBuffer.append("mean: ").append(getMean()).append(endl);
433 outBuffer.append("std dev: ").append(getStandardDeviation())
435 outBuffer.append("median: ").append(getPercentile(50)).append(endl);
436 outBuffer.append("skewness: ").append(getSkewness()).append(endl);
437 outBuffer
[all...]
H A DSummaryStatistics.java312 StringBuilder outBuffer = new StringBuilder();
314 outBuffer.append("SummaryStatistics:").append(endl);
315 outBuffer.append("n: ").append(getN()).append(endl);
316 outBuffer.append("min: ").append(getMin()).append(endl);
317 outBuffer.append("max: ").append(getMax()).append(endl);
318 outBuffer.append("mean: ").append(getMean()).append(endl);
319 outBuffer.append("geometric mean: ").append(getGeometricMean())
321 outBuffer.append("variance: ").append(getVariance()).append(endl);
322 outBuffer.append("sum of squares: ").append(getSumsq()).append(endl);
323 outBuffer
[all...]
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-api-fst.h89 u_int8_t *input, int inputLen, u_int8_t *outBuffer);
92 u_int8_t *input, int inputOctets, u_int8_t *outBuffer);
95 u_int8_t *input, int inputLen, u_int8_t *outBuffer);
98 u_int8_t *input, int inputOctets, u_int8_t *outBuffer);
102 u_int8_t *input, int inputLen, u_int8_t *outBuffer, int Rounds);
H A Drijndael-api-fst.c94 BYTE *input, int inputLen, BYTE *outBuffer) {
112 rijndaelEncrypt(input, outBuffer, key->keySched, key->ROUNDS);
114 outBuffer += 16;
132 rijndaelEncrypt(block, outBuffer, key->keySched, key->ROUNDS);
136 bcopy(outBuffer, block, 16);
143 ((word32*)block)[0] = ((word32*)outBuffer)[0] ^ ((word32*)input)[0];
144 ((word32*)block)[1] = ((word32*)outBuffer)[1] ^ ((word32*)input)[1];
145 ((word32*)block)[2] = ((word32*)outBuffer)[2] ^ ((word32*)input)[2];
146 ((word32*)block)[3] = ((word32*)outBuffer)[3] ^ ((word32*)input)[3];
148 outBuffer
93 rijndael_blockEncrypt(cipherInstance *cipher, keyInstance *key, BYTE *input, int inputLen, BYTE *outBuffer) argument
207 rijndael_padEncrypt(cipherInstance *cipher, keyInstance *key, BYTE *input, int inputOctets, BYTE *outBuffer) argument
270 rijndael_blockDecrypt(cipherInstance *cipher, keyInstance *key, BYTE *input, int inputLen, BYTE *outBuffer) argument
368 rijndael_padDecrypt(cipherInstance *cipher, keyInstance *key, BYTE *input, int inputOctets, BYTE *outBuffer) argument
460 rijndael_cipherUpdateRounds(cipherInstance *cipher, keyInstance *key, BYTE *input, int inputLen, BYTE *outBuffer, int rounds) argument
[all...]
/external/skia/src/pdf/
H A DSkDeflate.cpp45 unsigned char outBuffer[SKDEFLATEWSTREAM_OUTPUT_BUFFER_SIZE]; local
48 zStream->next_out = outBuffer;
49 zStream->avail_out = sizeof(outBuffer);
53 out->write(outBuffer, sizeof(outBuffer) - zStream->avail_out);
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
H A DFrequency.java83 StringBuilder outBuffer = new StringBuilder();
84 outBuffer.append("Value \t Freq. \t Pct. \t Cum Pct. \n");
88 outBuffer.append(value);
89 outBuffer.append('\t');
90 outBuffer.append(getCount(value));
91 outBuffer.append('\t');
92 outBuffer.append(nf.format(getPct(value)));
93 outBuffer.append('\t');
94 outBuffer.append(nf.format(getCumPct(value)));
95 outBuffer
[all...]
/external/sonic/
H A DMain.java35 byte outBuffer[] = new byte[bufferSize];
52 numWritten = sonic.readBytesFromStream(outBuffer, bufferSize);
54 line.write(outBuffer, 0, numWritten);
H A Dmain.c30 short inBuffer[BUFFER_SIZE], outBuffer[BUFFER_SIZE]; local
47 samplesWritten = sonicReadShortFromStream(stream, outBuffer,
50 writeToWaveFile(outFile, outBuffer, samplesWritten);
H A DSonic.java430 byte outBuffer[],
446 outBuffer[xSample << 1] = (byte)(sample & 0xff);
447 outBuffer[(xSample << 1) + 1] = (byte)(sample >> 8);
429 readBytesFromStream( byte outBuffer[], int maxBytes) argument
/external/lzma/C/
H A D7zDec.c69 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
114 outBuffer[i] = (Byte)sym;
130 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
137 state.dic = outBuffer;
178 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
187 state.decoder.dic = outBuffer;
226 static SRes SzDecodeCopy(UInt64 inSize, ILookInStream *inStream, Byte *outBuffer) argument
237 memcpy(outBuffer, inBuf, curSize);
238 outBuffer += curSize;
327 #define CASE_BRA_CONV(isa) case k_ ## isa: isa ## _Convert(outBuffer, outSiz
68 SzDecodePpmd(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
129 SzDecodeLzma(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
177 SzDecodeLzma2(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
329 SzFolder_Decode2(const CSzFolder *folder, const Byte *propsData, const UInt64 *unpackSizes, const UInt64 *packPositions, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
456 SzAr_DecodeFolder(const CSzAr *p, UInt32 folderIndex, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
[all...]
H A D7z.h115 Byte *outBuffer, size_t outSize,
121 *outBuffer must be 0 before first call for each new archive.
127 *outBuffer,
129 You can consider "*outBuffer" as cache of solid block. If your archive is solid,
133 (blockIndex, outBuffer, outBufferSize) as static in that external function.
135 Free *outBuffer and set *outBuffer to 0, if you want to flush cache.
192 Byte **outBuffer, /* pointer to pointer to output buffer (allocated with allocMain) */
194 size_t *offset, /* offset of stream for required file in *outBuffer */
195 size_t *outSizeProcessed, /* size of file in *outBuffer */
[all...]
/external/lzma/CPP/Windows/
H A DFileIO.h73 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const
76 outBuffer, outSize, bytesReturned, overlapped));
79 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned) const argument
81 return DeviceIoControl(controlCode, NULL, 0, outBuffer, outSize, bytesReturned);
84 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize) const argument
87 return DeviceIoControlOut(controlCode, outBuffer, outSize, &bytesReturned);
72 DeviceIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inSize, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const argument
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A DLzmaAlone.cpp360 Byte *outBuffer = 0; local
368 outBuffer = (Byte *)MyAlloc((size_t)outSize);
369 if (outBuffer == 0)
374 int res = Lzma86_Encode(outBuffer, &outSize, inBuffer, inSize,
392 outBuffer = (Byte *)MyAlloc(outSize);
393 if (outBuffer == 0)
396 int res = Lzma86_Decode(outBuffer, &outSize, inBuffer, &inSize);
402 if (WriteStream(outStream, outBuffer, outSize) != S_OK)
404 MyFree(outBuffer);
/external/webrtc/webrtc/modules/utility/source/
H A Dfile_player_impl.cc97 int16_t* outBuffer,
166 memset(outBuffer, 0, outLen * sizeof(int16_t));
171 outBuffer,
181 outBuffer[i] = (int16_t)(outBuffer[i] * _scaling);
96 Get10msAudioFromFile( int16_t* outBuffer, size_t& lengthInSamples, int frequencyInHz) argument
H A Dfile_player_impl.h33 int16_t* outBuffer,
/external/webrtc/webrtc/modules/utility/include/
H A Dfile_player.h36 // Read 10 ms of audio at |frequencyInHz| to |outBuffer|. |lengthInSamples|
40 int16_t* outBuffer,
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DRandomDataImpl.java162 StringBuilder outBuffer = new StringBuilder();
183 outBuffer.append(hex);
185 return outBuffer.toString().substring(0, len);
268 StringBuilder outBuffer = new StringBuilder();
292 outBuffer.append(hex);
295 return outBuffer.toString().substring(0, len);
/external/lzma/C/Util/7z/
H A D7zMain.c390 UInt32 blockIndex = 0xFFFFFFFF; /* it can have any value before first call (if outBuffer = 0) */
391 Byte *outBuffer = 0; /* it must be 0 before first call for each new archive. */ local
392 size_t outBufferSize = 0; /* it can have any value before first call (if outBuffer = 0) */
467 &blockIndex, &outBuffer, &outBufferSize,
506 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
525 IAlloc_Free(&allocImp, outBuffer);
/external/lzma/C/Util/SfxSetup/
H A DSfxSetup.c386 UInt32 blockIndex = 0xFFFFFFFF; /* it can have any value before first call (if outBuffer = 0) */
387 Byte *outBuffer = 0; /* it must be 0 before first call for each new archive. */ local
388 size_t outBufferSize = 0; /* it can have any value before first call (if outBuffer = 0) */
409 &blockIndex, &outBuffer, &outBufferSize,
468 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
519 IAlloc_Free(&allocImp, outBuffer);
/external/svox/pico/lib/
H A Dpicoapi.h402 'outBuffer'. The type of data returned in 'outBuffer' (e.g. 8 or 16
414 void *outBuffer,
/external/aac/libAACenc/src/
H A Daacenc_lib.cpp210 UCHAR *outBuffer; /* Internal bitstream buffer */ member in struct:AACENCODER
1137 FDKmemclear(hAacEncoder->outBuffer, hAacEncoder->outBufferInBytes*sizeof(UCHAR));
1140 if ( transportEnc_Init(hAacEncoder->hTpEnc, hAacEncoder->outBuffer, hAacEncoder->outBufferInBytes, config->userTpType, &hAacEncoder->coderConfig, flags) != 0) {
1301 hAacEncoder->outBuffer = GetRam_bsOutbuffer();
1378 if (hAacEncoder->outBuffer) {
1379 FreeRam_bsOutbuffer(&hAacEncoder->outBuffer);
1665 FDKmemcpy(outBufDesc->bufs[bsIdx], hAacEncoder->outBuffer, sizeof(UCHAR)*nBsBytes);
/external/mdnsresponder/mDNSShared/
H A DDebugServices.c2034 char * outBuffer,
2060 dst = outBuffer;
2121 if( outBuffer )
2267 if( outBuffer )
2373 // Note: The "dst - outBuffer" size calculation works even if "outBuffer" is NULL because it's all relative.
2375 return( (size_t)( dst - outBuffer ) );
2022 DebugHexDump( DebugLevel inLevel, int inIndent, const char * inLabel, size_t inLabelSize, int inLabelMinWidth, const char * inType, size_t inTypeSize, const void * inDataStart, const void * inData, size_t inDataSize, DebugFlags inFlags, char * outBuffer, size_t inBufferSize ) argument
H A DDebugServices.h1551 char * outBuffer,

Completed in 1230 milliseconds

12