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

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Wrapper.java 14 public byte[] wrap(byte[] in, int inOff, int inLen);
16 public byte[] unwrap(byte[] in, int inOff, int inLen)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 127 int inLen)
132 return encodeBlock(in, inOff, inLen);
136 return decodeBlock(in, inOff, inLen);
143 int inLen)
146 if (inLen > getInputBlockSize())
157 for (int i = 1; i != block.length - inLen - 1; i++)
172 for (int i = 1; i != block.length - inLen - 1; i++)
181 block[block.length - inLen - 1] = 0x00; // mark the end of the padding
182 System.arraycopy(in, inOff, block, block.length - inLen, inLen);
    [all...]
OAEPEncoding.java 126 int inLen)
131 return encodeBlock(in, inOff, inLen);
135 return decodeBlock(in, inOff, inLen);
142 int inLen)
150 System.arraycopy(in, inOff, block, block.length - inLen, inLen);
155 block[block.length - inLen - 1] = 0x01;
209 int inLen)
212 byte[] data = engine.processBlock(in, inOff, inLen);
  /external/chromium_org/third_party/opus/src/silk/
resampler_private.h 49 opus_int32 inLen /* I Number of input samples */
57 opus_int32 inLen /* I Number of input samples */
resampler_down2_3.c 41 opus_int16 *out, /* O Output signal [ floor(2*inLen/3) ] */
42 const opus_int16 *in, /* I Input signal [ inLen ] */
43 opus_int32 inLen /* I Number of input samples */
58 nSamplesIn = silk_min( inLen, RESAMPLER_MAX_BATCH_SIZE_IN );
90 inLen -= nSamplesIn;
92 if( inLen > 0 ) {
resampler_down2.c 40 opus_int32 inLen /* I Number of input samples */
43 opus_int32 k, len2 = silk_RSHIFT32( inLen, 1 );
resampler_private_IIR_FIR.c 69 opus_int32 inLen /* I Number of input samples */
86 nSamplesIn = silk_min( inLen, S->batchSize );
94 inLen -= nSamplesIn;
96 if( inLen > 0 ) {
resampler.c 178 opus_int32 inLen /* I Number of input samples */
184 silk_assert( inLen >= S->Fs_in_kHz );
196 silk_resampler_private_up2_HQ_wrapper( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
200 silk_resampler_private_IIR_FIR( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
204 silk_resampler_private_down_FIR( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
208 silk_memcpy( &out[ S->Fs_out_kHz ], &in[ nSamples ], ( inLen - S->Fs_in_kHz ) * sizeof( opus_int16 ) );
212 silk_memcpy( S->delayBuf, &in[ inLen - S->inputDelay ], S->inputDelay * sizeof( opus_int16 ) );
resampler_private_down_FIR.c 149 opus_int32 inLen /* I Number of input samples */
169 nSamplesIn = silk_min( inLen, S->batchSize );
181 inLen -= nSamplesIn;
183 if( inLen > 1 ) {
SigProc_FIX.h 67 opus_int32 inLen /* I Number of input samples */
77 opus_int32 inLen /* I Number of input samples */
85 opus_int16 *out, /* O Output signal [ floor(2*inLen/3) ] */
86 const opus_int16 *in, /* I Input signal [ inLen ] */
87 opus_int32 inLen /* I Number of input samples */
    [all...]
  /external/libopus/silk/
resampler_private.h 49 opus_int32 inLen /* I Number of input samples */
57 opus_int32 inLen /* I Number of input samples */
resampler_down2_3.c 41 opus_int16 *out, /* O Output signal [ floor(2*inLen/3) ] */
42 const opus_int16 *in, /* I Input signal [ inLen ] */
43 opus_int32 inLen /* I Number of input samples */
58 nSamplesIn = silk_min( inLen, RESAMPLER_MAX_BATCH_SIZE_IN );
90 inLen -= nSamplesIn;
92 if( inLen > 0 ) {
resampler_down2.c 40 opus_int32 inLen /* I Number of input samples */
43 opus_int32 k, len2 = silk_RSHIFT32( inLen, 1 );
resampler_private_IIR_FIR.c 69 opus_int32 inLen /* I Number of input samples */
86 nSamplesIn = silk_min( inLen, S->batchSize );
94 inLen -= nSamplesIn;
96 if( inLen > 0 ) {
resampler.c 178 opus_int32 inLen /* I Number of input samples */
184 silk_assert( inLen >= S->Fs_in_kHz );
196 silk_resampler_private_up2_HQ_wrapper( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
200 silk_resampler_private_IIR_FIR( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
204 silk_resampler_private_down_FIR( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
208 silk_memcpy( &out[ S->Fs_out_kHz ], &in[ nSamples ], ( inLen - S->Fs_in_kHz ) * sizeof( opus_int16 ) );
212 silk_memcpy( S->delayBuf, &in[ inLen - S->inputDelay ], S->inputDelay * sizeof( opus_int16 ) );
resampler_private_down_FIR.c 149 opus_int32 inLen /* I Number of input samples */
169 nSamplesIn = silk_min( inLen, S->batchSize );
181 inLen -= nSamplesIn;
183 if( inLen > 1 ) {
SigProc_FIX.h 67 opus_int32 inLen /* I Number of input samples */
77 opus_int32 inLen /* I Number of input samples */
85 opus_int16 *out, /* O Output signal [ floor(2*inLen/3) ] */
86 const opus_int16 *in, /* I Input signal [ inLen ] */
87 opus_int32 inLen /* I Number of input samples */
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 70 int inLen)
77 int n = inLen / 8;
79 if ((n * 8) != inLen)
84 byte[] block = new byte[inLen + iv.length];
88 System.arraycopy(in, inOff, block, iv.length, inLen);
121 int inLen)
129 int n = inLen / 8;
131 if ((n * 8) != inLen)
136 byte[] block = new byte[inLen - iv.length];
141 System.arraycopy(in, inOff + iv.length, block, 0, inLen - iv.length)
    [all...]
RSACoreEngine.java 88 int inLen)
90 if (inLen > (getInputBlockSize() + 1))
94 else if (inLen == (getInputBlockSize() + 1) && !forEncryption)
101 if (inOff != 0 || inLen != in.length)
103 block = new byte[inLen];
105 System.arraycopy(in, inOff, block, 0, inLen);
DESedeWrapEngine.java 137 * @param inLen
140 public byte[] wrap(byte[] in, int inOff, int inLen)
147 byte keyToBeWrapped[] = new byte[inLen];
149 System.arraycopy(in, inOff, keyToBeWrapped, 0, inLen);
208 * @param inLen
212 public byte[] unwrap(byte[] in, int inOff, int inLen)
226 if (inLen % blockSize != 0)
253 byte TEMP3[] = new byte[inLen];
255 for (int currentBytePos = 0; currentBytePos != inLen; currentBytePos += blockSize)
RSABlindedEngine.java 81 * @param inLen the length of the data to be processed.
88 int inLen)
95 BigInteger input = core.convertInput(in, inOff, inLen);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 130 public int processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff)
133 data.write(in, inOff, inLen);
192 * @param inLen length of the data in the input array.
197 public byte[] processPacket(byte[] in, int inOff, int inLen)
204 output = new byte[inLen + macSize];
208 if (inLen < macSize)
212 output = new byte[inLen - macSize];
215 processPacket(in, inOff, inLen, output, 0);
225 * @param inLen length of the data in the input array.
233 public int processPacket(byte[] in, int inOff, int inLen, byte[] output, int outOff
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/AddTestOutput/
main.cpp 69 size_t inLen = inData.count();
70 inFile.read(inData.begin(), inLen);
101 inLen - (insert - inData.begin()) - 2)) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
enhancer_interface.c 40 int inLen=iLBCdec_inst->blockl+120;
100 enh_buf+ENH_BUFL-inLen, /* Input samples */
101 (int16_t)(inLen+ENH_BUFL_FILTEROVERHEAD),
103 (int16_t)WEBRTC_SPL_RSHIFT_W16(inLen, 1),
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 512 SizeT inLen = inSize - inPos;
517 xzu.InBuf + inPos, &inLen,
520 // printf("\n_inPos = %6d inLen = %5d, outLen = %5d", inPos, inLen, outLen);
522 inPos += (UInt32)inLen;
524 lps->InSize += inLen;
527 bool finished = (((inLen == 0) && (outLen == 0)) || res != SZ_OK);

Completed in 5042 milliseconds

1 2