Searched refs:blockLength (Results 1 - 23 of 23) sorted by relevance

/external/smack/src/org/xbill/DNS/utils/
H A DHMAC.java17 private int blockLength; field in class:HMAC
28 if (key.length > blockLength) {
32 ipad = new byte[blockLength];
33 opad = new byte[blockLength];
38 for (; i < blockLength; i++) {
48 * @param blockLength The block length of the message digest.
52 HMAC(MessageDigest digest, int blockLength, byte [] key) { argument
55 this.blockLength = blockLength;
62 * @param blockLength Th
66 HMAC(String digestName, int blockLength, byte [] key) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DHMac.java26 private int blockLength; field in class:HMac
100 this.blockLength = byteLength;
101 this.inputPad = new byte[blockLength];
102 this.outputBuf = new byte[blockLength + digestSize];
123 if (keyLength > blockLength)
140 System.arraycopy(inputPad, 0, outputBuf, 0, blockLength);
142 xorPad(inputPad, blockLength, IPAD);
143 xorPad(outputBuf, blockLength, OPAD);
149 ((Digest)opadState).update(outputBuf, 0, blockLength);
183 digest.doFinal(outputBuf, blockLength);
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dfec_receiver_impl.cc93 uint16_t blockLength = 0; local
110 blockLength =
112 blockLength += (incoming_rtp_packet[header.headerLength + 3]);
121 if (blockLength > payload_data_length - REDHeaderLength) {
130 if (blockLength > 0) {
147 blockLength);
149 received_packet->pkt->length = blockLength;
160 REDHeaderLength + blockLength,
161 payload_data_length - REDHeaderLength - blockLength);
164 payload_data_length - REDHeaderLength - blockLength;
[all...]
H A Drtp_sender_audio.cc386 uint32_t blockLength = fragmentation->fragmentationLength[1]; local
388 // sanity blockLength
389 if(blockLength > 0x3ff) { // block length 10 bits 1023 bytes
392 uint32_t REDheader = (timestampOffset << 10) + blockLength;
/external/aac/libAACenc/src/
H A Dmetadata_compressor.h158 * \param blockLength Length of processing block in samples per channel.
172 const INT blockLength,
H A Dmetadata_compressor.cpp168 INT blockLength; /*!< Block length in samples. */ member in struct:DRC_COMP
339 * \param blockLength Length of processing block.
387 * \param blockLength Length of processing block in samples per channel.
394 const INT blockLength
403 /* f = sampleRate/blockLength */
405 blockLengthFract = (FIXP_DBL)(blockLength<<(DFRACT_BITS-1-METADATA_LINT_BITS));
478 const INT blockLength,
488 drcComp->limDecay = FL2FXCONST_DBL( ((0.006f / 256) * blockLength) / METADATA_INT_SCALE );
491 drcComp->blockLength = blockLength;
474 FDK_DRC_Generator_Initialize( HDRC_COMP drcComp, const DRC_PROFILE profileLine, const DRC_PROFILE profileRF, const INT blockLength, const UINT sampleRate, const CHANNEL_MODE channelMode, const CHANNEL_ORDER channelOrder, const UCHAR useWeighting ) argument
[all...]
/external/libvpx/libvpx/third_party/libmkv/
H A DWebMElement.c35 unsigned long blockLength = 4 + dataLength; local
36 blockLength |= 0x10000000; // TODO check length < 0x0FFFFFFFF
37 Ebml_Serialize(glob, &blockLength, sizeof(blockLength), 4);
/external/aac/libSBRenc/src/
H A Dton_corr.cpp177 int blockLength;
201 blockLength = pBlockLength[0];
203 while(k <= buffLen - blockLength)
205 autoCorrScaling = fixMin(getScalefactor(&realBuf[k-LPC_ORDER], LPC_ORDER+blockLength), getScalefactor(&imagBuf[k-LPC_ORDER], LPC_ORDER+blockLength));
208 scaleValues(&realBuf[k-LPC_ORDER], LPC_ORDER+blockLength, autoCorrScaling);
209 scaleValues(&imagBuf[k-LPC_ORDER], LPC_ORDER+blockLength, autoCorrScaling);
212 autoCorrScaling += autoCorr2nd_cplx ( ac, realBuf+k, imagBuf+k, blockLength );
300 blockLength = pBlockLength[1];
709 hTonCorr->lpcLength[0] = 16 - LPC_ORDER; /* blockLength[
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dutrie2_builder.cpp880 findSameDataBlock(const uint32_t *data, int32_t dataLength, int32_t otherBlock, int32_t blockLength) { argument
884 dataLength-=blockLength;
887 if(equal_uint32(data+block, data+otherBlock, blockLength)) {
987 int32_t blockLength, overlap; local
1000 blockLength=64;
1001 blockCount=blockLength>>UTRIE2_SHIFT_2;
1009 blockLength=UTRIE2_DATA_BLOCK_LENGTH;
1016 start+=blockLength;
1023 if( (movedStart=findSameDataBlock(trie->data, newStart, start, blockLength))
1033 start+=blockLength;
[all...]
/external/icu/icu4c/source/common/
H A Dutrie2_builder.cpp880 findSameDataBlock(const uint32_t *data, int32_t dataLength, int32_t otherBlock, int32_t blockLength) { argument
884 dataLength-=blockLength;
887 if(equal_uint32(data+block, data+otherBlock, blockLength)) {
987 int32_t blockLength, overlap; local
1000 blockLength=64;
1001 blockCount=blockLength>>UTRIE2_SHIFT_2;
1009 blockLength=UTRIE2_DATA_BLOCK_LENGTH;
1016 start+=blockLength;
1023 if( (movedStart=findSameDataBlock(trie->data, newStart, start, blockLength))
1033 start+=blockLength;
[all...]
/external/chromium_org/third_party/tlslite/tlslite/
H A Dtlsrecordlayer.py601 blockLength = self._writeState.encContext.block_size
602 paddingLength = blockLength - 1 - (currentLength % blockLength)
966 blockLength = self._readState.encContext.block_size
967 if len(b) % blockLength != 0:
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dcrypto-aes.js200 var blockLength = b<blockCount-1 ? blockSize : (plaintext.length-1)%blockSize+1;
203 for (var i=0; i<blockLength; i++) { // -- xor plaintext with ciphered counter byte-by-byte --
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dcrypto-aes.js200 var blockLength = b<blockCount-1 ? blockSize : (plaintext.length-1)%blockSize+1;
203 for (var i=0; i<blockLength; i++) { // -- xor plaintext with ciphered counter byte-by-byte --
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dcrypto-aes.js200 var blockLength = b<blockCount-1 ? blockSize : (plaintext.length-1)%blockSize+1;
203 for (var i=0; i<blockLength; i++) { // -- xor plaintext with ciphered counter byte-by-byte --
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 3274 milliseconds