HomeSort by relevance Sort by last modified time
    Searched refs:blockLength (Results 1 - 25 of 37) sorted by null

1 2

  /external/smack/src/org/xbill/DNS/utils/
HMAC.java 17 private int blockLength;
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) {
55 this.blockLength = blockLength;
62 * @param blockLength The block length of the message digest
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
HMac.java 26 private int blockLength;
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/
fec_receiver_impl.cc 93 uint16_t blockLength = 0;
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...]
rtp_sender_audio.cc 386 uint32_t blockLength = fragmentation->fragmentationLength[1];
388 // sanity blockLength
389 if(blockLength > 0x3ff) { // block length 10 bits 1023 bytes
392 uint32_t REDheader = (timestampOffset << 10) + blockLength;
  /external/aac/libAACenc/src/
metadata_compressor.h 158 * \param blockLength Length of processing block in samples per channel.
172 const INT blockLength,
metadata_compressor.cpp 168 INT blockLength; /*!< Block length in samples. */
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;
    [all...]
  /external/libvpx/libvpx/third_party/libmkv/
WebMElement.c 35 unsigned long blockLength = 4 + dataLength;
36 blockLength |= 0x10000000; // TODO check length < 0x0FFFFFFFF
37 Ebml_Serialize(glob, &blockLength, sizeof(blockLength), 4);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
WebMElement.c 35 unsigned long blockLength = 4 + dataLength;
36 blockLength |= 0x10000000; // TODO check length < 0x0FFFFFFFF
37 Ebml_Serialize(glob, &blockLength, sizeof(blockLength), 4);
  /external/aac/libSBRenc/src/
ton_corr.cpp 177 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[0] *
    [all...]
  /external/chromium_org/third_party/icu/source/common/
utrie2_builder.cpp 880 findSameDataBlock(const uint32_t *data, int32_t dataLength, int32_t otherBlock, int32_t blockLength) {
884 dataLength-=blockLength;
887 if(equal_uint32(data+block, data+otherBlock, blockLength)) {
987 int32_t blockLength, overlap;
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/
utrie2_builder.cpp 880 findSameDataBlock(const uint32_t *data, int32_t dataLength, int32_t otherBlock, int32_t blockLength) {
884 dataLength-=blockLength;
887 if(equal_uint32(data+block, data+otherBlock, blockLength)) {
987 int32_t blockLength, overlap;
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/
tlsrecordlayer.py 601 blockLength = self._writeState.encContext.block_size
602 paddingLength = blockLength - 1 - (currentLength % blockLength)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
crypto-aes.js 200 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/
crypto-aes.js 200 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/
crypto-aes.js 200 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/
asm-commons-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
  /prebuilts/tools/common/asm-tools/
asm-commons-4.0.jar 
asm-debug-all-4.0.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-commons/3.3/
asm-commons-3.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/commons/commons-exec/1.2/
commons-exec-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-exec/1.1/
commons-exec-1.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/ow2/asm/asm-debug-all/4.0/
asm-debug-all-4.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 

Completed in 539 milliseconds

1 2