Searched defs:outBuffer (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DIndexDataManager.cpp216 gl::Error IndexDataManager::getStreamingIndexBuffer(GLenum destinationIndexType, IndexBufferInterface **outBuffer) argument
218 ASSERT(outBuffer);
232 *outBuffer = mStreamingBufferInt;
250 *outBuffer = mStreamingBufferShort;
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
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/lzma/CPP/Windows/
H A DFileIO.h69 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped) const
72 outBuffer, outSize, bytesReturned, overlapped));
76 DWORD inSize, LPVOID outBuffer, DWORD outSize) const
79 return DeviceIoControl(controlCode, inBuffer, inSize, outBuffer, outSize, &ret, 0);
82 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize) const argument
83 { return DeviceIoControl(controlCode, NULL, 0, outBuffer, outSize); }
68 DeviceIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inSize, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped) const argument
75 DeviceIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inSize, LPVOID outBuffer, DWORD outSize) const argument
/external/chromium_org/chrome/installer/util/
H A Dlzma_util.cc155 Byte *outBuffer = 0; // it must be 0 before first call for each new archive local
156 UInt32 blockIndex = 0xFFFFFFFF; // can have any value if outBuffer = 0
157 size_t outBufferSize = 0; // can have any value if outBuffer = 0
166 &outBuffer, &outBufferSize, &offset, &outSizeProcessed,
205 if ((!WriteFile(hFile, outBuffer + offset, (DWORD) outSizeProcessed,
230 IAlloc_Free(&allocImp, outBuffer);
/external/chromium_org/third_party/lzma_sdk/
H A D7zDec.c67 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
112 outBuffer[i] = (Byte)sym;
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
135 state.dic = outBuffer;
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
185 state.decoder.dic = outBuffer;
224 static SRes SzDecodeCopy(UInt64 inSize, ILookInStream *inStream, Byte *outBuffer) argument
235 memcpy(outBuffer, inBuf, curSize);
236 outBuffer += curSize;
333 #define CASE_BRA_CONV(isa) case k_ ## isa: isa ## _Convert(outBuffer, outSiz
66 SzDecodePpmd(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
127 SzDecodeLzma(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
175 SzDecodeLzma2(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
459 SzFolder_Decode(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
[all...]
H A D7zIn.c1150 CBuf *outBuffer,
1178 if (!Buf_Create(outBuffer, (size_t)unpackSize, allocTemp))
1183 outBuffer->data, (size_t)unpackSize, allocTemp);
1186 if (CrcCalc(outBuffer->data, (size_t)unpackSize) != folder->UnpackCRC)
1194 CBuf *outBuffer,
1204 res = SzReadAndDecodePackedStreams2(inStream, sd, outBuffer, baseOffset,
1285 CBuf outBuffer; local
1286 Buf_Init(&outBuffer);
1287 res = SzReadAndDecodePackedStreams(inStream, &sd, &outBuffer, p->startPosAfterHeader, allocTemp);
1289 Buf_Free(&outBuffer, allocTem
1147 SzReadAndDecodePackedStreams2( ILookInStream *inStream, CSzData *sd, CBuf *outBuffer, UInt64 baseOffset, CSzAr *p, UInt64 **unpackSizes, Byte **digestsDefined, UInt32 **digests, ISzAlloc *allocTemp) argument
1191 SzReadAndDecodePackedStreams( ILookInStream *inStream, CSzData *sd, CBuf *outBuffer, UInt64 baseOffset, ISzAlloc *allocTemp) argument
1322 SzArEx_Extract( const CSzArEx *p, ILookInStream *inStream, UInt32 fileIndex, UInt32 *blockIndex, Byte **outBuffer, size_t *outBufferSize, size_t *offset, size_t *outSizeProcessed, ISzAlloc *allocMain, ISzAlloc *allocTemp) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/utility/source/
H A Dfile_player_impl.cc109 int16_t* outBuffer,
179 memset(outBuffer, 0, outLen * sizeof(int16_t));
184 outBuffer,
194 outBuffer[i] = (int16_t)(outBuffer[i] * _scaling);
108 Get10msAudioFromFile( int16_t* outBuffer, int& lengthInSamples, int frequencyInHz) argument
/external/lzma/C/
H A D7zDec.c67 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
112 outBuffer[i] = (Byte)sym;
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
135 state.dic = outBuffer;
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
185 state.decoder.dic = outBuffer;
224 static SRes SzDecodeCopy(UInt64 inSize, ILookInStream *inStream, Byte *outBuffer) argument
235 memcpy(outBuffer, inBuf, curSize);
236 outBuffer += curSize;
333 #define CASE_BRA_CONV(isa) case k_ ## isa: isa ## _Convert(outBuffer, outSiz
66 SzDecodePpmd(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
127 SzDecodeLzma(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
175 SzDecodeLzma2(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
459 SzFolder_Decode(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
[all...]
H A D7zIn.c1150 CBuf *outBuffer,
1178 if (!Buf_Create(outBuffer, (size_t)unpackSize, allocTemp))
1183 outBuffer->data, (size_t)unpackSize, allocTemp);
1186 if (CrcCalc(outBuffer->data, (size_t)unpackSize) != folder->UnpackCRC)
1194 CBuf *outBuffer,
1204 res = SzReadAndDecodePackedStreams2(inStream, sd, outBuffer, baseOffset,
1285 CBuf outBuffer; local
1286 Buf_Init(&outBuffer);
1287 res = SzReadAndDecodePackedStreams(inStream, &sd, &outBuffer, p->startPosAfterHeader, allocTemp);
1289 Buf_Free(&outBuffer, allocTem
1147 SzReadAndDecodePackedStreams2( ILookInStream *inStream, CSzData *sd, CBuf *outBuffer, UInt64 baseOffset, CSzAr *p, UInt64 **unpackSizes, Byte **digestsDefined, UInt32 **digests, ISzAlloc *allocTemp) argument
1191 SzReadAndDecodePackedStreams( ILookInStream *inStream, CSzData *sd, CBuf *outBuffer, UInt64 baseOffset, ISzAlloc *allocTemp) argument
1322 SzArEx_Extract( const CSzArEx *p, ILookInStream *inStream, UInt32 fileIndex, UInt32 *blockIndex, Byte **outBuffer, size_t *outBufferSize, size_t *offset, size_t *outSizeProcessed, ISzAlloc *allocMain, ISzAlloc *allocTemp) argument
[all...]
/external/lzma/C/Util/7z/
H A D7zMain.c357 UInt32 blockIndex = 0xFFFFFFFF; /* it can have any value before first call (if outBuffer = 0) */
358 Byte *outBuffer = 0; /* it must be 0 before first call for each new archive. */ local
359 size_t outBufferSize = 0; /* it can have any value before first call (if outBuffer = 0) */
422 &blockIndex, &outBuffer, &outBufferSize,
461 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
480 IAlloc_Free(&allocImp, outBuffer);
/external/lzma/C/Util/SfxSetup/
H A DSfxSetup.c379 UInt32 blockIndex = 0xFFFFFFFF; /* it can have any value before first call (if outBuffer = 0) */
380 Byte *outBuffer = 0; /* it must be 0 before first call for each new archive. */ local
381 size_t outBufferSize = 0; /* it can have any value before first call (if outBuffer = 0) */
403 &blockIndex, &outBuffer, &outBufferSize,
461 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
511 IAlloc_Free(&allocImp, outBuffer);
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A DLzmaAlone.cpp321 Byte *outBuffer = 0; local
329 outBuffer = (Byte *)MyAlloc((size_t)outSize);
330 if (outBuffer == 0)
335 int res = Lzma86_Encode(outBuffer, &outSize, inBuffer, inSize,
353 outBuffer = (Byte *)MyAlloc(outSize);
354 if (outBuffer == 0)
357 int res = Lzma86_Decode(outBuffer, &outSize, inBuffer, &inSize);
363 if (WriteStream(outStream, outBuffer, outSize) != S_OK)
365 MyFree(outBuffer);
/external/chromium_org/third_party/webrtc/modules/media_file/source/
H A Dmedia_file_utility.cc372 int8_t* outBuffer,
383 reinterpret_cast<uint8_t*>(outBuffer),
395 int8_t* outBuffer,
406 reinterpret_cast<uint8_t*>(outBuffer),
371 ReadAviAudioData( int8_t* outBuffer, const uint32_t bufferLengthInBytes) argument
394 ReadAviVideoData( int8_t* outBuffer, const uint32_t bufferLengthInBytes) argument
/external/aac/libAACenc/src/
H A Daacenc_lib.cpp204 UCHAR *outBuffer; /* Internal bitstream buffer */ member in struct:AACENCODER
1141 FDKmemclear(hAacEncoder->outBuffer, hAacEncoder->outBufferInBytes*sizeof(UCHAR));
1144 if ( transportEnc_Init(hAacEncoder->hTpEnc, hAacEncoder->outBuffer, hAacEncoder->outBufferInBytes, config->userTpType, &hAacEncoder->coderConfig, flags) != 0) {
1305 hAacEncoder->outBuffer = GetRam_bsOutbuffer();
1382 if (hAacEncoder->outBuffer) {
1383 FreeRam_bsOutbuffer(&hAacEncoder->outBuffer);
1669 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
/external/chromium_org/third_party/npapi/bindings/
H A Dnpapi_extensions.h948 void *outBuffer; member in struct:_NPDeviceContextAudio
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 460 milliseconds