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

1 2 3

  /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/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 ) {
  /external/ppp/pppd/
md5.h 61 void MD5_Update (MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic.cpp 77 uint32_t inLen, Allocation * aout,
83 uint32_t inLen, Allocation * aout,
90 uint32_t inLen,
98 preLaunch(slot, ains, inLen, aout, usr, usrLen, sc);
100 if (forEachMtlsSetup(ains, inLen, aout, usr, usrLen, sc, &mtls)) {
108 mCtx->launchThreads(ains, inLen, aout, sc, &mtls);
112 postLaunch(slot, ains, inLen, aout, usr, usrLen, sc);
rsCpuIntrinsic.h 36 uint32_t inLen,
47 uint32_t inLen, Allocation * aout, const void * usr,
50 uint32_t inLen, Allocation * aout,
rsCpuCoreRuntime.h 45 uint32_t inLen;
rsCpuScriptGroup.cpp 65 rsAssert(kinfo->inLen == 1);
83 rsAssert(kinfo->inLen == 0);
214 uint32_t inLen;
218 inLen = 0;
222 inLen = 1;
226 bool launchOK = si->forEachMtlsSetup(ains, inLen, outs[ct], nullptr, 0, nullptr, &mtls);
229 si->preLaunch(slot, ains, inLen, outs[ct], mtls.fep.usr,
233 mCtx->launchThreads(ains, inLen, outs[ct], nullptr, &mtls);
236 si->postLaunch(slot, ains, inLen, outs[ct], nullptr, 0, nullptr);
245 uint32_t inLen;
    [all...]
rsCpuScript.h 65 uint32_t inLen, Allocation * aout, const void * usr,
68 uint32_t inLen, Allocation * aout,
74 uint32_t inLen,
98 bool forEachMtlsSetup(const Allocation ** ains, uint32_t inLen,
rsCpuScript.cpp 516 uint32_t inLen,
524 for (int index = inLen; --index >= 0;) {
545 if (inLen > 0) {
553 for (int Index = inLen; --Index >= 1;) {
580 if (inLen > 0 && aout != nullptr) {
680 memcpy(mtls->ains, ains, inLen * sizeof(ains[0]));
690 if (inLen > 0) {
691 mtls->fep.inLen = inLen;
692 for (int index = inLen; --index >= 0;)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 88 int inLen)
95 int n = inLen / 8;
97 if ((n * 8) != inLen)
102 byte[] block = new byte[inLen + iv.length];
106 System.arraycopy(in, inOff, block, iv.length, inLen);
139 int inLen)
147 int n = inLen / 8;
149 if ((n * 8) != inLen)
154 byte[] block = new byte[inLen - iv.length];
159 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 length of the data.
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 length of the data.
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/encodings/
PKCS1Encoding.java 165 int inLen)
170 return encodeBlock(in, inOff, inLen);
174 return decodeBlock(in, inOff, inLen);
181 int inLen)
184 if (inLen > getInputBlockSize())
195 for (int i = 1; i != block.length - inLen - 1; i++)
210 for (int i = 1; i != block.length - inLen - 1; i++)
219 block[block.length - inLen - 1] = 0x00; // mark the end of the padding
220 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 131 public int processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff)
134 if (in.length < (inOff + inLen))
138 data.write(in, inOff, inLen);
197 * @param inLen length of the data in the input array.
202 public byte[] processPacket(byte[] in, int inOff, int inLen)
209 output = new byte[inLen + macSize];
213 if (inLen < macSize)
217 output = new byte[inLen - macSize];
220 processPacket(in, inOff, inLen, output, 0);
230 * @param inLen length of the data in the input array
    [all...]
  /external/svox/pico/lib/
picowa.c 60 picoos_uint16 inLen; /* length of item in inBuf, 0 for empty buf */
97 wa->inLen = 0;
292 if (PICO_OK == picodata_copy_item(wa->inBuf, wa->inLen,
295 wa->inLen = 0;
333 wa->inLen = 0;
340 if (PICO_OK == picodata_copy_item(wa->inBuf, wa->inLen,
343 wa->inLen = 0;
390 PICODBG_DEBUG(("doing state %i, inLen: %d, outLen: %d",
391 wa->procState, wa->inLen, wa->outLen));
398 if (wa->inLen == 0) { /* is input buffer empty? *
    [all...]
  /frameworks/rs/
rsScriptC.h 48 size_t inLen,
rsScriptIntrinsic.h 46 size_t inLen,
rsScriptIntrinsic.cpp 61 size_t inLen,
67 rsc->mHal.funcs.script.invokeForEachMulti(rsc, this, slot, ains, inLen,

Completed in 9482 milliseconds

1 2 3