Searched refs:blockLen (Results 1 - 8 of 8) sorted by relevance

/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-api-fst.h59 int blockLen; /* block length */ member in struct:__anon7508
72 int blockLen; /* Sample: Handles non-128 bit block sizes (if available) */ member in struct:__anon7510
78 makeKeyEx(): parameter blockLen added
81 cipherInitEx(): parameter blockLen added (for obvious reasons)
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
H A DBase64Coder.java104 int blockLen = (lineLen * 3) / 4;
105 if (blockLen <= 0)
107 int lines = (iLen + blockLen - 1) / blockLen;
112 int l = Math.min(iLen - ip, blockLen);
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DBase64Coder.java104 int blockLen = (lineLen * 3) / 4;
105 if (blockLen <= 0) {
108 int lines = (iLen + blockLen - 1) / blockLen;
113 int l = Math.min(iLen - ip, blockLen);
/external/webrtc/webrtc/modules/audio_processing/ns/
H A Dns_core.h54 size_t blockLen; member in struct:NoiseSuppressionC_
H A Dns_core.c90 self->blockLen = 80;
94 self->blockLen = 160;
1069 UpdateBuffer(speechFrame, self->blockLen, self->anaLen, self->analyzeBuf);
1226 UpdateBuffer(speechFrame[0], self->blockLen, self->anaLen, self->dataBuf);
1232 self->blockLen,
1243 for (i = self->windShift; i < self->blockLen + self->windShift; i++) {
1247 UpdateBuffer(NULL, self->blockLen, self->anaLen, self->syntBuf);
1249 for (i = 0; i < self->blockLen; ++i)
1256 for (j = 0; j < self->blockLen; ++j) {
1352 for (i = self->windShift; i < self->blockLen
[all...]
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
H A DRTPencode.cc117 uint16_t* blockLen,
1764 uint16_t* blockLen,
1779 if (blockLen[i] > 0) {
1788 rtpPointer[2] = ((offset & 0x3F) << 2) | ((blockLen[i] >> 8) & 0x03);
1789 rtpPointer[3] = blockLen[i] & 0xFF;
1760 makeRedundantHeader(unsigned char* rtp_data, int* payloadType, int numPayloads, uint32_t* timestamp, uint16_t* blockLen, int seqNo, uint32_t ssrc) argument
/external/libgdx/extensions/gdx-bullet/jni/src/extras/Serialize/BulletFileLoader/
H A DbFile.cpp1213 int blockLen = block->len / ptrFile;
1218 char *newPtr = new char[blockLen * ptrMem];
1220 memset(newPtr, 0, blockLen * ptrMem);
1226 while (blockLen-- > 0)
/external/icu/icu4c/source/i18n/
H A Dregexcmp.cpp3652 int64_t blockLen = maxMatchLength(loc+4, loopEndLoc-1); // Recursive call.
3653 int64_t updatedLen = (int64_t)currentLen + blockLen * maxLoopCount;

Completed in 395 milliseconds